/* ===================================
   VVV TRADERS — Premium Agri Website
   =================================== */

/* ---- CSS Variables ---- */
:root {
  --green-dark:   #2d5a27;
  --green-main:   #3a7a30;
  --green-mid:    #4c9a40;
  --green-light:  #e8f5e3;
  --beige-bg:     #f5f0e8;
  --beige-mid:    #ede8dd;
  --beige-dark:   #d9d0bc;
  --cream:        #faf8f4;
  --text-dark:    #1a1a14;
  --text-mid:     #3d3d30;
  --text-muted:   #7a7a6a;
  --white:        #ffffff;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.11);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.14);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Poppins', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Sections ---- */
.section {
  padding: 88px 0;
  background: var(--cream);
}
.section-beige {
  background: var(--beige-bg);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.browse-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1.5px solid var(--beige-dark);
  padding: 9px 20px;
  border-radius: 50px;
  transition: all 0.22s;
  white-space: nowrap;
}
.browse-all:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(250,248,244,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-badge {
  background: var(--green-main);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 6px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.navbar.scrolled .logo-text { color: var(--text-dark); }
.logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
}
.navbar.scrolled .nav-links li a { color: var(--text-mid); }
.nav-links li a:hover { color: var(--white); }
.navbar.scrolled .nav-links li a:hover { color: var(--green-main); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  background: var(--green-main);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s;
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--white);
  cursor: pointer;
  margin-left: auto;
}
.navbar.scrolled .hamburger { color: var(--text-dark); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,20,6,0.78) 0%,
    rgba(20,40,12,0.62) 55%,
    rgba(30,50,15,0.35) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
  padding-bottom: 60px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.25s both;
}
.hero-title em {
  font-style: italic;
  color: #a8d98f;
}
.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.4s both;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.7s 0.55s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.7s 0.7s both;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
}
.stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s infinite;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--green-main);
  color: var(--white);
  padding: 15px 32px;
  box-shadow: 0 4px 18px rgba(58,122,48,0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58,122,48,0.45);
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.btn-enquire {
  background: var(--green-main);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  width: 100%;
  font-size: 14px;
  box-shadow: 0 3px 14px rgba(58,122,48,0.28);
}
.btn-enquire:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  padding: 14px 30px;
  font-size: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--beige-bg);
  transform: translateY(-2px);
}
.btn-primary-sm {
  background: var(--green-main);
  color: var(--white);
  padding: 11px 20px;
  font-size: 13px;
  border-radius: 50px;
  white-space: nowrap;
}
.btn-primary-sm:hover { background: var(--green-dark); }
.btn-email {
  background: transparent;
  border: 1.5px solid var(--beige-dark);
  color: var(--text-mid);
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-email:hover { background: var(--beige-mid); }
.btn-full { width: 100%; padding: 16px; font-size: 15px; border-radius: 12px; }

/* ========== PRODUCT CATEGORIES ========== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.cat-img-wrap img {
  height: 100%;
  transition: transform 0.5s;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); }
.cat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,6,0.75) 0%, transparent 55%);
}
.cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  color: var(--white);
}
.cat-label h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cat-label p {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 400;
}
.cat-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cat-price {
  font-size: 12px;
  color: var(--text-muted);
}
.cat-price strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.cat-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: var(--beige-bg);
  border-radius: var(--radius-sm);
}
.cat-product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.product-moq {
  font-size: 11px;
  color: var(--text-muted);
}
.moq-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========== POPULAR PRODUCTS ========== */
.popular-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  margin-bottom: 24px;
  align-items: end;
}
.why-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.why-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  transition: transform 0.5s;
}
.why-card:hover .why-bg { transform: scale(1.04); }
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,8,0.88) 40%, rgba(10,30,8,0.4) 100%);
}
.why-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  color: var(--white);
  width: 100%;
}
.why-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.check {
  color: #a8d98f;
  font-size: 13px;
  font-weight: 700;
}
.popular-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popular-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  height: 190px;
  overflow: hidden;
}
.product-card-img img { height: 100%; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body {
  padding: 18px 18px 20px;
}
.product-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.product-card-body h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.3;
}
.product-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.price-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
  font-family: var(--font-display);
}
.seller-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.seller-image-main {
  width: 150px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.seller-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seller-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.seller-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.seller-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.seller-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  background: #a8d98f;
  padding: 10px 18px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.seller-phone:hover { 
  background: #92c97a;
  transform: translateY(-2px);
}
.phone-icon { 
  font-size: 16px;
  display: flex;
  align-items: center;
}

/* Basmati Banner */
.basmati-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}
.basmati-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  transition: transform 0.5s;
}
.basmati-banner:hover .basmati-bg { transform: scale(1.03); }
.basmati-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,25,8,0.82) 0%, rgba(10,25,8,0.45) 60%, transparent 100%);
}
.basmati-content {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  color: var(--white);
  max-width: 520px;
}
.basmati-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8d98f;
  border: 1px solid rgba(168,217,143,0.4);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.basmati-content h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.basmati-content p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Dal Banner (Smaller) */
.dal-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.dal-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  transition: transform 0.5s;
}
.dal-banner:hover .dal-bg { transform: scale(1.03); }
.dal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,25,8,0.82) 0%, rgba(10,25,8,0.45) 60%, transparent 100%);
}
.dal-content {
  position: relative;
  z-index: 2;
  padding: 32px 40px;
  color: var(--white);
  max-width: 450px;
}
.dal-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.dal-content p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}
.contact-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  margin-top: 12px;
}
.contact-card {
  background: var(--beige-bg);
  border-radius: var(--radius-md);
  padding: 24px;
}
.contact-card-profile {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--beige-dark);
}
.contact-card-profile img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.contact-card-profile h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-card-profile p {
  font-size: 12px;
  color: var(--text-muted);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
a.contact-detail-item:hover { color: var(--green-main); }
.detail-icon {
  font-size: 17px;
  flex-shrink: 0;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-card > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(58,122,48,0.1);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--text-dark);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-brand .logo-text { color: var(--white); font-size: 20px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.cat-card:nth-child(2).fade-up { transition-delay: 0.1s; }
.cat-card:nth-child(3).fade-up { transition-delay: 0.2s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .popular-grid {
    grid-template-columns: 1fr;
  }
  .why-card { min-height: 360px; }
  .popular-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .navbar { padding: 14px 0; }
  .nav-links { 
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,26,20,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 9998;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 20px; color: var(--white) !important; }
  .nav-cta { display: none; }
  .hamburger { display: block; }

  .categories-grid { grid-template-columns: 1fr; }
  .popular-right { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-title { font-size: clamp(32px, 8vw, 52px); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .why-list { grid-template-columns: 1fr; }
  .basmati-content { padding: 32px 28px; }

  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 24px 20px; }
}
