/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ── FONTS — Warm & Traditional ── */
body {
  font-family: 'Hind Madurai', sans-serif;
  background: #FFFDF8;
  color: #2E1A0E;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  line-height: 1.3;
}

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, #3d1f0a 0%, #2E1A0E 50%, #1A0E07 100%);
  display: flex; align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
  overflow: hidden;
}

#loader::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,147,42,0.15);
  animation: ringExpand 2s ease-out infinite;
}

#loader::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,147,42,0.08);
  animation: ringExpand 2s ease-out 0.6s infinite;
}

@keyframes ringExpand {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

#loader.hidden { opacity: 0; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-logo {
  font-family: 'Lora', serif;
  font-size: 52px; font-weight: 700;
  color: #C9932A; letter-spacing: 3px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-sub {
  font-size: 12px; color: rgba(232,217,184,0.5);
  letter-spacing: 6px; margin-top: 6px;
}

.loader-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #C9932A, transparent);
  margin: 16px auto;
  animation: loadLine 2s ease forwards;
}

.loader-text {
  font-family: 'Lora', serif;
  font-size: 12px;
  color: rgba(232,217,184,0.45);
  letter-spacing: 5px;
  font-style: italic;
  animation: fadeInUp 1s ease 0.5s both;
}

.loader-quote {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(201,147,42,0.85);
  margin-top: 20px;
  letter-spacing: 1px;
  min-height: 28px;
  text-align: center;
  max-width: 320px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes loadLine { to { width: 160px; } }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: #2E1A0E;
  display: flex; align-items: center;
  justify-content: space-between;
    padding: 4px 5%;
  border-bottom: 1px solid rgba(201,147,42,0.3);
}

.logo-tamil {
  font-family: 'Lora', serif;
  font-size: 22px; font-weight: 700;
  color: #C9932A; letter-spacing: 1px;
}

.logo-sub {
  font-size: 9px; color: rgba(232,217,184,0.45);
  letter-spacing: 2px; margin-top: 2px;
}

.nav-links {
  list-style: none; display: flex;
  gap: 28px; align-items: center;
}

.nav-links a {
  color: #E8D9B8; text-decoration: none;
  font-size: 14px; transition: color 0.3s; cursor: pointer;
}

.nav-links a:hover { color: #C9932A; }

/* ── DROPDOWN ── */
.dropdown { position: relative; }

.dropdown-menu {
  display: none; position: absolute;
  top: 100%; left: 0;
  background: #2E1A0E;
  border: 1px solid rgba(201,147,42,0.3);
  border-radius: 6px; min-width: 210px;
  padding: 8px 0; z-index: 1000; list-style: none;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block; padding: 10px 18px;
  font-size: 13px; color: #E8D9B8;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background: rgba(201,147,42,0.15); color: #C9932A;
}

.nav-btn {
  background: #C9932A; color: #2E1A0E;
  padding: 9px 18px; border-radius: 4px;
  text-decoration: none; font-size: 13px;
  font-weight: 700; transition: background 0.3s;
  white-space: nowrap;
}

.nav-btn:hover { background: #E8D9B8; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}

.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #E8D9B8; border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── DELIVERY BANNER ── */
.delivery-banner {
  background: #C9932A;
  overflow: hidden;
  height: 54px;
  display: flex; align-items: center;
  margin-top: 56px;
  position: relative;
}

.marquee-track {
  white-space: nowrap;
  position: absolute;
  font-size: 13px;
  font-weight: 700;
  color: #2E1A0E;
  will-change: transform;
  letter-spacing: 0.3px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1A0E07 0%, #2E1A0E 40%, #5C3A1E 75%, #4A6741 100%);
  display: flex; align-items: center;
  justify-content: center;
  padding: 80px 5% 60px;
  text-align: center;
}

.hero-content { max-width: 660px; }

.hero-tag {
  display: inline-block;
  background: rgba(201,147,42,0.15);
  border: 1px solid rgba(201,147,42,0.4);
  color: #C9932A; padding: 5px 16px;
  border-radius: 4px; font-size: 12px;
  letter-spacing: 2px; margin-bottom: 28px;
}

.hero-logo-tamil {
  font-family: 'Lora', serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 700; color: #C9932A;
  letter-spacing: 3px; line-height: 1;
  margin-bottom: 6px;
}

.hero-logo-eng {
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  color: rgba(232,217,184,0.6);
  letter-spacing: 8px; font-weight: 300;
  margin-bottom: 20px;
}

.hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, #C9932A, transparent);
  margin: 0 auto 24px;
}

.hero-content h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: #F5EFE0; margin-bottom: 16px;
}

.hero-content h1 span { color: #C9932A; font-style: italic; }

.hero-content p {
  color: rgba(245,239,224,0.65);
  font-size: 16px; line-height: 1.8;
  margin-bottom: 32px; max-width: 500px;
  margin-left: auto; margin-right: auto;
}

.hero-btns {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.hero-logo-img {
  width: 320px;
  max-width: 85%;
  margin: 0 auto 8px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

/* ── BUTTONS ── */
.btn-green {
  background: #25D366; color: white;
  padding: 13px 26px; border-radius: 4px;
  text-decoration: none; font-size: 15px;
  font-weight: 700; transition: all 0.3s;
  display: inline-block; border: none;
  cursor: pointer; font-family: 'Hind Madurai', sans-serif;
}

.btn-green:hover { background: #1da851; transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(245,239,224,0.4);
  color: #F5EFE0; padding: 13px 26px;
  border-radius: 4px; font-size: 15px;
  transition: all 0.3s; background: none;
  cursor: pointer; font-family: 'Hind Madurai', sans-serif;
}

.btn-outline:hover { border-color: #C9932A; color: #C9932A; }

.btn-brown {
  background: none;
  border: 1px solid #8B5E2F;
  color: #8B5E2F; padding: 11px 22px;
  border-radius: 4px; font-size: 14px;
  font-weight: 600; cursor: pointer;
  transition: all 0.3s;
  font-family: 'Hind Madurai', sans-serif;
  margin-top: 20px; display: inline-block;
}

.btn-brown:hover { background: #8B5E2F; color: white; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 48px; }

.section-tag {
  display: inline-block; color: #8B5E2F;
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #2E1A0E; margin-bottom: 12px;
}

.section-header h2 span { color: #8B5E2F; font-style: italic; }

.section-header p {
  color: #6B4226; font-size: 15px;
  line-height: 1.7; max-width: 480px;
  margin: 0 auto;
}

.section-header.light h2 { color: #F5EFE0; }
.light-tag { color: #C9932A !important; }
.section-header.light p { color: rgba(245,239,224,0.55); }

/* ── PRODUCTS PREVIEW ── */
.preview-section { padding: 80px 5%; background: #FFFDF8; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}

.preview-card {
  background: white; border-radius: 10px;
  border: 1px solid rgba(196,164,107,0.25);
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(92,58,30,0.13);
}

.preview-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #F5EFE0;
  padding: 8px;
}

.preview-body { padding: 16px; }

.preview-body h3 {
  font-size: 16px; color: #2E1A0E;
  margin-bottom: 5px;
}

.preview-body p {
  font-size: 12px; color: #6B4226;
  line-height: 1.5; margin-bottom: 10px;
}

.preview-price {
  font-family: 'Lora', serif;
  font-size: 17px; font-weight: 700;
  color: #C9932A; margin-bottom: 10px;
}

.preview-btn {
  font-size: 13px; color: #8B5E2F; font-weight: 600;
}

.featured-card { border: 2px solid #C9932A; }

.featured-ribbon {
  position: absolute; top: 12px; left: 12px;
  background: #C9932A; color: #2E1A0E;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 1px;
}

.card-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.5px; z-index: 2;
}

.card-badge.bestseller { background: #C9932A; color: #2E1A0E; }
.card-badge.new { background: #4A6741; color: white; }
.card-badge.healthy { background: #2D6A4F; color: white; }

.shelf-badge {
  display: inline-block;
  background: rgba(74,103,65,0.1); color: #4A6741;
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 4px;
  margin-bottom: 10px;
}

/* ── STORY STRIP ── */
.story-strip {
  padding: 80px 5%;
  background: #F5EFE0;
}

.story-strip-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}

.story-strip-text .section-tag { display: block; margin-bottom: 10px; }

.story-strip-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #2E1A0E; margin-bottom: 16px;
}

.story-strip-text h2 span { color: #8B5E2F; font-style: italic; }

.story-strip-text p {
  color: #6B4226; font-size: 15px; line-height: 1.8;
}

.story-strip-card {
  background: linear-gradient(135deg, #2E1A0E, #5C3A1E);
  border-radius: 12px; padding: 36px 28px;
  border: 1px solid rgba(201,147,42,0.3);
  text-align: center;
}

.story-quote {
  font-family: 'Lora', serif;
  font-size: 18px; font-style: italic;
  color: #F5EFE0; line-height: 1.6;
  margin-bottom: 24px;
}

.story-divider {
  width: 60px; height: 1px;
  background: rgba(201,147,42,0.4);
  margin: 0 auto 24px;
}

.story-stats {
  display: flex; justify-content: space-around;
  margin-bottom: 20px;
}

.story-stat strong {
  display: block; font-family: 'Lora', serif;
  font-size: 28px; color: #C9932A;
}

.story-stat span {
  font-size: 12px; color: rgba(232,217,184,0.5);
  letter-spacing: 1px;
}

.story-location {
  color: rgba(232,217,184,0.4); font-size: 12px;
}

/* ── REVIEWS ── */
.reviews-section { padding: 80px 5%; background: #FFFDF8; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 1000px;
  margin: 0 auto 50px;
}

.review-card {
  background: #F5EFE0; border-radius: 10px;
  padding: 24px; border: 1px solid rgba(196,164,107,0.3);
}

.review-stars { color: #C9932A; font-size: 18px; margin-bottom: 12px; }

.review-card p {
  color: #6B4226; font-size: 14px;
  line-height: 1.8; font-style: italic; margin-bottom: 16px;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #2E1A0E; color: #C9932A;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 16px; font-weight: 700;
}

.review-name { font-weight: 700; color: #2E1A0E; font-size: 14px; }
.review-loc { font-size: 12px; color: #8B5E2F; }

/* ── REVIEW FORM ── */
.review-form-wrap {
  max-width: 700px; margin: 0 auto 20px;
  background: white; border-radius: 12px;
  padding: 36px; border: 1px solid rgba(196,164,107,0.25);
}

.review-form-wrap h3 {
  font-size: 22px; color: #2E1A0E; margin-bottom: 8px;
}

.review-form-wrap > p {
  color: #6B4226; font-size: 14px; margin-bottom: 24px;
}

.review-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.star-rating {
  display: flex;
  flex-direction: row;
  gap: 6px;
  font-size: 32px;
  cursor: pointer;
  width: fit-content;
}

.star-rating span {
  color: #ddd;
  transition: color 0.2s;
  user-select: none;
}

.star-rating span.active { color: #C9932A; }
.star-rating span:hover { color: #C9932A; }

.review-note {
  text-align: center; color: rgba(107,66,38,0.45);
  font-size: 12px; font-style: italic;
}

/* ── FORM GROUPS ── */
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: #8B5E2F; margin-bottom: 6px; font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  background: #F5EFE0;
  border: 1px solid rgba(196,164,107,0.5);
  border-radius: 4px;
  font-family: 'Hind Madurai', sans-serif;
  font-size: 14px; color: #2E1A0E;
  outline: none; transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #8B5E2F; }

.form-group textarea { height: 90px; resize: vertical; }

.submit-btn {
  width: 100%; background: #2E1A0E; color: #E8D9B8;
  border: none; padding: 13px; border-radius: 4px;
  font-family: 'Hind Madurai', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.3s; letter-spacing: 1px;
}

.submit-btn:hover { background: #C9932A; color: #2E1A0E; }

/* ── PRODUCT PAGE ── */
.product-page { padding: 90px 5% 60px; background: #FFFDF8; }

.back-btn {
  background: none;
  border: 1px solid rgba(196,164,107,0.4);
  color: #8B5E2F; padding: 8px 18px;
  border-radius: 4px;
  font-family: 'Hind Madurai', sans-serif;
  font-size: 13px; cursor: pointer;
  margin-bottom: 36px; transition: all 0.3s;
}

.back-btn:hover { background: #F5EFE0; color: #2E1A0E; }

.product-page-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  max-width: 1100px; margin: 0 auto;
}

.product-page-img { position: relative; }

.product-page-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
  background: #F5EFE0;
  padding: 12px;
  max-height: 420px;
}

.prod-tamil-label {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(46,26,14,0.88);
  color: #C9932A; padding: 6px 14px;
  border-radius: 4px; font-size: 13px;
  font-weight: 700; letter-spacing: 1px;
}

.featured-label { background: #C9932A; color: #2E1A0E; }

.prod-badges-row {
  display: flex; align-items: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
}

.prod-tag-top {
  display: inline-block;
  background: rgba(139,94,47,0.1); color: #8B5E2F;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 4px;
}

.prod-shelf {
  display: inline-block;
  background: rgba(74,103,65,0.1); color: #4A6741;
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 4px;
}

.product-page-info h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #2E1A0E; margin-bottom: 6px;
}

.prod-tagline {
  color: #8B5E2F; font-size: 15px;
  font-style: italic; margin-bottom: 14px;
}

.prod-desc {
  color: #6B4226; font-size: 15px;
  line-height: 1.8; margin-bottom: 28px;
}

/* ── INFO GRID ── */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 28px;
}

.info-box {
  background: #F5EFE0; border-radius: 8px;
  padding: 16px; border-left: 3px solid #C9932A;
}

.info-box h4 {
  font-family: 'Lora', serif;
  font-size: 14px; color: #2E1A0E; margin-bottom: 6px;
}

.info-box p { font-size: 13px; color: #6B4226; line-height: 1.6; }

/* ── PRICE ── */
.price-section { margin-bottom: 24px; }

.price-section h4 {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: #8B5E2F; margin-bottom: 12px;
}

.price-tags { display: flex; gap: 10px; flex-wrap: wrap; }

.price-tag {
  background: #2E1A0E; color: #E8D9B8;
  padding: 12px 20px; border-radius: 4px;
  font-size: 13px; font-weight: 600;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px; min-width: 80px;
}

.price-tag span {
  font-family: 'Lora', serif;
  color: #C9932A; font-size: 18px; font-weight: 700;
}

.order-btn {
  display: inline-block; background: #25D366;
  color: white; padding: 14px 28px;
  border-radius: 4px; text-decoration: none;
  font-size: 15px; font-weight: 700; transition: all 0.3s;
}

.order-btn:hover { background: #1da851; transform: translateY(-2px); }

/* ── COMBOS PAGE ── */
.combos-page { padding: 90px 5% 60px; background: #FFFDF8; }

.combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}

.combo-card {
  background: white; border-radius: 12px;
  border: 1px solid rgba(196,164,107,0.25);
  overflow: hidden; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(92,58,30,0.12);
}

.featured-combo { border: 2px solid #C9932A; }

.combo-tag {
  position: absolute; top: 12px; left: 12px;
  background: #2E1A0E; color: #C9932A;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 4px; z-index: 2;
}

.combo-tag.gold { background: #C9932A; color: #2E1A0E; }
.combo-tag.green { background: #2D6A4F; color: white; }
.combo-tag.purple { background: #5C3A8E; color: white; }

.combo-imgs {
  display: flex; height: 150px;
  overflow: hidden; background: #F5EFE0;
}

.combo-imgs img { flex: 1; object-fit: cover; }

.combo-body { padding: 20px; }

.combo-body h3 {
  font-size: 18px; color: #2E1A0E; margin-bottom: 6px;
}

.combo-body p {
  font-size: 13px; color: #6B4226;
  margin-bottom: 14px; line-height: 1.5;
}

.combo-includes { margin-bottom: 14px; }

.combo-item {
  font-size: 13px; color: #4A6741;
  font-weight: 600; padding: 2px 0;
}

.combo-price-row {
  display: flex; align-items: center;
  gap: 12px; margin-bottom: 6px;
}

.combo-original {
  font-size: 13px; color: #8B5E2F;
  text-decoration: line-through;
}

.combo-offer {
  font-family: 'Lora', serif;
  font-size: 22px; font-weight: 700; color: #2E1A0E;
}

.combo-save {
  font-size: 12px; font-weight: 700; color: #4A6741;
  background: rgba(74,103,65,0.1);
  display: inline-block; padding: 3px 10px;
  border-radius: 4px; margin-bottom: 16px;
}

/* ── FAQ PAGE ── */
.faq-page { padding: 90px 5% 60px; background: #FFFDF8; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(196,164,107,0.3); }

.faq-q {
  width: 100%; background: none; border: none;
  padding: 20px 0; text-align: left;
  font-family: 'Lora', serif;
  font-size: 16px; font-weight: 600;
  color: #2E1A0E; cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; transition: color 0.3s;
}

.faq-q:hover { color: #8B5E2F; }

.faq-q span {
  font-size: 22px; font-weight: 300;
  color: #C9932A; transition: transform 0.3s;
  min-width: 24px; text-align: center;
}

.faq-q.open span { transform: rotate(45deg); }

.faq-a { display: none; padding: 0 0 20px; }
.faq-a.open { display: block; }

.faq-a p {
  color: #6B4226; font-size: 15px; line-height: 1.8;
}

/* ── ABOUT PAGE ── */
.about-page { padding: 90px 5% 60px; background: #FFFDF8; }

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}

.about-text p {
  color: #6B4226; font-size: 15px;
  line-height: 1.8; margin-bottom: 16px;
}

.about-text strong { color: #2E1A0E; }

.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 24px;
}

.value {
  display: flex; align-items: center;
  gap: 8px; font-size: 14px;
  color: #2E1A0E; font-weight: 600;
}

.about-card {
  background: linear-gradient(135deg, #2E1A0E, #5C3A1E);
  border-radius: 12px; padding: 36px 28px;
  border: 1px solid rgba(201,147,42,0.3); text-align: center;
}

.about-logo {
  font-family: 'Lora', serif;
  font-size: 32px; font-weight: 700;
  color: #C9932A; letter-spacing: 2px; margin-bottom: 4px;
}

.about-tagline {
  color: rgba(232,217,184,0.4); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 24px;
}

.about-stats {
  display: flex; justify-content: space-around;
  margin-bottom: 24px; padding: 18px 0;
  border-top: 1px solid rgba(201,147,42,0.2);
  border-bottom: 1px solid rgba(201,147,42,0.2);
}

.stat strong {
  display: block; font-family: 'Lora', serif;
  font-size: 28px; color: #C9932A;
}

.stat span {
  font-size: 11px; color: rgba(232,217,184,0.4);
  letter-spacing: 1px;
}

.about-quote {
  font-family: 'Lora', serif;
  color: rgba(245,239,224,0.8); font-size: 14px;
  font-style: italic; line-height: 1.7;
  margin-bottom: 16px; padding: 14px;
  background: rgba(201,147,42,0.08); border-radius: 4px;
  border-left: 3px solid #C9932A; text-align: left;
}

.about-loc {
  color: rgba(232,217,184,0.45); font-size: 12px;
  line-height: 1.7; margin-bottom: 12px;
}

.about-contact {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

.about-contact span { color: rgba(232,217,184,0.5); font-size: 13px; }

/* ── CONTACT PAGE ── */
.contact-page { padding: 90px 5% 60px; background: #2E1A0E; }

.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1000px; margin: 0 auto;
}

.contact-info { display: flex; flex-direction: column; gap: 22px; }

.contact-row { display: flex; gap: 14px; align-items: flex-start; }

.contact-icon { font-size: 22px; }

.contact-row h4 {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #C9932A; margin-bottom: 4px;
}

.contact-row p { color: #E8D9B8; font-size: 15px; font-weight: 600; }

.contact-row small { color: rgba(232,217,184,0.4); font-size: 13px; }

.contact-cta-btns {
  display: flex; flex-direction: column; gap: 12px; margin-top: 8px;
}

.btn-insta {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white; padding: 12px 24px; border-radius: 4px;
  text-decoration: none; font-size: 15px; font-weight: 700;
  text-align: center; transition: opacity 0.3s; display: block;
}

.btn-insta:hover { opacity: 0.85; }

.contact-form {
  background: white; border-radius: 8px; padding: 32px;
}

.contact-form h3 {
  font-size: 22px; color: #2E1A0E; margin-bottom: 24px;
}

/* ── FOOTER ── */
footer {
  background: #1A0E07; padding: 50px 5% 0;
  border-top: 1px solid rgba(201,147,42,0.2);
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: 'Lora', serif;
  font-size: 26px; font-weight: 700;
  color: #C9932A; letter-spacing: 2px; margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(232,217,184,0.35); font-size: 13px;
  line-height: 1.8; max-width: 240px; margin-bottom: 16px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,147,42,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none; transition: all 0.3s;
}

.footer-social a:hover { background: #C9932A; border-color: #C9932A; }

.footer-col h4 {
  color: #C9932A; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(232,217,184,0.4); text-decoration: none;
  font-size: 13px; transition: color 0.3s; cursor: pointer;
}

.footer-col ul li a:hover { color: #C9932A; }

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding: 16px 0;
  flex-wrap: wrap; gap: 8px;
}

.footer-bottom p { color: rgba(232,217,184,0.2); font-size: 12px; }

/* ── FLOATING BUTTONS ── */
.float-buttons {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column;
  gap: 10px; z-index: 999;
}

.float-wa, .float-ig {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.float-wa { background: #25D366; }
.float-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.float-wa:hover, .float-ig:hover { transform: scale(1.12); }

/* ── STICKY MOBILE BUTTON ── */
.sticky-mobile-btn {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998; padding: 10px 16px;
  background: white;
  border-top: 1px solid rgba(196,164,107,0.3);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

.sticky-mobile-btn a {
  display: block; background: #25D366; color: white;
  text-align: center; padding: 14px; border-radius: 8px;
  font-size: 16px; font-weight: 700; text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  body { padding-bottom: 80px; }

  .hamburger { display: flex; }

  .nav-links {
    display: none; position: fixed;
    top: 56px; left: 0; right: 0;
    background: #2E1A0E;
    flex-direction: column;
    padding: 16px 5% 28px;
    gap: 0; border-bottom: 1px solid rgba(201,147,42,0.3);
    z-index: 998; max-height: 80vh; overflow-y: auto;
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }

  .nav-links li a { display: block; padding: 14px 0; font-size: 15px; }

  .dropdown-menu {
    position: static; display: none;
    background: rgba(255,255,255,0.04);
    border: none; padding: 0; margin-left: 16px;
    border-radius: 0;
  }

  .dropdown-menu.open { display: block; }
  .dropdown-menu li a { padding: 10px 0; font-size: 14px; }

  .nav-btn { display: none; }

  .sticky-mobile-btn { display: block; }
  .float-buttons { display: none; }

  .hero { padding: 80px 5% 40px; }
  .hero-logo-tamil { font-size: 3rem; }

  .story-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-page-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .info-grid { grid-template-columns: 1fr; }
  .price-tags { flex-wrap: wrap; }
  .combos-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-form-row { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .prod-badges-row { flex-direction: column; align-items: flex-start; }

  .delivery-banner { margin-top: 56px; }
}

@media (max-width: 480px) {
  .preview-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
/* ── PACK SELECTION ── */
.price-tag {
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.price-tag:hover {
  border-color: #C9932A;
  transform: translateY(-3px);
}

.price-tag.selected {
  border-color: #25D366;
  background: #1a3a1a;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.price-tag.selected span {
  color: #25D366;
}

/* ── GALLERY PAGE ── */
.gallery-page {
  padding: 90px 5% 60px;
  background: #FFFDF8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(196,164,107,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #F5EFE0;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(92,58,30,0.15);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  padding: 16px;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(46,26,14,0.85);
  color: #C9932A;
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 16px;
  text-align: center;
  letter-spacing: 1px;
}

/* ── GOOGLE MAP ── */
.map-wrap {
  margin-top: 28px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201,147,42,0.3);
}

.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
}

/* ── CALL BUTTON ── */
.btn-call {
  background: #2E1A0E;
  color: #E8D9B8;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  display: block;
  border: 1px solid rgba(201,147,42,0.3);
}

.btn-call:hover {
  background: #C9932A;
  color: #2E1A0E;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* ── HERO LOGO GLOW ── */
.hero-logo-img {
  filter: drop-shadow(0 0 24px rgba(201,147,42,0.5))
          drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(201,147,42,0.5)) drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }
  50% { filter: drop-shadow(0 0 40px rgba(201,147,42,0.8)) drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }
}

/* ── TYPING TEXT ── */
.hero-typing {
  color: rgba(245,239,224,0.7);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  min-height: 52px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.loader-logo-img {
  width: 280px;
  max-width: 70vw;
  margin-bottom: 20px;
  animation: logoFadeIn 1s ease forwards, logoPulse 3s ease-in-out 1s infinite;
 filter: drop-shadow(0 0 30px rgba(201,147,42,0.6));
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(201,147,42,0.6)); }
  50% { filter: drop-shadow(0 0 60px rgba(201,147,42,0.95)); }
}
@media (max-width: 480px) {
  .loader-logo-img {
    width: 200px;
    max-width: 65vw;
  }

  .loader-quote {
    font-size: 16px;
    max-width: 260px;
    padding: 0 20px;
  }

  .loader-text {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .loader-inner {
    padding: 0 20px;
    text-align: center;
  }
}
.nav-logo-img {
  height: 68px;
  width: auto;
  display: block;
    filter: brightness(1.1)
          drop-shadow(0 0 8px rgba(201,147,42,0.5));
  transition: all 0.3s ease;
}

.nav-logo-img:hover {
  filter: brightness(1.2)
          drop-shadow(0 0 16px rgba(201,147,42,0.8));
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 40px;
  }
}
.hero-logo-tamil {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 6px;
}

.tamil-kai {
  font-family: 'Lora', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: #C9932A;
  letter-spacing: 4px;
  animation: logoFadeIn 1s ease forwards;
  filter: drop-shadow(0 0 20px rgba(201,147,42,0.4));
}

.tamil-manam {
  font-family: 'Lora', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  color: #E8D9B8;
  letter-spacing: 4px;
  animation: logoFadeIn 1.2s ease forwards;
  filter: drop-shadow(0 0 20px rgba(232,217,184,0.3));
}