@font-face {
  font-family: "Vedikadai Sans";
  src: url("../fonts/NotoSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Vedikadai Sans";
  src: url("../fonts/NotoSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Vedikadai Tamil";
  src: url("../fonts/NotoSansTamil-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --night: #10080d;
  --night-soft: #1d0d17;
  --wine: #68152f;
  --wine-bright: #9e244b;
  --saffron: #ff8a1f;
  --gold: #f7be3d;
  --gold-light: #ffe4a0;
  --paper: #fffaf3;
  --surface: #ffffff;
  --ink: #24161c;
  --muted: #716269;
  --line: #eadfd9;
  --green: #1b8b5a;
  --shadow-sm: 0 6px 24px rgba(43, 18, 29, .07);
  --shadow-md: 0 16px 46px rgba(43, 18, 29, .12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --font: "Vedikadai Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
svg { fill: currentColor; }
.container { width: min(100% - 32px, 1180px); max-width: none; margin-inline: auto; }
.festive-bg { display: none; }

.announcement-bar {
  color: rgba(255,255,255,.86);
  background: var(--night);
  font-size: 11px;
}

.announcement-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement-inner > span:first-child { display: flex; align-items: center; gap: 6px; }
.announcement-inner svg { width: 15px; height: 15px; color: var(--gold); }
.announcement-offer { display: none; color: var(--gold-light); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(104, 21, 47, .08);
  background: rgba(255, 250, 243, .94);
  backdrop-filter: blur(18px);
}

.navbar { min-height: 68px; padding: 8px 0; }
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 40px; height: 40px; border-radius: 12px; box-shadow: 0 5px 16px rgba(104,21,47,.18); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { color: var(--wine); font-size: 20px; letter-spacing: -.5px; }
.brand-text small { margin-top: 4px; color: var(--muted); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.navbar-toggler { width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 13px; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(247,190,61,.25); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2368152f' stroke-linecap='round' stroke-width='2' d='M5 8h20M5 15h20M5 22h20'/%3e%3c/svg%3e");
}

.navbar-collapse { padding: 12px 0 4px; }
.nav-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 14px;
}
.nav-link:hover { color: var(--wine-bright) !important; }

.header-cart {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  color: #fff;
  background: var(--wine);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}
.header-cart svg { width: 19px; height: 19px; }
.cart-badge {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--night);
  background: var(--gold);
  font-size: 11px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 19px; height: 19px; }
.btn-gold { color: var(--night); background: linear-gradient(135deg, var(--gold), #ff9e28); border: 0; box-shadow: 0 10px 28px rgba(255,158,40,.25); }
.btn-gold:hover { color: var(--night); box-shadow: 0 14px 34px rgba(255,158,40,.35); }
.btn-maroon { color: #fff; background: var(--wine); border: 0; }
.btn-maroon:hover { color: #fff; background: var(--wine-bright); }
.btn-outline-ink { color: var(--wine); border: 1px solid rgba(104,21,47,.28); background: transparent; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--wine-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--gold-light); }
.section { padding: 60px 0; }
.section-title {
  margin: 0 0 10px;
  color: var(--night);
  font-size: clamp(28px, 8vw, 46px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-lead { max-width: 610px; margin: 0; color: var(--muted); }
.section-heading { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.section-heading.centered { text-align: center; align-items: center; }
.section-heading.centered .section-lead { margin-inline: auto; }
.section-link { color: var(--wine); font-size: 13px; font-weight: 700; white-space: nowrap; }
.section-link span { margin-left: 5px; }

/* Home hero */
.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 54px 0 62px;
  color: #fff;
  background: var(--night);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(255,138,31,.24), transparent 28%),
    radial-gradient(circle at 0 80%, rgba(158,36,75,.36), transparent 35%),
    linear-gradient(145deg, #10080d 0%, #2a0d1a 48%, #170911 100%);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url("../images/hero-pattern.svg");
  background-size: cover;
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 38px; }
.hero-content h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(46px, 13vw, 82px);
  line-height: .95;
  letter-spacing: -.06em;
}
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-line { max-width: 570px; margin: 22px 0 0; color: rgba(255,255,255,.7); font-size: 16px; }
.hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 15px; margin-top: 28px; }
.hero-text-link { align-self: center; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.3); font-size: 13px; font-weight: 700; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-trust span { color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.35; }
.hero-trust strong { display: block; color: #fff; font-size: 12px; }

.hero-showpiece { position: relative; height: 230px; }
.orbit { position: absolute; border: 1px solid rgba(247,190,61,.18); border-radius: 50%; }
.orbit-one { width: 220px; height: 220px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.orbit-two { width: 150px; height: 150px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.firework { position: absolute; width: 110px; height: 110px; }
.firework-large { right: 8%; top: 0; }
.firework-small { left: 5%; top: 26%; transform: scale(.55); }
.firework i { position: absolute; left: 50%; top: 50%; width: 3px; height: 48%; border-radius: 999px; background: linear-gradient(var(--gold), transparent); transform-origin: 50% 0; }
.firework i:nth-child(1) { transform: rotate(0deg); }
.firework i:nth-child(2) { transform: rotate(45deg); }
.firework i:nth-child(3) { transform: rotate(90deg); }
.firework i:nth-child(4) { transform: rotate(135deg); }
.firework i:nth-child(5) { transform: rotate(180deg); }
.firework i:nth-child(6) { transform: rotate(225deg); }
.firework i:nth-child(7) { transform: rotate(270deg); }
.firework i:nth-child(8) { transform: rotate(315deg); }
.hero-diya { position: absolute; left: 50%; bottom: 4px; width: 170px; height: 70px; transform: translateX(-50%); border-radius: 12px 12px 90px 90px; background: linear-gradient(180deg, #ffab2f, #9e244b); box-shadow: 0 28px 70px rgba(255,138,31,.34); }
.hero-diya::before { content: ""; position: absolute; left: 50%; bottom: 55px; width: 40px; height: 76px; transform: translateX(-50%); border-radius: 70% 30% 70% 30%; background: linear-gradient(#fff8c5, #ff9e28 65%, transparent); filter: drop-shadow(0 0 16px #ff9e28); }
.floating-offer { position: absolute; right: 0; bottom: 25px; display: flex; flex-direction: column; padding: 13px 15px; color: var(--night); background: rgba(255,255,255,.94); border-radius: 14px; box-shadow: var(--shadow-md); transform: rotate(3deg); }
.floating-offer small, .floating-offer span { color: var(--muted); font-size: 8px; }
.floating-offer strong { color: var(--wine); font-size: 18px; }
.spark { position: absolute; z-index: 1; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px var(--gold); animation: pulse 2.6s infinite; }
.spark-one { left: 8%; top: 20%; }.spark-two { right: 16%; top: 12%; animation-delay: .7s; }.spark-three { left: 58%; top: 60%; animation-delay: 1.2s; }
@keyframes pulse { 50% { opacity: .25; transform: scale(.5); } }

.trust-ribbon { color: #fff; background: var(--wine); }
.trust-ribbon-grid { display: grid; grid-template-columns: 1fr 1fr; }
.trust-ribbon-grid > div { min-height: 86px; display: flex; align-items: center; gap: 10px; padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.1); }
.trust-ribbon-grid > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
.trust-icon { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--gold); font-weight: 700; }
.trust-ribbon p { margin: 0; line-height: 1.25; }
.trust-ribbon strong { display: block; font-size: 11px; }
.trust-ribbon small { color: rgba(255,255,255,.55); font-size: 8px; }

/* CSS category and product artwork */
.category-rail { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.category-chip { min-width: 0; display: flex; flex-direction: column; padding: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.category-chip:hover { color: var(--wine); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.category-art { position: relative; height: 112px; display: grid; place-items: center; overflow: hidden; border-radius: 13px; background: linear-gradient(145deg,#2a0d1a,#68152f); }
.category-art::before, .product-art::before, .mini-category-art::before { content: "✦"; color: var(--gold); font-size: 42px; filter: drop-shadow(0 0 10px rgba(247,190,61,.65)); }
.category-art.visual-rocket::before, .mini-category-art.visual-rocket::before, .visual-rocket .product-art::before { content: "↑"; font-size: 58px; transform: rotate(35deg); }
.category-art.visual-fountain::before, .mini-category-art.visual-fountain::before, .visual-fountain .product-art::before { content: "♨"; font-size: 54px; }
.category-art.visual-sparkler::before, .mini-category-art.visual-sparkler::before, .visual-sparkler .product-art::before { content: "✺"; font-size: 56px; }
.category-art.visual-spinner::before, .mini-category-art.visual-spinner::before, .visual-spinner .product-art::before { content: "✥"; font-size: 56px; }
.category-art.visual-aerial::before, .mini-category-art.visual-aerial::before, .visual-aerial .product-art::before { content: "✹"; font-size: 58px; }
.category-art.visual-garland::before, .mini-category-art.visual-garland::before, .visual-garland .product-art::before { content: "•••"; font-size: 45px; letter-spacing: 2px; }
.category-art i, .product-art i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 12px var(--gold); }
.category-art i:nth-child(1), .product-art i:nth-child(1) { left: 20%; top: 22%; }
.category-art i:nth-child(2), .product-art i:nth-child(2) { right: 18%; top: 38%; }
.category-art i:nth-child(3), .product-art i:nth-child(3) { left: 34%; bottom: 18%; }
.category-name { margin: 12px 3px 3px; color: var(--ink); font-size: 13px; font-weight: 700; line-height: 1.25; }
.category-cta { margin: auto 3px 3px; color: var(--muted); font-size: 10px; }.category-cta b { color: var(--wine); }

.offer-section { padding-top: 10px; }
.offer-panel { position: relative; min-height: 470px; display: grid; align-items: end; padding: 30px 24px; color: #fff; background: radial-gradient(circle at 70% 20%,rgba(255,138,31,.32),transparent 30%),linear-gradient(145deg,#1b0a13,#68152f); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.offer-copy { position: relative; z-index: 2; }
.offer-copy h2 { margin: 0; font-size: 38px; line-height: 1.02; letter-spacing: -.05em; }
.offer-copy h2 em { color: var(--gold); font-style: normal; }
.offer-copy p { max-width: 570px; margin: 18px 0 24px; color: rgba(255,255,255,.68); }
.btn-light-premium { color: var(--night); background: #fff; border: 0; }
.offer-visual { position: absolute; inset: 0; }
.offer-disc { position: absolute; right: 20px; top: 30px; width: 155px; height: 155px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--night); background: linear-gradient(145deg,#fff2b7,#f7be3d); border-radius: 50%; box-shadow: 0 0 0 10px rgba(247,190,61,.08); transform: rotate(6deg); }
.offer-disc span { font-size: 9px; font-weight: 700; letter-spacing: .15em; }.offer-disc strong { font-size: 64px; line-height: .8; }.offer-disc b { font-size: 17px; }
.offer-ring { position: absolute; border: 1px solid rgba(247,190,61,.2); border-radius: 50%; }.ring-a { width: 240px; height: 240px; right: -20px; top: -10px; }.ring-b { width: 320px; height: 320px; right: -60px; top: -50px; }

.steps-grid { display: grid; gap: 12px; }
.steps-grid article { position: relative; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.steps-grid article > span { position: absolute; right: 18px; top: 15px; color: #eee1dc; font-size: 30px; font-weight: 700; }
.step-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px; color: var(--wine); background: #fff0e1; border-radius: 14px; font-size: 21px; font-weight: 700; }
.steps-grid h3 { margin: 0 0 7px; font-size: 17px; }.steps-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.safety-section { padding-top: 0; }
.safety-panel { display: grid; gap: 20px; padding: 28px 24px; color: #fff; background: var(--night); border-radius: var(--radius-lg); }
.safety-mark { width: 52px; height: 52px; display: grid; place-items: center; color: var(--night); background: var(--gold); border-radius: 50%; font-size: 28px; font-weight: 700; }
.safety-panel h2 { margin: 0 0 10px; font-size: 27px; line-height: 1.1; }.safety-panel p { margin: 0; color: rgba(255,255,255,.62); }
.safety-panel ul { margin: 0; padding: 0; list-style: none; }.safety-panel li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.78); font-size: 12px; }.safety-panel li::before { content: "✓"; margin-right: 8px; color: var(--gold); }

.faq-layout { display: grid; gap: 30px; }
.faq-intro > p { color: var(--muted); }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.faq-item summary { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 18px; cursor: pointer; list-style: none; font-weight: 700; font-size: 13px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { font-size: 20px; color: var(--wine); transition: transform .2s; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 18px 18px; color: var(--muted); font-size: 12px; }

.contact-section { padding-top: 0; }
.contact-panel { display: grid; gap: 25px; padding: 32px 24px; color: #fff; background: linear-gradient(135deg,var(--wine),#a42b51); border-radius: var(--radius-lg); }
.contact-panel h2 { margin: 0; font-size: 32px; line-height: 1.05; letter-spacing: -.04em; }.contact-panel p { margin: 12px 0 0; color: rgba(255,255,255,.68); }
.contact-actions { display: flex; flex-direction: column; gap: 14px; }.contact-link { align-self: center; color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); font-weight: 700; font-size: 13px; }

/* Catalog */
.products-body { background: #f8f3ed; }
.products-page { padding-bottom: 150px; }
.catalog-hero { position: relative; padding: 48px 0 58px; color: #fff; background: radial-gradient(circle at 80% 20%,rgba(255,138,31,.25),transparent 25%),linear-gradient(135deg,var(--night),var(--wine)); overflow: hidden; }
.catalog-hero::after { content: "✦"; position: absolute; right: -10px; bottom: -70px; color: rgba(247,190,61,.12); font-size: 240px; line-height: 1; }
.catalog-hero .container { position: relative; z-index: 1; }
.catalog-hero h1 { margin: 0; font-size: clamp(38px,11vw,65px); line-height: .98; letter-spacing: -.055em; }
.catalog-hero p { max-width: 560px; margin: 16px 0 23px; color: rgba(255,255,255,.68); }
.catalog-search-wrap { position: relative; max-width: 650px; }
.catalog-search-wrap > svg { position: absolute; left: 16px; top: 50%; width: 21px; height: 21px; color: var(--wine); transform: translateY(-50%); }
.catalog-search-wrap input { width: 100%; height: 56px; padding: 0 48px; color: var(--ink); background: #fff; border: 0; border-radius: 16px; outline: 0; box-shadow: 0 14px 38px rgba(0,0,0,.18); font-size: 13px; }
.catalog-search-wrap input:focus { box-shadow: 0 0 0 4px rgba(247,190,61,.28),0 14px 38px rgba(0,0,0,.18); }
.catalog-search-wrap button { position: absolute; right: 8px; top: 8px; width: 40px; height: 40px; display: none; border: 0; border-radius: 10px; color: var(--muted); background: #f6f0eb; font-size: 22px; }

.catalog-tools { position: sticky; top: 68px; z-index: 50; margin: 0 -16px 26px; padding: 13px 16px 11px; background: rgba(248,243,237,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.category-nav { display: flex; gap: 8px; padding-bottom: 2px; overflow-x: auto; scrollbar-width: none; }.category-nav::-webkit-scrollbar { display: none; }
.category-filter { min-height: 40px; flex: 0 0 auto; padding: 0 13px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 700; }
.category-filter span { margin-left: 4px; opacity: .55; }
.category-filter.active { color: #fff; background: var(--wine); border-color: var(--wine); box-shadow: 0 8px 20px rgba(104,21,47,.18); }
.catalog-status { display: flex; align-items: center; gap: 6px; margin-top: 9px; color: var(--muted); font-size: 10px; }
.catalog-status > span:first-child { color: var(--ink); font-weight: 700; }.status-dot { width: 5px; height: 5px; margin-left: 4px; background: var(--green); border-radius: 50%; }
.selected-filter-mobile { min-height: 32px; margin-left: auto; padding: 0 11px; color: var(--wine); background: #fff; border: 1px solid rgba(139,30,63,.22); border-radius: 999px; font-size: 9px; font-weight: 800; }
.selected-filter-mobile.active { color: #fff; background: var(--wine); border-color: var(--wine); }
.selected-filter-mobile:disabled { opacity: .45; cursor: not-allowed; }

.category-block { margin-bottom: 38px; scroll-margin-top: 155px; }
.category-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.category-head > div { min-width: 0; display: flex; align-items: center; gap: 11px; }
.category-head h2 { margin: 0; font-size: 20px; letter-spacing: -.03em; }.category-head p { margin: 2px 0 0; color: var(--muted); font-size: 10px; }
.category-head > a { display: none; color: var(--wine); font-size: 10px; font-weight: 700; }
.mini-category-art { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; overflow: hidden; color: var(--gold); background: var(--night); border-radius: 12px; }
.mini-category-art::before { font-size: 21px !important; }
.product-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.product-row { min-width: 0; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 17px; overflow: hidden; box-shadow: 0 5px 18px rgba(43,18,29,.045); transition: border-color .2s, box-shadow .2s, transform .2s; }
.product-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.product-row.is-selected { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(247,190,61,.18); }
.product-row[hidden], .category-block[hidden] { display: none !important; }
.product-visual { position: relative; height: 105px; display: grid; place-items: center; color: var(--gold); background: radial-gradient(circle at 50% 50%,rgba(158,36,75,.55),transparent 48%),linear-gradient(145deg,#160a10,#351020); overflow: hidden; }
.product-art { position: relative; width: 70px; height: 70px; display: grid; place-items: center; }
.product-art::before { font-size: 39px; }
.product-number, .discount-badge { position: absolute; top: 8px; z-index: 1; padding: 4px 6px; border-radius: 7px; font-size: 8px; font-weight: 700; }
.product-number { left: 8px; color: rgba(255,255,255,.62); background: rgba(255,255,255,.08); }
.discount-badge { right: 8px; color: var(--night); background: var(--gold); }
.product-content { flex: 1; display: flex; flex-direction: column; padding: 12px; }
.product-meta { display: none; }
.name-en { min-height: 36px; margin: 0; color: var(--ink); font-size: 13px; line-height: 1.35; letter-spacing: -.02em; }
.name-ta { min-height: 34px; margin: 5px 0 8px; color: var(--muted); font-family: "Vedikadai Tamil",var(--font); font-size: 10px; line-height: 1.5; }
.pack-size { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; color: var(--muted); font-size: 9px; }.pack-size svg { width: 13px; height: 13px; color: var(--wine-bright); }
.product-buy-row { display: flex; flex-direction: column; gap: 9px; margin-top: auto; padding-top: 10px; border-top: 1px solid #f1e9e4; }
.price-stack { display: flex; align-items: baseline; gap: 7px; }
.price-mrp { color: #a19499; font-size: 9px; text-decoration: line-through; }
.price-offer { color: var(--wine); font-size: 17px; line-height: 1; }
.qty-control { width: 100%; height: 40px; display: grid; grid-template-columns: 40px 1fr 40px; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 11px; background: #fbf7f3; }
.qty-control button { width: 40px; height: 40px; border: 0; color: var(--wine); background: transparent; font-size: 20px; font-weight: 700; touch-action: manipulation; }
.qty-control button:active { background: #f3e5dc; }
.qty-control input { width: 100%; min-width: 0; padding: 0; border: 0; outline: 0; text-align: center; background: transparent; font-size: 13px; font-weight: 700; appearance: textfield; }
.qty-control input::-webkit-inner-spin-button { appearance: none; }
.selected-line { display: none; align-items: center; justify-content: space-between; margin: 10px -12px -12px; padding: 9px 12px; color: var(--wine); background: #fff7e3; font-size: 9px; }.selected-line strong { font-size: 12px; }.product-row.is-selected .selected-line { display: flex; }
.no-results { padding: 70px 20px; text-align: center; }.no-results > div { color: var(--wine); font-size: 45px; }.no-results h2 { margin: 8px 0; }.no-results p { color: var(--muted); }

/* Product list table */
.catalog-table-wrap {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow-sm);
}

.catalog-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.catalog-table th {
  height: 44px;
  padding: 8px 6px;
  color: rgba(255,255,255,.64);
  background: var(--night);
  border: 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-table td {
  height: 68px;
  padding: 8px 6px;
  vertical-align: middle;
  border-bottom: 1px solid #f0e7e2;
  background: #fff;
  font-size: 10px;
}

.catalog-table tbody tr:last-child td { border-bottom: 0; }
.catalog-table tbody tr:nth-child(even) td { background: #fffcf8; }
.catalog-table .product-row {
  display: table-row;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
.catalog-table .product-row:hover { transform: none; box-shadow: none; }
.catalog-table .product-row:hover td { background: #fff9ef; }
.catalog-table .product-row.is-selected td { background: #fff0c7; }
.catalog-table .product-row.is-selected .name-en { color: var(--wine); }
.catalog-table .product-row.is-selected .qty-control { background: #fff; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(247,190,61,.16); }
.catalog-table .product-row.is-selected .line-total { color: var(--wine); }
.catalog-table .product-row.is-selected .col-product::after {
  content: "✓ Added";
  display: inline-flex;
  margin-left: 7px;
  padding: 2px 6px;
  color: #17683a;
  background: #dff6e8;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
  line-height: 1.4;
  vertical-align: middle;
}
.catalog-table .product-row[hidden] { display: none !important; }

.catalog-table .col-serial { display: none; width: 48px; text-align: center; color: var(--muted); }
.catalog-table .col-image { width: 42px; text-align: center; }
.catalog-table .col-product { width: auto; }
.catalog-table .col-tamil { display: none; width: 22%; }
.catalog-table .col-pack { display: none; width: 75px; color: var(--muted); }
.catalog-table .col-price { width: 63px; text-align: right; }
.catalog-table .col-price:nth-of-type(6) { display: none; }
.catalog-table .col-qty { width: 112px; text-align: center; }
.catalog-table .col-total { display: none; width: 92px; text-align: right; }

.catalog-table .name-en {
  min-height: 0;
  display: inline;
  font-size: 11px;
  line-height: 1.35;
}
.catalog-table .name-ta {
  min-height: 0;
  margin: 0;
  font-size: 10px;
}
.mobile-product-detail {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-family: "Vedikadai Tamil", var(--font);
  font-size: 8px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-discount {
  display: none;
  margin-left: 5px;
  padding: 2px 5px;
  color: #805500;
  background: #ffefbb;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 700;
  white-space: nowrap;
}
.catalog-table .price-mrp { font-size: 9px; }
.catalog-table .price-offer { font-size: 12px; white-space: nowrap; }
.catalog-table .line-total { color: var(--ink); font-size: 12px; white-space: nowrap; }
.catalog-table .qty-control {
  width: 104px;
  height: 38px;
  grid-template-columns: 36px 32px 36px;
  margin-inline: auto;
  border-radius: 10px;
}
.catalog-table .qty-control button { width: 36px; height: 38px; font-size: 18px; }
.catalog-table .qty-control input { font-size: 11px; }

.image-preview-btn {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--wine);
  background: #fff0e1;
  border: 1px solid #f2d8c1;
  border-radius: 9px;
  transition: transform .2s, background .2s;
}
.image-preview-btn:hover { color: #fff; background: var(--wine); transform: scale(1.05); }
.image-preview-btn svg { width: 17px; height: 17px; }

.product-image-dialog {
  width: min(92vw, 680px);
  max-height: 88vh;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(16,8,13,.34);
  overflow: hidden;
}
.product-image-dialog::backdrop { background: rgba(16,8,13,.76); backdrop-filter: blur(5px); }
.image-dialog-head { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.image-dialog-head h2 { margin: 0; overflow: hidden; font-size: 16px; text-overflow: ellipsis; white-space: nowrap; }
.image-dialog-head button { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; color: var(--muted); background: #f6f0eb; border: 0; border-radius: 11px; font-size: 24px; }
.image-dialog-body { display: grid; place-items: center; min-height: 240px; max-height: calc(88vh - 60px); padding: 14px; background: #f6f0eb; }
.image-dialog-body img { max-width: 100%; max-height: calc(88vh - 88px); object-fit: contain; border-radius: 12px; }

/* Mobile table: two compact tiers, all totals visible, no horizontal scroll */
@media (max-width: 767.98px) {
  .products-page > .container { width: calc(100% - 16px); }
  .catalog-table-wrap { border-radius: 14px; }
  .catalog-table,
  .catalog-table tbody { display: block; width: 100%; }
  .catalog-table thead { display: none; }
  .catalog-table tbody .product-row {
    position: relative;
    display: grid;
    grid-template-columns: 18% 20% 36% 26%;
    width: 100%;
    padding: 11px 8px 8px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  .catalog-table tbody .product-row:nth-child(even) { background: #fffcf8; }
  .catalog-table tbody .product-row.is-selected {
    background: #fff0c7;
    box-shadow: inset 4px 0 0 var(--wine);
  }
  .catalog-table tbody .product-row.is-selected .col-product::after {
    margin: 5px 0 0;
    width: max-content;
  }
  .catalog-table tbody tr:last-child { border-bottom: 0; }
  .catalog-table td {
    display: block;
    width: auto;
    height: auto;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .catalog-table .col-serial {
    position: absolute;
    left: 9px;
    top: 14px;
    z-index: 1;
    display: block;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    color: var(--wine);
    background: transparent !important;
    border-radius: 0;
    font-size: 8px;
    font-weight: 700;
    text-align: left;
  }
  .catalog-table .col-serial::before { content: "#"; margin-right: 1px; }
  .catalog-table .col-image {
    position: absolute;
    right: 9px;
    top: 9px;
    z-index: 2;
    display: block;
    text-align: left;
  }
  .catalog-table .col-image:empty { display: none; }
  .catalog-table .col-product {
    grid-column: 1 / 5;
    grid-row: 1;
    align-self: center;
    min-height: 47px;
    padding: 0 44px 10px 39px;
  }
  .catalog-table .col-tamil,
  .catalog-table .col-pack { display: none !important; }

  .catalog-table .col-price,
  .catalog-table .col-total,
  .catalog-table .col-qty {
    grid-row: 2;
    display: flex;
    min-height: 53px;
    flex-direction: column;
    justify-content: center;
    padding: 7px 6px !important;
    border-top: 1px solid #f1e7df !important;
    border-right: 1px solid #f1e7df !important;
  }
  .catalog-table .col-price::before,
  .catalog-table .col-total::before,
  .catalog-table .col-qty::before {
    display: block;
    margin-bottom: 3px;
    color: #a09499;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
  }
  .catalog-table .col-price:nth-of-type(6) {
    grid-column: 1;
    display: flex;
    align-items: flex-start;
  }
  .catalog-table .col-price:nth-of-type(6)::before { content: "MRP"; }
  .catalog-table .col-price:nth-of-type(7) {
    grid-column: 2;
    align-items: flex-start;
  }
  .catalog-table .col-price:nth-of-type(7)::before { content: "Offer"; }
  .catalog-table .col-qty {
    grid-column: 3;
    align-items: center;
  }
  .catalog-table .col-qty::before { content: "Quantity"; }
  .catalog-table .col-total {
    grid-column: 4;
    align-items: flex-end;
    border-right: 0 !important;
    text-align: right;
  }
  .catalog-table .col-total::before { content: "Total"; }

  .catalog-table .name-en { font-size: 12px; }
  .mobile-product-detail { max-width: 100%; font-size: 8px; }
  .catalog-table .price-mrp { font-size: 10px; }
  .catalog-table .price-offer,
  .catalog-table .line-total { font-size: 11px; }
  .catalog-table .price-mrp,
  .catalog-table .price-offer,
  .catalog-table .line-total { white-space: nowrap; }
  .catalog-table .qty-control {
    width: min(96px, 100%);
    height: 34px;
    grid-template-columns: 1fr 28px 1fr;
  }
  .catalog-table .qty-control button { width: 100%; height: 34px; font-size: 17px; }
  .image-preview-btn { width: 34px; height: 34px; }
}

.order-summary-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 9px 0 max(9px,env(safe-area-inset-bottom)); color: #fff; background: rgba(16,8,13,.97); border-top: 1px solid rgba(247,190,61,.28); box-shadow: 0 -12px 35px rgba(16,8,13,.24); backdrop-filter: blur(15px); }
.summary-shell { display: grid; grid-template-columns: 1fr auto; gap: 9px; align-items: center; }
.summary-mobile-toggle { min-width: 0; height: 50px; display: flex; align-items: center; gap: 10px; padding: 0; color: #fff; background: transparent; border: 0; text-align: left; }
.summary-mobile-toggle > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; }.summary-mobile-toggle small { color: rgba(255,255,255,.52); font-size: 9px; }.summary-mobile-toggle strong { color: var(--gold); font-size: 17px; }.summary-mobile-toggle > i { margin-left: auto; color: var(--gold); font-style: normal; }
.summary-cart-icon { position: relative; width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; color: var(--gold); background: rgba(247,190,61,.12); border-radius: 12px; }.summary-cart-icon svg { width: 20px; height: 20px; }.summary-cart-icon b { position: absolute; right: -4px; top: -4px; min-width: 18px; height: 18px; display: grid; place-items: center; padding: 0 3px; color: var(--night); background: var(--gold); border-radius: 999px; font-size: 8px; }
.summary-details { position: absolute; left: 0; right: 0; bottom: 100%; display: none; grid-template-columns: repeat(2,1fr); gap: 1px; padding: 12px 16px; background: var(--night); border-bottom: 1px solid rgba(255,255,255,.08); }
.summary-details.is-open { display: grid; }
.summary-stat { padding: 8px; background: rgba(255,255,255,.04); border-radius: 9px; }.summary-stat .label { display: block; color: rgba(255,255,255,.45); font-size: 8px; text-transform: uppercase; }.summary-stat strong { color: #fff; font-size: 13px; }.payable-stat strong { color: var(--gold); }
.minimum-stat strong { color: #ffb3a7; }.minimum-stat strong.is-reached { color: #91e6ae; }
.summary-actions { display: flex; gap: 7px; }
.btn-view-selected { position: relative; width: 50px; min-width: 50px; min-height: 50px; display: inline-flex; padding: 0; color: #fff; border: 1px solid rgba(247,190,61,.42); background: rgba(247,190,61,.1); }
.btn-view-selected:hover,.btn-view-selected.active { color: var(--night); background: var(--gold); border-color: var(--gold); }
.btn-view-selected:disabled { opacity: .4; cursor: not-allowed; }
.btn-view-selected svg { width: 17px; height: 17px; }
.btn-view-selected .selected-toggle-label { display: none; }
.selected-mobile-count { position: absolute; right: 4px; top: 4px; min-width: 16px; height: 16px; display: grid; place-items: center; padding: 0 3px; color: var(--night); background: var(--gold); border-radius: 999px; font-size: 7px; }
.btn-view-selected.active .selected-mobile-count { color: #fff; background: var(--wine); }
.btn-draft { display: none; color: #fff; border: 1px solid rgba(255,255,255,.18); background: transparent; }.btn-draft svg { width: 17px; height: 17px; }
.btn-checkout { min-height: 50px; padding: 0 17px; color: var(--night); background: var(--gold); border: 0; border-radius: 13px; box-shadow: 0 8px 25px rgba(247,190,61,.24); }.btn-checkout svg { width: 18px; height: 18px; }
.btn-checkout:disabled { color: rgba(255,255,255,.72); background: #655b60; box-shadow: none; cursor: not-allowed; }
.catalog-policy { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 5px 20px; }

@media (max-width: 575.98px) {
  .summary-shell { grid-template-columns: minmax(64px,1fr) auto; gap: 6px; }
  .summary-mobile-toggle { min-width: 0; overflow: hidden; gap: 0; }
  .summary-mobile-toggle .summary-cart-icon,
  .summary-mobile-toggle > i { display: none; }
  .summary-mobile-toggle > span:nth-child(2) { overflow: hidden; }
  .summary-mobile-toggle strong { font-size: 15px; white-space: nowrap; }
  .summary-actions { min-width: 0; gap: 5px; }
  .btn-view-selected { width: 44px; min-width: 44px; min-height: 48px; }
  .btn-checkout { min-height: 48px; padding-inline: 12px; font-size: 11px; white-space: nowrap; }
  .btn-checkout svg { width: 15px; height: 15px; }
}

/* Checkout and confirmation */
.checkout-body { background: #f8f3ed; }
.checkout-page { padding: 35px 0 60px; }
.checkout-page > .container > .section-title { font-size: 34px; }
.checkout-heading { display: grid; gap: 22px; margin-bottom: 28px; }
.checkout-progress { display: flex; align-items: center; justify-content: space-between; max-width: 340px; }
.checkout-progress span { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--muted); font-size: 9px; font-weight: 700; }
.checkout-progress span b { width: 28px; height: 28px; display: grid; place-items: center; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 50%; font-size: 10px; }
.checkout-progress span.complete b { color: #fff; background: var(--green); border-color: var(--green); }
.checkout-progress span.active { color: var(--wine); }.checkout-progress span.active b { color: #fff; background: var(--wine); border-color: var(--wine); }
.checkout-progress i { width: 36px; height: 1px; margin-bottom: 18px; background: var(--line); }
.checkout-card { margin-bottom: 14px; padding: 20px 17px; background: #fff; border: 1px solid var(--line); border-radius: 19px; box-shadow: var(--shadow-sm); }
.checkout-card h2 { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--night); font-size: 20px; letter-spacing: -.03em; }
.checkout-card h2::before { content: "✓"; width: 25px; height: 25px; display: grid; place-items: center; color: var(--wine); background: #fff0e1; border-radius: 8px; font-size: 11px; }
.checkout-card .table { font-size: 11px; }
.form-label { margin-bottom: 6px; color: var(--ink); font-size: 12px; font-weight: 700; }
.form-label .req { color: #c33; }.form-label .opt { color: var(--muted); font-size: 9px; font-weight: 400; }
.form-control, .form-select { min-height: 50px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; font-size: 13px; }
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(247,190,61,.18); }
textarea.form-control { min-height: 90px; }
.upi-box { display: grid; gap: 18px; padding: 16px; background: #fff8e8; border: 1px solid #f1dfb5; border-radius: 16px; }
.upi-box > div:first-child { width: min(190px,70%); margin: auto; }.upi-box img { width: 100%; border-radius: 13px; }
.checkout-submit { width: 100%; }
.confirm-hero { padding: 55px 16px 30px; text-align: center; }.confirm-hero h1 { margin: 0; color: var(--wine); font-size: 35px; letter-spacing: -.04em; }.order-code { display: inline-flex; margin-top: 8px; padding: 8px 13px; color: var(--wine); background: #fff0e1; border-radius: 999px; font-weight: 700; }
.alert-soft { border-radius: 13px; }

.site-footer { padding: 48px 0 24px; color: rgba(255,255,255,.76); background: var(--night); }
.footer-brand { display: flex; align-items: flex-start; gap: 12px; }.footer-brand img { border-radius: 10px; }.footer-brand strong { color: #fff; font-size: 18px; }.footer-brand p { margin: 6px 0 0; color: rgba(255,255,255,.48); font-size: 11px; }
.site-footer h3 { margin: 0 0 12px; color: var(--gold); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.62); font-size: 11px; }.footer-links li { margin-bottom: 7px; }.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-direction: column; gap: 5px; margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.4); font-size: 9px; }.footer-bottom p { margin: 0; }

@media (min-width: 576px) {
  .announcement-inner { justify-content: space-between; }.announcement-offer { display: block; }
  .hero-actions { flex-direction: row; align-items: center; }.hero-text-link { align-self: auto; }
  .category-rail { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
  .product-buy-row { flex-direction: row; align-items: center; justify-content: space-between; }.qty-control { width: 120px; }
  .contact-actions { flex-direction: row; align-items: center; }.contact-link { align-self: auto; }
  .selected-filter-mobile { display: none; }
  .btn-view-selected { width: auto; min-width: 0; padding: 0 15px; }
  .btn-view-selected .selected-toggle-label { display: inline; }
  .btn-view-selected .selected-mobile-count { display: none; }
  .btn-draft { display: inline-flex; }
}

@media (min-width: 768px) {
  .container { width: min(100% - 48px,1180px); }
  .section { padding: 82px 0; }
  .section-heading { flex-direction: row; align-items: end; justify-content: space-between; }
  .hero { min-height: 690px; padding: 70px 0; }.hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; }.hero-showpiece { height: 420px; }
  .hero-trust span { font-size: 10px; }.hero-trust strong { font-size: 15px; }
  .trust-ribbon-grid { grid-template-columns: repeat(4,1fr); }.trust-ribbon-grid > div { min-height: 90px; padding: 16px 20px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 0; }.trust-ribbon-grid > div:last-child { border-right: 0; }
  .category-art { height: 160px; }
  .offer-panel { min-height: 420px; align-items: center; padding: 54px; }.offer-copy { width: 62%; }.offer-copy h2 { font-size: 49px; }.offer-disc { right: 9%; top: 50%; width: 190px; height: 190px; transform: translateY(-50%) rotate(6deg); }.offer-disc strong { font-size: 78px; }.ring-a { right: 4%; top: 50%; transform: translateY(-50%); }.ring-b { right: 0; top: 50%; transform: translateY(-50%); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .safety-panel { grid-template-columns: auto 1.5fr 1fr; align-items: center; padding: 38px; }
  .faq-layout { grid-template-columns: .8fr 1.2fr; gap: 70px; }
  .contact-panel { grid-template-columns: 1fr auto; align-items: center; padding: 48px; }
  .catalog-hero { padding: 70px 0; }
  .catalog-tools { top: 68px; margin: 0 -24px 34px; padding-inline: 24px; }
  .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .catalog-table th { height: 50px; padding: 10px; font-size: 9px; }
  .catalog-table td { height: 72px; padding: 10px; font-size: 11px; }
  .catalog-table .col-serial { display: table-cell; width: 54px; }
  .catalog-table .col-image { width: 50px; }
  .catalog-table .col-product { width: 22%; }
  .catalog-table .col-tamil { display: table-cell; width: 20%; }
  .catalog-table .col-pack { display: table-cell; width: 72px; }
  .catalog-table .col-price { width: 78px; }
  .catalog-table .col-price:nth-of-type(6) { display: table-cell; }
  .catalog-table .col-qty { width: 122px; }
  .catalog-table .col-total { display: table-cell; width: 88px; }
  .catalog-table .name-en { font-size: 12px; }
  .catalog-table .name-ta { font-size: 10px; }
  .mobile-product-detail { display: none; }
  .table-discount { display: inline-block; }
  .product-visual { height: 150px; }.product-art::before { font-size: 58px; }.product-content { padding: 16px; }.name-en { font-size: 15px; }.name-ta { font-size: 11px; }.selected-line { margin: 12px -16px -16px; padding: 10px 16px; }
  .checkout-card { padding: 27px; }.upi-box { grid-template-columns: 180px 1fr; align-items: center; }.upi-box > div:first-child { width: 100%; }
  .checkout-heading { grid-template-columns: 1fr auto; align-items: end; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 992px) {
  .navbar { min-height: 74px; }.navbar-collapse { padding: 0; }.nav-link { padding-inline: 13px !important; }.header-cart { border-radius: 999px; }
  .hero-content h1 { font-size: 82px; }
  .category-rail { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }.category-chip { padding: 13px; }
  .steps-grid { grid-template-columns: repeat(4,1fr); }.steps-grid article:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 50%; z-index: 2; width: 24px; height: 24px; display: grid; place-items: center; color: var(--wine); background: var(--paper); border-radius: 50%; font-weight: 700; }
  .catalog-tools { top: 74px; }.category-head > a { display: block; }
  .product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }.product-visual { height: 170px; }
  .catalog-table .col-product { width: 24%; }
  .catalog-table .col-tamil { width: 22%; }
  .catalog-table .name-en { font-size: 13px; }
  .catalog-table .name-ta { font-size: 11px; }
  .order-summary-bar { padding: 12px 0; }.summary-shell { grid-template-columns: 1fr auto; }.summary-mobile-toggle { display: none; }.summary-details { position: static; display: grid; grid-template-columns: repeat(6,auto); gap: 18px; padding: 0; background: transparent; border: 0; }.summary-stat { padding: 0; background: transparent; }.summary-stat .label { font-size: 8px; }.summary-stat strong { font-size: 14px; }.summary-actions { gap: 9px; }.btn-draft,.btn-checkout { min-height: 48px; }
  .products-page { padding-bottom: 110px; }
  .checkout-page { padding: 55px 0 85px; }
  .checkout-summary-card { position: sticky; top: 100px; }
}

@media (min-width: 1200px) {
  .product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .product-visual { height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Search-friendly category, product and information pages */
.category-head h2 a,
.product-name-link { color: inherit; text-decoration: none; }
.category-head h2 a:hover,
.product-name-link:hover { color: var(--wine); text-decoration: underline; text-decoration-color: rgba(139,30,63,.28); text-underline-offset: 3px; }

.seo-page-hero { position: relative; overflow: hidden; padding: 34px 0 48px; color: #fff; background: radial-gradient(circle at 82% 12%,rgba(247,190,61,.22),transparent 30%),linear-gradient(145deg,#1b0c13,#5c1229); }
.seo-page-hero::after { content: ""; position: absolute; right: -90px; bottom: -130px; width: 280px; height: 280px; border: 1px solid rgba(247,190,61,.2); border-radius: 50%; box-shadow: 0 0 0 35px rgba(247,190,61,.04),0 0 0 75px rgba(247,190,61,.025); }
.seo-page-hero .container { position: relative; z-index: 1; }
.seo-page-hero h1 { max-width: 820px; margin: 12px 0 14px; color: #fff; font-family: "Playfair Display",Georgia,serif; font-size: clamp(38px,8vw,68px); line-height: .98; letter-spacing: -.045em; }
.seo-page-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.75; }
.seo-breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-bottom: 22px; color: rgba(255,255,255,.62); font-size: 11px; }
.seo-breadcrumb a { color: inherit; text-decoration: none; }.seo-breadcrumb a:hover { color: var(--gold); }
.seo-hero-grid { display: grid; gap: 20px; align-items: center; }
.seo-hero-grid > .category-art { display: none; width: 190px; height: 190px; justify-self: end; }

.seo-product-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; }
.seo-product-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); transition: transform .2s ease,box-shadow .2s ease; }
.seo-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.seo-product-visual { height: 126px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg,#fff7e8,#f2e0ca); }
.seo-product-visual img { width: 100%; height: 100%; object-fit: cover; }
.seo-product-visual .category-art { width: 92px; height: 92px; transform: scale(.8); }
.seo-product-copy { padding: 13px; }
.seo-product-copy h3 { margin: 8px 0 4px; font-size: 14px; line-height: 1.25; }
.seo-product-copy h3 a { color: var(--night); text-decoration: none; }.seo-product-copy h3 a:hover { color: var(--wine); }
.seo-product-copy p { min-height: 32px; margin: 0 0 4px; color: var(--muted); font-size: 10px; }
.seo-product-copy small { color: var(--muted); font-size: 9px; }
.seo-price-row { display: flex; flex-wrap: wrap; gap: 7px; align-items: baseline; margin-top: 10px; }
.seo-price-row .price-mrp { font-size: 10px; }.seo-price-row .price-offer { font-size: 15px; }

.seo-product-detail { padding: 28px 0 50px; background: linear-gradient(180deg,#fff8ee,#fffdf9); }
.seo-product-detail .seo-breadcrumb { color: var(--muted); }
.seo-detail-grid { display: grid; gap: 25px; }
.seo-detail-media { min-height: 310px; display: grid; place-items: center; align-content: center; gap: 14px; overflow: hidden; background: radial-gradient(circle at 50% 35%,#fff,#f4dfc4); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.seo-detail-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.seo-detail-media .category-art { width: 180px; height: 180px; }
.seo-detail-media small { color: var(--muted); }
.seo-detail-copy h1 { margin: 9px 0 5px; color: var(--night); font-family: "Playfair Display",Georgia,serif; font-size: clamp(36px,9vw,64px); line-height: 1; letter-spacing: -.045em; }
.seo-tamil-name { margin: 0 0 15px; color: var(--muted); font-size: 16px; }
.seo-pack-badge { display: inline-flex; margin-bottom: 18px; padding: 7px 12px; color: var(--wine); background: #fff0e1; border-radius: 999px; font-size: 11px; font-weight: 800; }
.seo-detail-prices { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; padding: 17px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.seo-detail-prices div { display: flex; flex-direction: column; }.seo-detail-prices span { color: var(--muted); font-size: 9px; text-transform: uppercase; }.seo-detail-prices del { color: var(--muted); }.seo-detail-prices strong { color: var(--wine); font-size: 23px; }.seo-detail-prices b { padding: 6px 9px; color: #17683a; background: #dff6e8; border-radius: 999px; font-size: 10px; }
.seo-detail-intro { margin: 19px 0; color: var(--muted); line-height: 1.7; }
.seo-safety-line { margin-top: 22px; padding: 13px 15px; color: #6d5110; background: #fff8dc; border-left: 3px solid var(--gold-deep); border-radius: 10px; font-size: 11px; line-height: 1.6; }
.seo-related-note { padding-top: 0; }

.information-hero { padding-bottom: 58px; }.information-hero .hero-actions { margin-top: 25px; }
.info-callout { display: flex; flex-direction: column; gap: 3px; margin-top: 22px; padding: 16px 18px; color: #fff; background: var(--wine); border-radius: 14px; }.info-callout span { color: rgba(255,255,255,.72); font-size: 11px; }
.detailed-safety { background: #fff9ef; }
.safety-guide-grid { display: grid; gap: 12px; margin-top: 18px; }
.safety-guide-grid article { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-sm); }
.safety-guide-grid article > span { color: var(--wine); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.safety-guide-grid h3 { margin: 5px 0 12px; color: var(--night); font-size: 18px; }
.safety-guide-grid ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 12px; line-height: 1.65; }.safety-guide-grid li + li { margin-top: 7px; }
.home-info-grid { display: grid; gap: 11px; }
.home-info-grid a { display: grid; grid-template-columns: 38px 1fr; gap: 1px 12px; align-items: center; padding: 17px; color: var(--night); background: #fff; border: 1px solid var(--line); border-radius: 15px; text-decoration: none; box-shadow: var(--shadow-sm); }
.home-info-grid a > span { grid-row: span 2; width: 38px; height: 38px; display: grid; place-items: center; color: var(--wine); background: #fff0e1; border-radius: 11px; font-size: 10px; font-weight: 800; }
.home-info-grid strong { font-size: 14px; }.home-info-grid small { color: var(--muted); font-size: 10px; }

@media (min-width: 768px) {
  .catalog-table .product-row.is-selected td:first-child { box-shadow: inset 4px 0 0 var(--wine); }
  .seo-page-hero { padding: 48px 0 68px; }
  .seo-hero-grid { grid-template-columns: 1fr 220px; }
  .seo-hero-grid > .category-art { display: block; }
  .seo-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
  .seo-product-visual { height: 180px; }
  .seo-detail-grid { grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 45px; align-items: center; }
  .seo-product-detail { padding: 42px 0 75px; }
  .safety-guide-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
  .home-info-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (min-width: 1100px) {
  .seo-product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
}
