:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --bg: #f5f7fb;
  --text: #111827;
  --muted: #6b7280;
  --radius: 22px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
nav {
  display: flex;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: #222;
  font-weight: 700;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 5%;
  gap: 40px;
  background: linear-gradient(135deg, #e8f8ec, #fff);
}
.hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero-image img {
  width: 100%;
}
.hero-image{
    width:100%;
}
.hero-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    object-position:center;
    display:block;
    border-radius:25px;
}
.search-wrap input {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-size: 16px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.primary-btn,
.secondary-btn {
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}
.primary-btn {
  background: var(--green);
  color: #fff;
}
.secondary-btn {
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
}
.offer {
  margin: 30px 5%;
  background: #16a34a;
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}
.category-section {
  padding: 20px 5%;
}
.category-section h2 {
  margin-bottom: 20px;
}
.category-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-slider::-webkit-scrollbar {
  display: none;
}
.cat {
  min-width: 110px;
  text-align: center;
  cursor: pointer;
}
.cat-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-name {
  margin-top: 10px;
  font-weight: bold;
}
.section {
  padding: 20px 5%;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-6px);
}
.prod-img {
  height: 180px;
  background: #f3f4f6;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.prod-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 15px;
}
.download {
  padding: 40px 5%;
}
.download-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.footer {
  padding: 30px;
  text-align: center;
  color: #666;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: min(420px, 90%);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.modal-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
  nav {
    display: none;
  }
}
.about-section{
    background:#f8fff3;
    padding:40px 20px;
    margin-top:40px;
    text-align:center;
}

.about-section h2{
    color:#2e7d32;
    margin-bottom:15px;
}

.about-section p{
    max-width:800px;
    margin:10px auto;
    line-height:1.8;
    color:#444;
}

.about-section h3{
    margin-top:25px;
    color:#2e7d32;
}
.veggie {
    color: #1F7A2E;
    font-weight: bold;
}

.kit {
    color: #F7931E;
    font-weight: bold;
}
.footer{
    background:#1F7A2E;
    color:#fff;
    text-align:center;
    padding:35px 20px;
    margin-top:50px;
}

.footer h2{
    font-size:32px;
    margin-bottom:10px;
}

.footer p{
    margin:8px 0;
    font-size:16px;
}

.footer a{
    color:#fff;
    text-decoration:none;
}

.footer hr{
    width:70%;
    margin:20px auto;
    border:1px solid rgba(255,255,255,.3);
}

.footer .veggie{
    color:#ffffff;
}

.footer .kit{
    color:#F7931E;
}
 .footer-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.footer-logo img{
    width:35px;
    height:35px;
    object-fit:contain;
}
.social-links{
    margin-top:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.social-links a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:bold;
    transition:0.3s;
}

.social-links a:hover{
    color:#F7931E;
}
/* Floating Buttons */
.floating-buttons{
    position:fixed;
    bottom:20px;
    right:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.whatsapp-btn,
.call-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    transition:0.3s;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn{
    background:#F7931E;
}

.whatsapp-btn:hover,
.call-btn:hover{
    transform:scale(1.1);
}
.reviews{
    padding:50px 20px;
    background:#f8f8f8;
    text-align:center;
}

.reviews h2{
    color:#1F7A2E;
    margin-bottom:30px;
}

.review-card{
    background:#fff;
    max-width:700px;
    margin:20px auto;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
}

.review-card h3{
    color:#F7931E;
    margin-bottom:10px;
}

.review-card p{
    font-size:16px;
    line-height:1.6;
    color:#444;
}

.review-card strong{
    display:block;
    margin-top:15px;
    color:#1F7A2E;
}
.delivery-area{
    padding:50px 20px;
    background:#eef9ee;
    text-align:center;
}

.delivery-area h2{
    color:#1F7A2E;
    margin-bottom:15px;
}

.delivery-area p{
    color:#444;
    font-size:16px;
    margin-bottom:20px;
}

.area-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:20px;
}

.area-list span{
    background:#fff;
    padding:10px 18px;
    border-radius:25px;
    box-shadow:0 3px 8px rgba(0,0,0,0.1);
    font-weight:bold;
    color:#1F7A2E;
}

.delivery-note{
    color:#F7931E;
    font-weight:bold;
}
.faq{
    padding:50px 20px;
    background:#fff;
}

.faq h2{
    text-align:center;
    color:#1F7A2E;
    margin-bottom:30px;
}

.faq-item{
    max-width:800px;
    margin:15px auto;
    padding:20px;
    background:#f8f8f8;
    border-radius:10px;
}

.faq-item h3{
    color:#F7931E;
    margin-bottom:10px;
}

.faq-item p{
    color:#444;
}
.farmers{
    background:#f4fff2;
    padding:50px 20px;
    text-align:center;
}

.farmers h2{
    color:#1F7A2E;
    margin-bottom:20px;
}

.farmers p{
    max-width:850px;
    margin:15px auto;
    line-height:1.8;
    color:#444;
}
.download-app{
    text-align:center;
    padding:50px 20px;
    background:#f8fff3;
}

.download-app h2{
    color:#1F7A2E;
    margin-bottom:15px;
}

.download-app p{
    color:#555;
    margin-bottom:20px;
    font-size:17px;
}

.playstore-badge{
    width:220px;
    max-width:90%;
    transition:0.3s;
}

.playstore-badge:hover{
    transform:scale(1.05);
}
.playstore-badge{
    width:220px;
    height:auto;
    transition:0.3s;
}

.playstore-badge:hover{
    transform:scale(1.05);
}
/* Scroll To Top Button */

#topBtn{
    display:none;
    position:fixed;
    bottom:160px;
    right:20px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#1F7A2E;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,.3);
    z-index:9999;
    transition:.3s;
}

#topBtn:hover{
    background:#F7931E;
    transform:scale(1.1);
}
/* Loader */

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#ffffff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .5s;
}

#loader img{
    width:120px;
    animation:zoom 1.2s infinite alternate;
}

#loader h2{
    margin-top:15px;
    font-size:38px;
}

#loader p{
    margin-top:10px;
    color:#666;
    font-size:18px;
}

@keyframes zoom{
    from{
        transform:scale(.95);
    }
    to{
        transform:scale(1.08);
    }
}
.why-veggiekit{
    padding:50px 20px;
    background:#f8fff3;
    text-align:center;
}

.why-veggiekit h2{
    color:#1F7A2E;
    margin-bottom:20px;
}

.why-veggiekit p{
    max-width:900px;
    margin:15px auto;
    line-height:1.9;
    color:#444;
}

.why-veggiekit .faq-item{
    max-width:900px;
    margin:30px auto;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}