/* ============ Reset & Base ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #c9782f;
    --primary-dark: #a55e1f;
    --gold: #e2a95a;
    --deep: #173b33;
    --deep-2: #0f2b25;
    --cream: #faf5ec;
    --cream-2: #f3e8d7;
    --white: #ffffff;
    --text: #37322b;
    --muted: #7a7268;
    --shadow: 0 18px 45px rgba(23, 59, 51, 0.14);
    --radius: 20px;
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Fraunces', serif;
    --font-tamil: 'Noto Sans Tamil', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

html[lang="ta"] body,
html[lang="ta"] input,
html[lang="ta"] textarea,
html[lang="ta"] button {
    font-family: 'Outfit', var(--font-tamil), sans-serif;
}

.product-info {
  padding: 2rem;
  text-align: center;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}	

.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #fbdfc4 0%, #fbdfc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}


.product-bottle {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  }
  
  .feature {
  background: #e74c3c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  }
  
  .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
  
  
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

/* ============ Buttons, Tags, Headings ============ */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #e09a4f);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(201, 120, 47, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(201, 120, 47, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45);
}

.btn-small {
    padding: 9px 20px;
    font-size: 0.85rem;
    box-shadow: 0 6px 16px rgba(201, 120, 47, 0.35);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.tag {
    display: inline-block;
    background: rgba(201, 120, 47, 0.14);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.grad-text {
    background: linear-gradient(135deg, var(--primary), #d9a03f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    color: var(--deep);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-head p {
    color: var(--muted);
}

/* ============ Header ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header:not(.scrolled) .logo-text { color: var(--white); }
.header:not(.scrolled) .nav-links a:not(.nav-cta) { color: var(--cream); }
.header:not(.scrolled) .nav-links a:not(.nav-cta):hover { color: var(--gold); }
.header:not(.scrolled) .nav-links a:not(.nav-cta)::after { background: var(--gold); }
.header:not(.scrolled) .lang-switch { background: rgba(255, 255, 255, 0.14); }
.header:not(.scrolled) .lang-btn { color: var(--cream); }
.header:not(.scrolled) .lang-btn.active { background: var(--cream); color: var(--deep); }
.header:not(.scrolled) .hamburger span { background: var(--cream); }

.header .nav-links.open a:not(.nav-cta),
.header .nav-links.open a:not(.nav-cta):hover {
    color: var(--deep);
}

.header.scrolled {
    background: rgba(250, 245, 236, 0.94);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 22px rgba(23, 59, 51, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(23, 59, 51, 0.22);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--deep);
    white-space: nowrap;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a:not(.nav-cta) {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--deep);
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--primary-dark);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

/* Language switcher */
.lang-switch {
    display: flex;
    align-items: center;
    background: rgba(23, 59, 51, 0.08);
    border-radius: 999px;
    padding: 4px;
    flex-shrink: 0;
}

.lang-btn {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 13px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--deep);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.lang-btn.active {
    background: var(--deep);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--deep);
    border-radius: 3px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0e2a23 0%, #173b33 55%, #1d493e 100%);
    position: relative;
    overflow: hidden;
    padding-top: 110px;
    color: var(--cream);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(226, 169, 90, 0.14) 1px, transparent 1px),
        radial-gradient(rgba(226, 169, 90, 0.08) 1px, transparent 1px);
    background-size: 42px 42px, 42px 42px;
    background-position: 0 0, 21px 21px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.9rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.08rem;
    color: #c4d6cf;
    max-width: 540px;
    margin-bottom: 30px;
}

.hero .tag {
    background: rgba(226, 169, 90, 0.18);
    color: var(--gold);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--gold);
}

.hero-stats span {
    font-size: 0.85rem;
    color: #a9c0b7;
}

/* Hero art - slider */
.hero-art {
    display: grid;
    place-items: center;
    position: relative;
    min-height: 460px;
}

.slider {
    position: relative;
    width: 340px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.35);
    background: var(--white);
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
	background-color:#fbe1c6;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    color: var(--primary-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dots span.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ============ Products ============ */
.products {
    background: var(--cream);
}

.size-note {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #efe6d6;
    box-shadow: 0 8px 28px rgba(23, 59, 51, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.product-img {
    background: var(--cream-2);
    height: 220px;
    display: grid;
    place-items: center;
    padding: 24px;
}

.product-img img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 20px rgba(23, 59, 51, 0.25));
    transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-img.mango-img {
    background: linear-gradient(135deg, #ffe9b8, #ffc24d);
    font-size: 6rem;
}

.product-img.mango-img span {
    filter: drop-shadow(0 14px 20px rgba(165, 94, 31, 0.3));
}

.product-body {
    padding: 22px;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(201, 120, 47, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
}

.product-body h3 {
    font-family: var(--font-display);
    font-size: 1.22rem;
    color: var(--deep);
    margin-bottom: 6px;
}

.product-body > p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

/* Chandrika feature banner */
.feature-banner {
    margin-top: 44px;
    background: linear-gradient(135deg, #173b33, #1d493e);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    color: var(--cream);
    box-shadow: var(--shadow);
}

.feature-img {
    display: grid;
    place-items: center;
    padding: 36px;
    background: rgba(226, 169, 90, 0.1);
}

.feature-img img {
    max-height: 240px;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35));
}

.feature-body {
    padding: 44px;
}

.feature-body .tag {
    background: rgba(226, 169, 90, 0.2);
    color: var(--gold);
}

.feature-body h3 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-body p {
    color: #c4d6cf;
    margin-bottom: 24px;
    max-width: 480px;
}

/* ============ Comparison ============ */
.compare {
    background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: stretch;
    max-width: 860px;
    margin: 0 auto;
    gap: 0;
}

.vs-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 30px;
    box-shadow: 0 8px 28px rgba(23, 59, 51, 0.08);
}

.vs-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.vs-bad h3 { color: #b04a3a; }
.vs-good h3 { color: var(--primary-dark); }

.vs-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.vs-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.vs-bad li::before {
    content: '\2717';
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    background: rgba(176, 74, 58, 0.14);
    color: #b04a3a;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.vs-good li::before {
    content: '\2713';
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    background: rgba(40, 167, 124, 0.16);
    color: #1e9c70;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.vs-badge {
    display: grid;
    place-items: center;
    z-index: 2;
}

.vs-badge span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), #e2a95a);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(201, 120, 47, 0.4);
}

/* ============ Taste ============ */
.taste {
    background: var(--cream);
}

.taste-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.taste-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 28px;
    border: 1px solid #efe6d6;
    box-shadow: 0 8px 28px rgba(23, 59, 51, 0.07);
    transition: transform 0.3s ease;
}

.taste-card:hover {
    transform: translateY(-8px);
}

.taste-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.taste-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--deep);
    margin-bottom: 10px;
}

.taste-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

/* ============ Bulk ============ */
.bulk {
    background: linear-gradient(135deg, #0e2a23, #173b33);
    position: relative;
    overflow: hidden;
}

.bulk::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(201, 120, 47, 0.14);
    top: -220px;
    right: -160px;
}

.bulk::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(226, 169, 90, 0.1);
    bottom: -200px;
    left: -140px;
}

.bulk-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 2;
    color: var(--cream);
}

.bulk-text .tag {
    background: rgba(226, 169, 90, 0.2);
    color: var(--gold);
}

.bulk-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.bulk-text p {
    color: #c4d6cf;
    margin-bottom: 26px;
    max-width: 540px;
}

.bulk-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bulk-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 30px 22px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.bulk-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.bulk-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 6px;
}

.bulk-stat span {
    color: #c4d6cf;
    font-size: 0.9rem;
}

/* ============ About / Story ============ */
.about {
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 48px;
}

.story-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    border: 1px solid #efe6d6;
    box-shadow: 0 8px 28px rgba(23, 59, 51, 0.07);
    text-align: center;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
}

.story-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.story-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--deep);
    margin-bottom: 10px;
}

.story-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.story-stats div {
    background: linear-gradient(135deg, var(--primary), #e2a95a);
    border-radius: var(--radius);
    padding: 30px 16px;
    color: var(--white);
    box-shadow: 0 14px 30px rgba(201, 120, 47, 0.35);
}

.story-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.story-stats span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ============ Recipes ============ */
.recipes {
    background: linear-gradient(180deg, var(--cream), var(--cream-2));
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.recipe-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 26px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 8px 26px rgba(23, 59, 51, 0.07);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-6px);
}

.recipe-card h3 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: var(--deep);
    margin-bottom: 10px;
}

.recipe-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

/* ============ Testimonials ============ */
.testimonials {
    background: var(--cream);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid #efe6d6;
    box-shadow: 0 8px 28px rgba(23, 59, 51, 0.07);
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
}

.stars {
    color: #e8a13c;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.testi-card blockquote {
    font-size: 1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
}

.testi-card figcaption {
    display: flex;
    flex-direction: column;
}

.testi-card figcaption strong { color: var(--deep); }
.testi-card figcaption small { color: var(--muted); }

/* ============ Contact ============ */
.contact {
    background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 18px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px 24px;
    border: 1px solid #efe6d6;
    box-shadow: 0 8px 24px rgba(23, 59, 51, 0.06);
}

.c-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), #e2a95a);
    color: var(--white);
    border-radius: 14px;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 8px 18px rgba(201, 120, 47, 0.3);
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--deep);
    margin-bottom: 6px;
}

.contact-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

.contact-card a {
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px;
    border: 1px solid #efe6d6;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.contact-form h3 {
    font-family: var(--font-display);
    color: var(--deep);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ece1d0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--cream);
    color: var(--text);
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.form-note {
    color: var(--primary-dark);
    font-size: 0.9rem;
    text-align: center;
}

/* ============ Footer ============ */
.footer {
    background: var(--deep-2);
    color: #b9cfc6;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer .logo-text { color: var(--white); }

.footer p {
    margin-top: 14px;
    font-size: 0.92rem;
    max-width: 300px;
}

.socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--white);
    font-family: var(--font-display);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.footer-grid a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.footer-grid a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ============ Reveal Animation ============ */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 380px;
        order: -1;
    }

    .slider {
        width: 300px;
        height: 380px;
    }

    .product-grid,
    .recipe-grid,
    .story-grid,
    .taste-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 82vw);
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.14);
        transition: right 0.4s ease;
        z-index: 99;
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 101;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .hero-content h1 { font-size: 2.3rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }

    .product-grid,
    .recipe-grid,
    .story-grid,
    .taste-grid,
    .testi-grid,
    .story-stats,
    .contact-grid,
    .bulk-inner,
    .feature-banner,
    .vs-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .vs-grid {
        position: relative;
    }

    .vs-badge {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-stats {
        gap: 26px;
    }

    .feature-body {
        padding: 28px;
    }

    .bulk-stats {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .bulk-stats {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1.05rem;
    }
}
