/*
  Tattvana Website Styles
  -----------------------
  This stylesheet keeps the brand look consistent across every page.
  Edit the CSS variables below to change colors globally.
*/

:root {
  --cream: #fff8ea;
  --cream-2: #f8efdf;
  --paper: #fffdf7;
  --green: #425039;
  --green-dark: #063f31;
  --green-soft: #dcebd8;
  --gold: #d7a66b;
  --red: #b31921;
  --tomato: #c8192b;
  --orange: #d87526;
  --pink: #ee737b;
  --brown: #7c3f22;
  --ink: #25231f;
  --muted: #6e6a60;
  --line: #e6dac5;
  --shadow: 0 18px 45px rgba(36, 30, 20, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  color: var(--ink);
}

h1,
h2,
.logo-word,
.brand-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.announcement {
  background: var(--green-dark);
  color: #fff;
  font-size: 0.92rem;
}

.announcement .container {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.announcement a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.icon-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 234, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(66, 80, 57, 0.1);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: grid;
}

.logo-word {
  font-size: 1.75rem;
  color: var(--green);
  letter-spacing: -0.02em;
}

.logo-tagline {
  color: #8f2026;
  font-size: 0.82rem;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
  color: #514b42;
}

.nav-menu a {
  position: relative;
  padding: 0.4rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(6, 63, 49, 0.2);
}

.btn-primary:hover {
  background: #0b4e3c;
}

.btn-secondary {
  background: var(--tomato);
  color: #fff;
  box-shadow: 0 12px 28px rgba(179, 25, 33, 0.18);
}

.btn-outline {
  border-color: rgba(6, 63, 49, 0.26);
  color: var(--green-dark);
  background: rgba(255, 253, 247, 0.86);
}

.btn-soft {
  background: rgba(215, 166, 107, 0.16);
  color: #6b3f13;
  border-color: rgba(215, 166, 107, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 54px;
}

.hero::before,
.hero::after,
.wave::before,
.wave::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
  z-index: -1;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: var(--green-dark);
  top: -180px;
  left: -110px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: var(--tomato);
  bottom: -160px;
  right: -90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  letter-spacing: -0.05em;
  max-width: 760px;
}

.hero h1 span {
  color: var(--green);
}

.hero-copy {
  max-width: 650px;
  color: #4d473d;
  font-size: 1.14rem;
  margin: 22px 0 28px;
}

.hero-actions,
.section-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-card {
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.1);
  border-radius: 42px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 90px;
  height: 90px;
  background: var(--green-soft);
  border-radius: 50%;
  z-index: 0;
}

.hero-product-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.stack-card {
  border-radius: 28px;
  background: var(--cream-2);
  padding: 18px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-card img {
  max-height: 250px;
  object-fit: contain;
}

.stack-card.big {
  grid-column: span 2;
  min-height: 260px;
  background: linear-gradient(130deg, #fce9dc, #fff8ea);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.trust-item {
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: var(--radius-md);
  padding: 16px;
}

.trust-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.12rem;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: rgba(255, 253, 247, 0.68);
  border-top: 1px solid rgba(66, 80, 57, 0.08);
  border-bottom: 1px solid rgba(66, 80, 57, 0.08);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.section-header.center {
  text-align: center;
  display: block;
  max-width: 760px;
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.045em;
  color: var(--green-dark);
}

.section-intro {
  color: var(--muted);
  max-width: 650px;
  font-size: 1.04rem;
}

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

.category-card {
  min-height: 260px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.1);
  box-shadow: 0 18px 40px rgba(50, 41, 30, 0.08);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  right: -60px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(215, 166, 107, 0.22);
}

.category-card h3 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin: 8px 0 12px;
}

.category-card p {
  color: var(--muted);
  max-width: 290px;
}

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

.product-card {
  background: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(66, 80, 57, 0.1);
  box-shadow: 0 18px 42px rgba(36, 30, 20, 0.08);
}

.product-image-wrap {
  background: var(--cream-2);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-image-wrap img {
  max-height: 310px;
  object-fit: contain;
}

.product-card-body {
  padding: 24px;
}

.product-card h3 {
  font-size: 1.65rem;
  color: var(--green-dark);
  margin: 2px 0 10px;
}

.product-card p {
  color: var(--muted);
}

.product-mint .product-image-wrap {
  background: #e5f0dc;
}

.product-tomato .product-image-wrap,
.product-peri .product-image-wrap {
  background: #fde5da;
}

.product-sendha .product-image-wrap {
  background: #fde7e9;
}

.product-granola .product-image-wrap,
.product-namkeen .product-image-wrap {
  background: #f6ead8;
}

.rating-label {
  color: #bd7b23;
  font-weight: 900;
  margin: 12px 0;
  font-size: 0.92rem;
}

.rating-label span {
  color: var(--muted);
  font-weight: 700;
}

.mini-list {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-list li {
  border: 1px solid rgba(66, 80, 57, 0.12);
  background: #fffaf0;
  color: var(--green-dark);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  min-height: 220px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  color: #fff;
  font-weight: 900;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.panel {
  background: var(--paper);
  border-radius: 36px;
  border: 1px solid rgba(66, 80, 57, 0.11);
  box-shadow: var(--shadow);
  padding: 32px;
}

.panel.green {
  background: var(--green-dark);
  color: #fff;
}

.panel.green h2,
.panel.green h3 {
  color: #fff;
}

.panel.green p,
.panel.green li {
  color: rgba(255, 255, 255, 0.82);
}

.feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(66, 80, 57, 0.1);
}

.feature-list li::before {
  content: "✓";
  color: var(--green-dark);
  font-weight: 900;
}

.panel.green .feature-list li {
  border-color: rgba(255, 255, 255, 0.15);
}

.panel.green .feature-list li::before {
  color: var(--gold);
}

.logo-showcase {
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border-radius: 36px;
  min-height: 430px;
  padding: 40px;
}

.logo-showcase img {
  max-width: 430px;
  mix-blend-mode: multiply;
}

.order-frame {
  width: 100%;
  min-height: 780px;
  border: 0;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(66, 80, 57, 0.12);
  box-shadow: 0 12px 28px rgba(36, 30, 20, 0.06);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

th,
td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid rgba(66, 80, 57, 0.1);
}

th {
  color: var(--green-dark);
  background: #fff8ea;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  color: #4b463d;
}

td a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
}

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

.review-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(66, 80, 57, 0.11);
  padding: 26px;
}

.review-card .stars {
  color: #bd7b23;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.cta-band {
  background: var(--green-dark);
  color: #fff;
  border-radius: 42px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(215, 166, 107, 0.18);
  right: -90px;
  bottom: -130px;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
}

.site-footer {
  background: #17221b;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 24px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 92px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.page-hero {
  padding: 70px 0 44px;
  background: linear-gradient(135deg, #fff8ea 0%, #f7ead4 100%);
  border-bottom: 1px solid rgba(66, 80, 57, 0.1);
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.05em;
  color: var(--green-dark);
  max-width: 920px;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.contact-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(66, 80, 57, 0.1);
  padding: 26px;
}

.contact-card strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.notice {
  background: #fff8e8;
  border: 1px solid #ebd5ad;
  border-radius: 18px;
  padding: 16px;
  color: #6d4a16;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .category-grid,
  .process-grid,
  .review-grid,
  .contact-grid,
  .footer-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions .btn-outline {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .announcement .container,
  .footer-bottom,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-product-stack,
  .product-grid,
  .category-grid,
  .process-grid,
  .review-grid,
  .contact-grid,
  .footer-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .stack-card.big {
    grid-column: auto;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .logo-word {
    font-size: 1.35rem;
  }

  .logo-tagline {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .cta-band,
  .panel {
    padding: 26px;
    border-radius: 28px;
  }

  .order-frame {
    min-height: 940px;
  }
}

/* Launch updates: product pricing, address line and marketplace-style sections */
.product-badge {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(215, 166, 107, 0.16);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 12px 0 4px;
}

.price-row strong {
  color: var(--red);
  font-size: 1.2rem;
}

.price-row span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.promise-grid .review-card h3 {
  color: var(--green-dark);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.footer-address {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}


/* Responsive polish added for launch testing.
   These rules improve phone/tablet use, tap targets, horizontal scrolling, and focus states. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:focus-visible {
  outline: 3px solid rgba(215, 166, 107, 0.95);
  outline-offset: 4px;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: #fff;
  color: var(--green-dark);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
}

.skip-link:focus {
  left: 12px;
}

.nav-menu a,
.btn,
.menu-toggle {
  min-height: 44px;
}

.product-image-wrap img,
.stack-card img,
.logo-showcase img {
  width: 100%;
  height: auto;
}

@media (max-width: 820px) {
  .announcement .container {
    align-items: flex-start;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-card {
    border-radius: 30px;
    padding: 20px;
  }

  .product-image-wrap {
    min-height: 250px;
  }

  .product-image-wrap img {
    max-height: 235px;
  }

  .stack-card {
    min-height: 180px;
  }

  .stack-card.big {
    min-height: 220px;
  }

  .section {
    padding: 52px 0;
  }
}

@media (max-width: 520px) {
  .announcement {
    font-size: 0.82rem;
  }

  .announcement .container {
    gap: 8px;
    padding: 8px 0;
  }

  .nav {
    min-height: 70px;
  }

  .nav-menu {
    top: 70px;
    left: 10px;
    right: 10px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .logo-word {
    font-size: 1.18rem;
  }

  .menu-toggle {
    padding: 9px 11px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
    letter-spacing: -0.04em;
  }

  .hero-copy,
  .page-hero p,
  .section-intro {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions,
  .product-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .product-actions .btn,
  .contact-card .btn,
  .cta-band .btn {
    width: 100%;
  }

  .product-card {
    border-radius: 24px;
  }

  .product-card-body {
    padding: 20px;
  }

  .product-image-wrap {
    min-height: 220px;
    padding: 18px;
  }

  .product-image-wrap img {
    max-height: 210px;
  }

  .trust-item,
  .category-card,
  .step-card,
  .review-card,
  .contact-card {
    padding: 20px;
  }

  .table-wrap {
    border-radius: 18px;
  }

  th,
  td {
    padding: 12px;
    font-size: 0.92rem;
  }

  .footer-grid a {
    padding: 4px 0;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 18px, var(--max));
  }

  .btn {
    padding: 11px 15px;
    font-size: 0.94rem;
  }
}


/* v4 UI additions: product filters, FAQ accordions, and clearer category links. */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link::after {
  content: "→";
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.filter-chip {
  border: 1px solid rgba(6, 63, 49, 0.22);
  background: var(--paper);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  min-height: 44px;
  transition: 0.18s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.faq-section {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(36, 30, 20, 0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  color: var(--green-dark);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(215, 166, 107, 0.2);
  color: var(--green-dark);
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 520px) {
  .category-filter,
  .filter-chip {
    width: 100%;
  }

  .filter-chip {
    justify-content: center;
  }

  .faq-item summary {
    padding: 16px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }
}


/* Marketing video + Instagram QR additions */
.video-section {
  align-items: center;
}

.video-card {
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 36px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  display: block;
  border-radius: 26px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.contact-qr {
  width: min(100%, 240px);
  border-radius: 18px;
  margin: 12px 0 18px;
  border: 1px solid rgba(66, 80, 57, 0.12);
  box-shadow: 0 12px 28px rgba(36, 30, 20, 0.08);
}

/* Clean customer reviews page */
.reviews-hero {
  padding-bottom: 34px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 30px;
  align-items: start;
}

.review-box,
.approved-reviews {
  background: #fffdf7;
  border: 1px solid rgba(31, 93, 59, 0.14);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.review-box-head h2,
.approved-reviews h2 {
  margin: 6px 0 8px;
}

.review-box-head p,
.review-summary p {
  color: var(--muted);
  margin: 0;
}

.review-form-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.review-form-clean label,
.rating-wrap {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--green-dark);
}

.review-form-clean .full {
  grid-column: 1 / -1;
}

.review-form-clean input,
.review-form-clean select,
.review-form-clean textarea {
  width: 100%;
  border: 1px solid rgba(31, 93, 59, 0.18);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.review-form-clean textarea {
  resize: vertical;
  min-height: 130px;
}

.rating-title {
  font-weight: 900;
  color: var(--green-dark);
}

.star-input {
  display: flex;
  gap: 8px;
}

.star-input button {
  border: 0;
  background: transparent;
  color: rgba(196, 122, 34, 0.25);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, color 0.15s ease;
}

.star-input button.active {
  color: #c47a22;
}

.star-input button:hover {
  transform: translateY(-2px);
}

.review-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  display: none;
}

.review-message.success,
.review-message.error,
.review-message.info {
  display: block;
}

.review-message.success {
  color: #0c5132;
  background: #e8f7ee;
}

.review-message.error {
  color: #8a1f1f;
  background: #fdecec;
}

.review-message.info {
  color: #674900;
  background: #fff3cc;
}

.review-summary {
  background: #fff8ea;
  border: 1px solid rgba(196, 122, 34, 0.18);
  border-radius: 20px;
  padding: 18px;
  margin: 18px 0;
}

.review-score,
.stars {
  color: #c47a22;
  letter-spacing: 2px;
  font-weight: 900;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(31, 93, 59, 0.12);
  border-radius: 20px;
  padding: 18px;
  margin-top: 14px;
}

.review-card h3 {
  margin: 8px 0 5px;
  font-size: 1.05rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 850px) {
  .reviews-layout,
  .review-form-clean {
    grid-template-columns: 1fr;
  }

  .review-box,
  .approved-reviews {
    padding: 22px;
  }
}
.review-meta {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}
/* Storefront-style reviews page */
.review-storefront-hero {
  padding: 72px 0 28px;
  background: #fbf6e8;
}

.review-storefront-hero h1 {
  max-width: 860px;
  margin: 8px 0 12px;
}

.review-storefront-hero p {
  max-width: 720px;
  color: var(--muted);
}

.review-storefront {
  background: #fbf6e8;
  padding-top: 24px;
}

.review-storefront-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.review-summary-panel,
.review-main-panel,
.review-box-wide {
  background: #fffdf7;
  border: 1px solid rgba(31, 93, 59, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.review-summary-panel {
  padding: 28px;
  position: sticky;
  top: 96px;
}

.review-average {
  color: #c47a22;
  font-size: 2rem;
  letter-spacing: 4px;
  font-weight: 900;
}

.review-summary-panel h2 {
  margin: 10px 0 6px;
}

.review-summary-panel p {
  margin: 0 0 20px;
  color: var(--muted);
}

.rating-bars {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 54px 1fr 24px;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green-dark);
}

.rating-bar-row div {
  height: 9px;
  border-radius: 999px;
  background: rgba(196, 122, 34, 0.14);
  overflow: hidden;
}

.rating-bar-row b {
  display: block;
  height: 100%;
  background: #c47a22;
  border-radius: 999px;
}

.rating-bar-row em {
  font-style: normal;
  color: var(--muted);
  text-align: right;
}

.review-jump-btn {
  width: 100%;
  justify-content: center;
}

.review-main-panel {
  padding: 28px;
}

.review-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.review-toolbar h2 {
  margin: 6px 0 0;
}

.review-filter {
  display: grid;
  gap: 7px;
  min-width: 240px;
  font-weight: 800;
  color: var(--green-dark);
}

.review-filter select {
  border: 1px solid rgba(31, 93, 59, 0.16);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.review-list {
  display: grid;
  gap: 14px;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(31, 93, 59, 0.12);
  border-radius: 20px;
  padding: 18px;
}

.review-card .stars,
.stars {
  color: #c47a22;
  letter-spacing: 2px;
  font-weight: 900;
}

.review-card h3 {
  margin: 8px 0 6px;
  font-size: 1.05rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.review-meta {
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.review-write-section {
  background: #fbf6e8;
  padding-top: 10px;
}

.review-box-wide {
  padding: 30px;
}

.review-form-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.review-form-clean label,
.rating-wrap {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--green-dark);
}

.review-form-clean .full {
  grid-column: 1 / -1;
}

.review-form-clean input,
.review-form-clean select,
.review-form-clean textarea {
  width: 100%;
  border: 1px solid rgba(31, 93, 59, 0.18);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.review-form-clean textarea {
  resize: vertical;
  min-height: 130px;
}

.star-input {
  display: flex;
  gap: 10px;
}

.star-input button {
  border: 0;
  background: transparent;
  color: rgba(196, 122, 34, 0.25);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.star-input button.active {
  color: #c47a22;
}

.review-message {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.review-message.success,
.review-message.error,
.review-message.info {
  display: block;
}

.review-message.success {
  color: #0c5132;
  background: #e8f7ee;
}

.review-message.error {
  color: #8a1f1f;
  background: #fdecec;
}

.review-message.info {
  color: #674900;
  background: #fff3cc;
}

@media (max-width: 900px) {
  .review-storefront-grid,
  .review-form-clean {
    grid-template-columns: 1fr;
  }

  .review-summary-panel {
    position: static;
  }

  .review-toolbar {
    display: grid;
  }

  .review-filter {
    min-width: 0;
  }
}
/* Fix review summary panel */
.review-summary-panel {
  background: #fffdf7;
  border: 1px solid rgba(31, 93, 59, 0.12);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.review-summary-top {
  margin-bottom: 22px;
}

.review-average {
  color: #c47a22;
  font-size: 1.7rem;
  letter-spacing: 4px;
  font-weight: 900;
  line-height: 1;
}

.review-summary-panel h2 {
  margin: 12px 0 8px;
  font-size: 1.8rem;
  line-height: 1.05;
}

.review-summary-panel p {
  color: var(--muted);
  margin: 0;
}

.rating-bars {
  display: grid;
  gap: 11px;
  margin: 22px 0 24px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 58px minmax(120px, 1fr) 28px;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--green-dark);
}

.rating-bar-row span {
  white-space: nowrap;
}

.rating-bar-row .rating-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(196, 122, 34, 0.15);
  overflow: hidden;
}

.rating-bar-row .rating-track b {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #c47a22;
}

.rating-bar-row em {
  font-style: normal;
  color: var(--muted);
  text-align: right;
}

.review-jump-btn {
  width: 100%;
  justify-content: center;
}

/* FINAL Tattvana reviews widget compact layout */
.gf-reviews-page {
  background: #fff8ea;
  padding: 42px 0 70px;
}

.gf-reviews-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.gf-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 32px;
}

.gf-reviews-head h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--green-dark);
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  line-height: 0.95;
  margin: 0;
}

.gf-reviews-head p {
  max-width: 680px;
  color: var(--muted);
  margin: 10px 0 0;
}

.gf-summary-box {
  background: #fffdf7;
  border: 1px solid rgba(6, 63, 49, 0.12);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  gap: 22px;
  align-items: center;
  box-shadow: 0 6px 18px rgba(36, 30, 20, 0.05);
}

.gf-score {
  display: grid;
  gap: 4px;
}

.gf-stars,
.gf-review-stars {
  color: #f5a623;
  letter-spacing: 1.5px;
  font-weight: 900;
  font-size: 1.15rem;
}

.gf-score h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1;
  color: #8b1a1a;
  font-family: Inter, sans-serif;
}

.gf-score p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.gf-bars {
  display: grid;
  gap: 7px;
}

.gf-rating-row {
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  align-items: center;
  gap: 9px;
  color: #555;
  font-size: 0.85rem;
}

.gf-rating-row span {
  white-space: nowrap;
}

.gf-rating-track {
  height: 8px;
  background: #e5e5e5;
  border-radius: 999px;
  overflow: hidden;
}

.gf-rating-track b {
  display: block;
  height: 100%;
  background: #f5a623;
  border-radius: 999px;
}

.gf-rating-row em {
  font-style: normal;
  text-align: right;
  color: #666;
}

.gf-summary-action {
  display: flex;
  justify-content: flex-end;
}

.gf-summary-action .btn {
  border-radius: 4px;
  min-height: 38px;
  padding: 9px 16px;
}

.gf-review-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.gf-review-toolbar h2 {
  margin: 0;
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.gf-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.88rem;
  font-weight: 700;
}

.gf-filter select {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  padding: 7px 9px;
  font: inherit;
  min-width: 180px;
}

.gf-review-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 42px;
}

.gf-review-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  min-height: 156px;
  padding: 14px;
  box-shadow: 0 6px 14px rgba(36, 30, 20, 0.06);
}

.gf-review-card h3 {
  font-family: Inter, sans-serif;
  font-size: 0.92rem;
  margin: 8px 0 6px;
  color: #222;
  font-weight: 900;
}

.gf-review-card p {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}

.gf-review-meta {
  margin-top: 12px;
  color: #777;
  font-size: 0.78rem;
  font-weight: 800;
}

.gf-write-box {
  background: #fffdf7;
  border: 1px solid rgba(6, 63, 49, 0.12);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(36, 30, 20, 0.05);
}

.gf-write-box h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 6px;
}

.gf-write-box p {
  color: var(--muted);
  margin: 0;
}

.gf-review-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.gf-review-form label,
.gf-rating-wrap {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 900;
}

.gf-review-form .full {
  grid-column: 1 / -1;
}

.gf-review-form input,
.gf-review-form select,
.gf-review-form textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fff;
  padding: 12px 13px;
  font: inherit;
}

.gf-review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.gf-star-input {
  display: flex;
  gap: 8px;
}

.gf-star-input button {
  border: 0;
  background: transparent;
  color: rgba(245, 166, 35, 0.3);
  font-size: 34px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.gf-star-input button.active {
  color: #f5a623;
}

.gf-review-message {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.gf-review-message.success,
.gf-review-message.error,
.gf-review-message.info {
  display: block;
}

.gf-review-message.success {
  color: #0c5132;
  background: #e8f7ee;
}

.gf-review-message.error {
  color: #8a1f1f;
  background: #fdecec;
}

.gf-review-message.info {
  color: #674900;
  background: #fff3cc;
}

@media (max-width: 980px) {
  .gf-summary-box {
    grid-template-columns: 1fr;
  }

  .gf-summary-action {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .gf-reviews-head,
  .gf-review-toolbar {
    display: grid;
  }

  .gf-review-list,
  .gf-review-form {
    grid-template-columns: 1fr;
  }

  .gf-filter {
    display: grid;
    align-items: start;
  }
}

/* Tattvana product reviews + return policy update */
.rating-label.rating-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #bd7b23;
  text-decoration: none;
  line-height: 1.35;
}

.rating-label.rating-link span {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rating-label.rating-link:hover span {
  color: var(--green-dark);
}

.policy-callout {
  display: grid;
  gap: 6px;
  margin: -2px 0 18px;
  padding: 12px;
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 18px;
  background: #fffaf0;
}

.policy-chip {
  width: fit-content;
  border: 0;
  background: var(--green-dark);
  color: #fff;
  padding: 7px 11px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.policy-chip:hover {
  transform: translateY(-1px);
}

.policy-callout span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.policy-modal[hidden] {
  display: none;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 17, 0.62);
  backdrop-filter: blur(3px);
}

.policy-modal-card {
  position: relative;
  width: min(940px, 100%);
  max-height: min(86vh, 780px);
  overflow: auto;
  background: #fffdf7;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(66, 80, 57, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.policy-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(66, 80, 57, 0.14);
  background: #fff;
  color: var(--green-dark);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.policy-modal-icon,
.policy-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f3ead6;
  color: var(--green-dark);
  font-size: 2rem;
  font-weight: 900;
}

.policy-modal-card h2,
.return-policy-section h2 {
  color: var(--green-dark);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
  margin: 8px 0 12px;
}

.policy-modal-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
}

.policy-modal-grid,
.policy-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.policy-modal-grid article,
.policy-info-card {
  background: #fff;
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 20px;
  padding: 18px;
}

.policy-modal-grid strong,
.policy-info-card h3 {
  display: block;
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 8px;
}

.policy-modal-grid p,
.policy-info-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  font-size: 0.93rem;
}

.policy-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.return-policy-section {
  background: #fff8ea;
}

.policy-hero-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 32px;
  padding: 26px;
  box-shadow: 0 14px 32px rgba(36, 30, 20, 0.06);
  margin-bottom: 20px;
}

.policy-hero-card p {
  color: var(--muted);
  max-width: 860px;
  margin: 0;
}

.policy-info-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #f3ead6;
  color: #bd7b23;
  font-weight: 900;
  margin-bottom: 16px;
}

.policy-support-band {
  margin-top: 18px;
  border-radius: 28px;
  padding: 24px;
  background: var(--green-dark);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.policy-support-band h3 {
  color: #fff;
  margin: 0 0 6px;
}

.policy-support-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.policy-support-band .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .policy-modal-grid,
  .policy-info-grid {
    grid-template-columns: 1fr;
  }

  .policy-hero-card,
  .policy-support-band {
    display: grid;
  }

  .policy-modal-card {
    padding: 22px;
  }
}

/* Final compact non-returnable product button */
.policy-callout {
  display: none !important;
}

.return-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 112px;
  margin: 12px 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f5d92;
  font: inherit;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  text-align: center;
}

.return-badge:hover .return-badge-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.return-badge-icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid rgba(31, 93, 146, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.return-badge-icon::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 24px;
  height: 20px;
  border: 3px solid #d88318;
  border-top-width: 4px;
  border-radius: 2px;
  box-sizing: border-box;
}

.return-badge-icon::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 11px;
  width: 24px;
  height: 3px;
  background: #d88318;
  border-radius: 999px;
}

.return-badge-text {
  color: #1f5d92;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .return-badge {
    width: auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }

  .return-badge-icon {
    width: 42px;
    height: 42px;
  }

  .return-badge-icon::before {
    left: 11px;
    top: 12px;
    width: 20px;
    height: 16px;
  }

  .return-badge-icon::after {
    left: 11px;
    top: 9px;
    width: 20px;
  }
}


/* Product gallery thumbnails */
.product-thumb-row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px 0;
  flex-wrap: wrap;
}

.product-thumb {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(6, 63, 49, 0.14);
  background: #fffaf0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb:hover,
.product-thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(6, 63, 49, 0.42);
  box-shadow: 0 5px 12px rgba(6, 63, 49, 0.12);
}


/* Final product card alignment + image zoom update */
.product-grid {
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image-wrap {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  padding: 22px;
}

.product-main-image-button {
  width: 100%;
  min-height: 250px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 10px;
  cursor: zoom-in;
}

.product-main-image-button:focus-visible {
  outline: 3px solid rgba(6, 63, 49, 0.35);
  outline-offset: 3px;
}

.product-main-image,
.product-image-wrap > .product-main-image-button > img {
  width: 100%;
  height: 240px;
  max-height: 240px;
  object-fit: contain;
  display: block;
}

.product-zoom-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(6, 63, 49, 0.88);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.product-main-image-button:hover .product-zoom-hint,
.product-main-image-button:focus-visible .product-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body > p {
  min-height: 44px;
}

.product-actions {
  margin-top: auto;
}

.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(38px, 1fr));
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  gap: 8px;
  padding: 0;
}

.product-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.image-zoom-modal[hidden] {
  display: none !important;
}

.image-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 12, 0.76);
}

.image-zoom-card {
  position: relative;
  z-index: 1;
  width: min(960px, 94vw);
  max-height: 92vh;
  background: #fffaf0;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: 12px;
}

.image-zoom-card h2 {
  color: var(--green-dark);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
  padding-right: 44px;
}

.image-zoom-card img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.image-zoom-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.image-zoom-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--green-dark);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.footer-grid .footer-socials a,
.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: transform 0.16s ease, background 0.16s ease;
}

.footer-social-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 740px) {
  .product-image-wrap {
    min-height: 300px;
    padding: 18px;
  }

  .product-main-image,
  .product-image-wrap > .product-main-image-button > img {
    height: 210px;
    max-height: 210px;
  }

  .product-main-image-button {
    min-height: 220px;
  }

  .product-thumb-row {
    grid-template-columns: repeat(auto-fit, minmax(34px, 1fr));
  }
}

/* 2026-06-04: Why Choose section + tighter product cards + showcase video */
.why-choose-section {
  background: linear-gradient(180deg, #fffaf0 0%, #fbf5e9 100%);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.why-card {
  background: rgba(255, 253, 247, 0.92);
  border: 1.5px solid rgba(32, 30, 24, 0.62);
  border-radius: 24px;
  min-height: 230px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(36, 30, 20, 0.06);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-size: 2.3rem;
  line-height: 1;
}

.why-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.55rem;
}

.why-card p {
  margin: 0 auto;
  max-width: 230px;
  color: var(--muted);
  line-height: 1.55;
}

.product-grid {
  gap: 18px;
}

.product-card {
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(36, 30, 20, 0.07);
}

.product-image-wrap {
  min-height: 0 !important;
  padding: 16px !important;
  gap: 10px !important;
}

.product-main-image-button {
  min-height: 190px !important;
  height: 210px;
  border-radius: 18px;
  padding: 8px !important;
}

.product-main-image,
.product-image-wrap > .product-main-image-button > img {
  height: 188px !important;
  max-height: 188px !important;
}

.product-thumb-row {
  max-width: 100% !important;
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr)) !important;
  gap: 6px !important;
}

.product-thumb {
  min-width: 0;
  border-radius: 9px !important;
}

.product-card-body {
  padding: 18px !important;
}

.product-card h3 {
  font-size: 1.42rem !important;
  line-height: 1.15;
  margin-bottom: 8px !important;
}

.product-card-body > p {
  min-height: 36px !important;
  margin-bottom: 12px;
}

.price-row {
  margin: 10px 0 8px;
}

.rating-label {
  margin: 8px 0 !important;
}

.mini-list {
  gap: 7px;
  margin: 10px 0 14px;
}

.return-badge {
  margin: 2px auto 14px;
}

.product-actions {
  gap: 10px;
}

.video-section .section-actions {
  flex-wrap: wrap;
}

.video-card video {
  background: #0c0b08;
}

@media (max-width: 1000px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .product-main-image-button {
    height: 220px;
  }

  .product-main-image,
  .product-image-wrap > .product-main-image-button > img {
    height: 198px !important;
    max-height: 198px !important;
  }
}

/* 2026-06-04b: partners, homepage review slider and tighter product cards */
.partners-section {
  position: relative;
  overflow: hidden;
  background: #0d2b1a;
  color: #fffaf0;
  padding: 86px 0 96px;
}

.partners-section::before,
.partners-section::after {
  content: "";
  position: absolute;
  left: -4%;
  width: 108%;
  height: 34px;
  background: radial-gradient(48px 18px at 50% 100%, transparent 98%, #fffaf0 100%) 0 0 / 140px 34px repeat-x;
  pointer-events: none;
}

.partners-section::before {
  top: -1px;
  transform: rotate(180deg);
}

.partners-section::after {
  bottom: -1px;
}

.partners-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.partners-section .eyebrow {
  color: #d99536;
}

.partners-section h2 {
  color: #ffcf6c;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  letter-spacing: 0.03em;
  margin: 6px 0 8px;
  text-transform: uppercase;
}

.partners-section .section-intro,
.partner-note {
  color: rgba(255, 250, 240, 0.78);
}

.partner-logo-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.partner-logo-card {
  min-height: 104px;
  padding: 24px 18px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #1d1d1d;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.partner-logo-text {
  font-family: Arial, sans-serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.partner-logo-text.amazon {
  color: #111;
  letter-spacing: -0.05em;
}

.partner-logo-text.jiomart {
  color: #1d63d8;
}

.partner-logo-text.dmart {
  color: #198a45;
}

.partner-logo-text.flipkart {
  color: #2874f0;
}

.partner-note {
  margin: 22px 0 0;
  font-size: 0.92rem;
}

.home-reviews-section {
  background: linear-gradient(180deg, #fffaf0 0%, #f8efdf 100%);
}

.review-slider-controls {
  display: flex;
  gap: 10px;
}

.review-slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(6, 63, 49, 0.18);
  background: #fffaf0;
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(36, 30, 20, 0.06);
}

.review-slider-controls button:hover,
.review-slider-controls button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(6, 63, 49, 0.36);
}

.home-review-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 420px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 8px 2px 18px;
  scrollbar-width: thin;
}

.home-review-card {
  scroll-snap-align: start;
  min-height: 245px;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(66, 80, 57, 0.1);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 42px rgba(36, 30, 20, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-review-stars {
  color: #bd7b23;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-review-card h3 {
  margin: 12px 0 8px;
  color: var(--green-dark);
  font-size: 1.35rem;
}

.home-review-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.home-review-card span {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

.review-slider-actions {
  margin-top: 18px;
}

.product-grid {
  align-items: stretch;
}

.product-card {
  border-radius: 22px !important;
}

.product-image-wrap {
  padding: 14px !important;
  gap: 8px !important;
}

.product-main-image-button {
  height: 168px !important;
  min-height: 168px !important;
}

.product-main-image,
.product-image-wrap > .product-main-image-button > img {
  height: 150px !important;
  max-height: 150px !important;
}

.product-thumb-row {
  display: flex !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 6px !important;
  padding: 1px 0 4px !important;
  scrollbar-width: thin;
}

.product-thumb {
  flex: 0 0 34px;
  width: 34px !important;
  height: 34px !important;
}

.product-card-body {
  padding: 15px !important;
}

.product-card h3 {
  font-size: 1.28rem !important;
}

.product-card-body > p {
  min-height: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.45;
}

.price-row {
  gap: 8px;
  flex-wrap: wrap;
}

.price-row strong {
  white-space: nowrap;
}

.rating-label {
  font-size: 0.78rem !important;
}

.mini-list {
  gap: 6px !important;
}

.mini-list li {
  padding: 6px 9px !important;
  font-size: 0.72rem !important;
}

.return-badge {
  transform: scale(0.9);
  margin: 0 auto 8px !important;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px !important;
}

.product-actions .btn {
  padding: 10px 10px;
  min-height: 40px;
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 980px) {
  .partners-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-logo-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .partners-section {
    padding: 72px 0 80px;
  }

  .partner-logo-track {
    grid-template-columns: 1fr;
  }

  .home-review-slider {
    grid-auto-columns: 88%;
  }

  .review-slider-controls {
    display: none;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }
}

/* Dual video showcase */
.video-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.video-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card-featured {
  padding: 16px;
}

.video-card-featured video {
  aspect-ratio: 16 / 9;
}

@media (min-width: 980px) {
  .video-gallery {
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    align-items: stretch;
  }

  .video-gallery .video-card {
    display: flex;
    flex-direction: column;
  }

  .video-gallery .video-card video {
    flex: 1;
    min-height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 700px) {
  .video-gallery {
    gap: 14px;
  }

  .video-card-label {
    font-size: 0.72rem;
  }
}


/* 2026-06-04d: redesigned homepage story section */
.why-choose-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 18%, rgba(215, 166, 107, 0.16), transparent 18%),
    radial-gradient(circle at 95% 10%, rgba(6, 63, 49, 0.08), transparent 18%),
    linear-gradient(180deg, #fffaf0 0%, #fbf5e9 100%);
}

.why-choose-section .section-header.center h2 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  margin-bottom: 10px;
}

.why-choose-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  min-height: 190px !important;
  padding: 26px 22px !important;
  border: 1px solid rgba(66, 80, 57, 0.10) !important;
  box-shadow: 0 16px 38px rgba(36, 30, 20, 0.07) !important;
}

.why-icon {
  width: 54px !important;
  height: 54px !important;
  margin-bottom: 14px !important;
  border-radius: 50%;
  background: rgba(215, 166, 107, 0.15);
  color: #cf7f2d !important;
  font-size: 1.7rem !important;
}

.why-card h3 {
  color: var(--green-dark) !important;
  font-family: var(--font-heading);
  font-size: 1.55rem !important;
}

.tattvana-storyboard {
  background: linear-gradient(180deg, #fbf5e9 0%, #fffaf0 100%);
  padding-top: 56px;
}

.storyboard-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(66, 80, 57, 0.08);
  border-radius: 42px;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(234, 241, 225, 0.78), rgba(255, 253, 247, 0.88)),
    #fffaf0;
  box-shadow: 0 28px 70px rgba(36, 30, 20, 0.10);
}

.storyboard-panel::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 10px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 63, 49, 0.09), transparent 70%);
  pointer-events: none;
}

.storyboard-intro {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
}

.storyboard-intro h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
  color: var(--green-dark);
  margin: 8px 0 18px;
}

.storyboard-intro p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.storyboard-videos {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.storyboard-videos .video-card {
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(66, 80, 57, 0.1);
  box-shadow: 0 18px 42px rgba(36, 30, 20, 0.10);
}

.storyboard-videos .video-card-label {
  background: var(--green-dark);
  color: #fffaf0;
  margin-left: 4px;
}

.storyboard-videos video {
  width: 100%;
  display: block;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0c0b08;
}

.storyboard-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(24px, 4vw, 44px);
  margin-top: 42px;
  align-items: stretch;
}

.storyboard-partners,
.storyboard-reviews {
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(66, 80, 57, 0.08);
  border-radius: 30px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 18px 42px rgba(36, 30, 20, 0.06);
}

.storyboard-partners .eyebrow,
.storyboard-reviews .eyebrow {
  color: #cf7f2d;
}

.storyboard-partners p,
.review-strip-header p {
  color: var(--muted);
  margin: 6px 0 20px;
}

.compact-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compact-partner-card {
  min-height: 82px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(66, 80, 57, 0.08);
  box-shadow: 0 12px 28px rgba(36, 30, 20, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.compact-partner-card:hover,
.compact-partner-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(36, 30, 20, 0.11);
}

.compact-partner-card .partner-logo-text {
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
}

.review-strip-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.storyboard-reviews .home-review-slider {
  grid-auto-columns: minmax(240px, 310px);
  padding-bottom: 10px;
}

.storyboard-reviews .home-review-card {
  min-height: 210px;
  padding: 22px;
  border-radius: 22px;
}

.storyboard-reviews .review-slider-actions {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .storyboard-intro,
  .storyboard-bottom {
    grid-template-columns: 1fr;
  }

  .storyboard-videos {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .storyboard-panel {
    border-radius: 28px;
  }

  .storyboard-videos,
  .compact-partner-grid {
    grid-template-columns: 1fr;
  }

  .review-strip-header {
    flex-direction: column;
  }

  .storyboard-reviews .home-review-slider {
    grid-auto-columns: 88%;
  }
}

/* 2026-06-04e: clean homepage partners + customer review sections */
.partners-clean-section {
  background: linear-gradient(180deg, #fffaf0 0%, #f7efdf 100%);
}

.partner-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.partner-clean-card {
  min-height: 105px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(66, 80, 57, 0.10);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(36, 30, 20, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.partner-clean-card:hover,
.partner-clean-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(36, 30, 20, 0.12);
}

.home-reviews-section {
  background: linear-gradient(180deg, #f7efdf 0%, #fffaf0 100%);
}

.review-section-header {
  align-items: flex-end;
}

.home-review-slider {
  grid-auto-columns: minmax(310px, 390px) !important;
  gap: 22px !important;
  padding: 10px 2px 18px !important;
}

.home-review-card {
  min-height: 260px !important;
  padding: 28px !important;
  border-radius: 26px !important;
  background: rgba(255, 253, 247, 0.98) !important;
  border: 1px solid rgba(66, 80, 57, 0.10) !important;
}

.home-review-card p {
  font-size: 1rem;
  line-height: 1.68;
}

.home-review-card span {
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .partner-clean-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .partner-clean-grid {
    grid-template-columns: 1fr;
  }

  .review-section-header {
    align-items: flex-start;
  }

  .home-review-slider {
    grid-auto-columns: 88% !important;
  }
}

/* 2026-06-05: exact premium hero image + compact home product rail */
.premium-hero-image {
  background: #fff7e8;
  overflow: hidden;
  border-bottom: 1px solid rgba(66, 80, 57, 0.08);
}

.premium-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.home-product-showcase {
  padding: 48px 0 58px;
  background: linear-gradient(180deg, #fff7e8 0%, #fbf2e3 100%);
}

.home-product-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.home-product-header h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.035em;
}

.home-product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
}

.home-product-mini-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 116px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 150px;
  border: 1px solid rgba(66, 80, 57, 0.12);
  background: rgba(255, 253, 247, 0.92);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 18px 45px rgba(36, 30, 20, 0.07);
}

.home-product-mini-card img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 16px;
  background: #f4ecdf;
}

.home-product-mini-card h3 {
  margin: 0 0 3px;
  color: var(--green-dark);
  font-size: 1.15rem;
  line-height: 1.15;
}

.home-product-mini-card p {
  margin: 0 0 8px;
  color: #363229;
  font-weight: 700;
}

.home-product-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 10px;
}

.home-product-mini-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eee7db;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 5px 9px;
}

.home-product-mini-stars {
  color: #bd7b23;
  font-weight: 900;
  font-size: 0.92rem;
}

.home-product-mini-arrow {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(215, 166, 107, 0.35);
  color: var(--green-dark);
  background: #fff8ec;
  text-decoration: none;
  font-size: 1.35rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.home-product-mini-card:hover .home-product-mini-arrow,
.home-product-mini-arrow:focus-visible {
  transform: translateX(2px);
  background: #f6e5c9;
}

@media (max-width: 900px) {
  .premium-hero-image img {
    min-height: 360px;
    width: 140%;
    max-width: none;
    transform: translateX(-20%);
  }

  .home-product-header {
    align-items: start;
    flex-direction: column;
  }

  .home-product-rail {
    grid-auto-columns: minmax(270px, 88vw);
  }
}

@media (max-width: 560px) {
  .premium-hero-image img {
    min-height: 330px;
    width: 185%;
    transform: translateX(-33%);
  }

  .home-product-mini-card {
    grid-template-columns: 92px 1fr auto;
    gap: 12px;
  }

  .home-product-mini-card img {
    width: 92px;
    height: 92px;
  }
}

/* 2026-06-05e: final fixes for clickable banner, product rail, detail pages */
.brand-logo {
  width: 58px;
  height: 58px;
}

.logo-word {
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
}

.premium-hero-image {
  position: relative;
}

.hero-hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 999px;
  outline-offset: 4px;
}

.hero-hotspot-shop {
  left: 4.5%;
  top: 68.5%;
  width: 11.8%;
  height: 6.3%;
}

.hero-hotspot-occasions {
  left: 17.1%;
  top: 68.5%;
  width: 16.2%;
  height: 6.3%;
}

.home-product-mini-card {
  color: inherit;
  text-decoration: none;
}

.home-product-mini-card:focus-visible {
  outline: 3px solid rgba(194, 105, 35, 0.45);
  outline-offset: 4px;
}

.product-card {
  cursor: pointer;
}

.product-card .product-main-image-button,
.product-card .product-thumb,
.product-card .return-badge,
.product-card .btn,
.product-card .rating-link {
  cursor: pointer;
}

.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover,
.product-title-link:focus-visible {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-details {
  background: rgba(255, 255, 255, 0.72);
}

.product-page-hero {
  padding: 64px 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(6, 63, 49, 0.12), transparent 30%),
    linear-gradient(135deg, #fff7e8 0%, #f7ead5 100%);
  border-bottom: 1px solid rgba(66, 80, 57, 0.08);
}

.product-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 44px;
  align-items: center;
}

.product-page-hero-copy h1 {
  margin: 0 0 18px;
  max-width: 720px;
  font-family: var(--display-font);
  color: var(--green-dark);
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.product-page-hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.product-page-hero-media {
  border-radius: 34px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 28px 80px rgba(42, 32, 17, 0.14);
  border: 1px solid rgba(215, 166, 107, 0.28);
}

.product-page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}

.back-to-products {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.product-detail-section {
  background: linear-gradient(180deg, #fff7e8 0%, #fbf2e3 100%);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: start;
  padding: 32px;
  border-radius: 34px;
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(66, 80, 57, 0.12);
  box-shadow: 0 28px 80px rgba(36, 30, 20, 0.08);
}

.product-detail-main-image {
  width: 100%;
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 26px;
  background: #f6eddf;
  padding: 24px;
}

.product-detail-main-image img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
}

.product-detail-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.product-detail-copy h1 {
  margin: 14px 0 14px;
  color: var(--green-dark);
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.product-detail-short {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.product-detail-price {
  margin: 22px 0 14px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.product-detail-note {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: #fff8ec;
  border: 1px solid rgba(215, 166, 107, 0.22);
}

.product-detail-note h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.product-detail-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  margin-top: 34px;
}

.detail-review-panel,
.related-products-section {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(66, 80, 57, 0.11);
}

.section-header.compact {
  align-items: center;
  margin-bottom: 18px;
}

.detail-review-list,
.related-product-grid {
  display: grid;
  gap: 14px;
}

.detail-review-card {
  padding: 18px;
  border-radius: 22px;
  background: #fffaf1;
  border: 1px solid rgba(66, 80, 57, 0.08);
}

.detail-review-card h3 {
  margin: 8px 0;
  color: var(--green-dark);
}

.detail-review-card p {
  color: var(--muted);
  line-height: 1.55;
}

.detail-review-card span {
  display: block;
  margin-top: 12px;
  color: #1e1a15;
  font-weight: 900;
}

.related-product-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  color: inherit;
  text-decoration: none;
  background: #fffaf1;
  border: 1px solid rgba(215, 166, 107, 0.22);
}

.related-product-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 16px;
  background: #f4ecdf;
}

.related-product-card span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.related-product-card h3 {
  margin: 5px 0;
  color: var(--green-dark);
  font-size: 1rem;
}

@media (max-width: 980px) {
  .product-page-hero-grid,
  .product-detail-layout,
  .product-detail-lower {
    grid-template-columns: 1fr;
  }

  .hero-hotspot-shop,
  .hero-hotspot-occasions {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .product-page-hero {
    padding: 42px 0;
  }

  .product-detail-layout {
    padding: 18px;
    border-radius: 24px;
  }

  .product-detail-main-image {
    min-height: 310px;
  }
}


/* 2026-06-05f: requested header ticker, social icons, compact home products and reviews */
.announcement {
  overflow: hidden;
  background: var(--green-dark);
  color: #fff;
  white-space: nowrap;
}

.announcement-track {
  display: flex;
  width: max-content;
  gap: 54px;
  align-items: center;
  padding: 10px 0;
  animation: tattvanaTicker 28s linear infinite;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.announcement-track span {
  padding-left: 18px;
}

@keyframes tattvanaTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nav-social-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-social-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(6, 63, 49, 0.22);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 253, 247, 0.82);
  color: var(--green-dark);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.nav-social-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.nav-social-icon:hover,
.nav-social-icon:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(6, 63, 49, 0.45);
}

.home-product-showcase {
  padding: 50px 0 58px;
}

.home-product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 270px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
}

.home-product-shop-card {
  position: relative;
  scroll-snap-align: start;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  min-height: 338px;
  padding: 18px 16px 20px;
  border-radius: 26px;
  border: 1px solid rgba(66, 80, 57, 0.13);
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 16px 38px rgba(36, 30, 20, 0.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-product-shop-card:hover,
.home-product-shop-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(36, 30, 20, 0.12);
  border-color: rgba(6, 63, 49, 0.25);
}

.home-product-shop-image {
  width: 100%;
  height: 162px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #f6eadf;
  overflow: hidden;
}

.home-product-shop-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.home-product-shop-card h3 {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
  min-height: 2.4em;
  display: grid;
  place-items: center;
}

.home-product-shop-stars {
  color: #f29925;
  letter-spacing: 0.06em;
  font-weight: 900;
}

.home-product-shop-stars small {
  color: var(--ink);
  letter-spacing: 0;
  font-weight: 700;
  margin-left: 4px;
}

.home-product-shop-card strong {
  color: #9b121b;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.home-product-shop-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(215, 166, 107, 0.35);
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #fff8ec;
  font-size: 1.25rem;
}

.home-review-slider {
  grid-auto-columns: minmax(230px, 300px) !important;
  gap: 14px !important;
  padding-bottom: 16px !important;
}

.home-review-card {
  min-height: 205px !important;
  max-height: 235px;
  border-radius: 22px !important;
  padding: 18px !important;
  box-shadow: 0 14px 34px rgba(36, 30, 20, 0.07) !important;
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.home-review-card:hover,
.home-review-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(36, 30, 20, 0.12) !important;
}

.home-review-card h3 {
  font-size: 1.02rem !important;
  margin: 8px 0 6px !important;
  line-height: 1.2;
}

.home-review-card p {
  font-size: 0.92rem;
  line-height: 1.5 !important;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-review-card span {
  font-size: 0.82rem !important;
  margin-top: 12px !important;
}

.product-page-hero-copy p,
.section-header .section-intro {
  max-width: 640px;
}

@media (max-width: 900px) {
  .nav-social-icon { width: 44px; height: 44px; }
  .home-product-rail { grid-auto-columns: minmax(215px, 72vw); }
  .home-product-shop-card { min-height: 318px; }
}

@media (max-width: 560px) {
  .announcement-track { gap: 34px; animation-duration: 24s; }
  .nav-social-icon { width: 42px; height: 42px; }
  .home-product-shop-image { height: 148px; }
}


/* 2026-06-05g: requested final small fixes */
.hero-hotspot-shop {
  left: 3.5%;
  top: 64%;
  width: 13.5%;
  height: 9%;
}

.hero-hotspot-occasions {
  left: 16.3%;
  top: 64%;
  width: 21%;
  height: 9%;
}

.hero-hotspot:focus-visible {
  outline: 3px solid rgba(6, 63, 49, 0.45);
}

.product-main-image-button {
  display: grid;
  place-items: center;
  text-decoration: none;
  color: inherit;
}

.product-main-image-button:hover .product-zoom-hint,
.product-main-image-button:focus-visible .product-zoom-hint {
  opacity: 1;
}

.faq-section .section-intro:empty {
  display: none;
}


/* 20260605k requested product page and card polish */
.product-page-hero .section-actions .btn-outline[href="#all-products"] {
  display: none !important;
}
.product-page-hero-showcase {
  background: #fffaf1;
  min-height: 0;
  border-radius: 34px;
  display: grid;
  place-items: center;
  padding: 18px;
}
.product-page-hero-showcase img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
}
.product-card-body .price-row span {
  display: none !important;
}
.rating-count-line {
  display: inline-flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  width: fit-content;
  color: #b87524;
  line-height: 1.25;
  text-decoration: none;
}
.rating-count-line .stars-text {
  color: #c5842b;
  letter-spacing: 0.05em;
  font-weight: 900;
}
.rating-count-line .review-count {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}
.rating-count-line .review-label-text {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0;
}
.product-card .return-badge.return-badge-compact {
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 10px 0 14px;
  padding: 8px 10px;
  border: 1px solid rgba(31, 93, 146, 0.10);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.80);
}
.product-card .return-badge.return-badge-compact .return-badge-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}
.product-card .return-badge.return-badge-compact .return-badge-icon::before {
  left: 8px;
  top: 8px;
  width: 13px;
  height: 11px;
  border-width: 2px;
  border-top-width: 3px;
}
.product-card .return-badge.return-badge-compact .return-badge-icon::after {
  left: 8px;
  top: 6px;
  width: 13px;
  height: 2px;
}
.product-card .return-badge.return-badge-compact .return-badge-text {
  color: #1f5d92;
  font-size: 0.82rem;
  font-weight: 900;
}
.product-actions-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}
.product-actions-clean .btn {
  width: 100%;
  min-height: 44px;
  padding-inline: 14px;
}
.video-card {
  cursor: pointer;
}
.video-card video {
  cursor: pointer;
}
@media (max-width: 760px) {
  .product-page-hero-grid {
    grid-template-columns: 1fr;
  }
  .product-actions-clean {
    grid-template-columns: 1fr;
  }
}

/* 2026-06-05: home video partial zoom modal */
.video-card.has-video-zoom {
  cursor: zoom-in;
}

.video-card.has-video-zoom video {
  cursor: zoom-in;
}

.video-zoom-open {
  overflow: hidden;
}

.video-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-zoom-modal.is-open {
  display: flex;
}

.video-zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 35, 25, 0.68);
  backdrop-filter: blur(4px);
}

.video-zoom-dialog {
  position: relative;
  width: min(920px, 92vw);
  max-height: 86vh;
  padding: 18px;
  border-radius: 28px;
  background: #fffaf0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.video-zoom-player {
  display: block;
  width: 100%;
  max-height: 76vh;
  border-radius: 18px;
  background: #002f25;
  object-fit: contain;
}

.video-zoom-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fffaf0;
  color: #003f2f;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.video-zoom-close:hover {
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .video-zoom-modal {
    padding: 12px;
  }

  .video-zoom-dialog {
    width: 96vw;
    padding: 10px;
    border-radius: 20px;
  }

  .video-zoom-player {
    border-radius: 14px;
  }
}

/* 20260605 product banner + WhatsApp button polish */
.product-page-banner-hero {
  padding: 38px 0 46px;
  background: linear-gradient(135deg, #fff7e8 0%, #f7ead5 100%);
}

.product-page-banner-wrap {
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(42, 32, 17, 0.14);
  border: 1px solid rgba(215, 166, 107, 0.22);
  background: #fffaf1;
}

.product-page-banner-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.product-page-banner-whatsapp {
  position: absolute;
  left: 4.9%;
  bottom: 8.5%;
  width: 22.5%;
  height: 8.8%;
  border-radius: 999px;
  z-index: 2;
}

.product-page-banner-whatsapp:focus-visible {
  outline: 4px solid rgba(6, 63, 49, 0.35);
  outline-offset: 4px;
}

.panel.green .btn-soft,
.panel.green .btn-soft:visited {
  background: #0b7a3b;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.panel.green .btn-soft:hover,
.panel.green .btn-soft:focus-visible {
  background: #128a45;
  color: #fff !important;
}

@media (max-width: 720px) {
  .product-page-banner-hero {
    padding: 22px 0 30px;
  }
  .product-page-banner-wrap {
    border-radius: 22px;
  }
}


/* 20260607 product banner + occasions creative page patch */
.product-page-banner-whatsapp {
  left: 3.2%;
  bottom: 4.4%;
  width: 27.6%;
  height: 10.6%;
}

.occasions-hero-section {
  padding: 34px 0 18px;
  background: linear-gradient(180deg, #fff8ea 0%, #fbf3e5 100%);
}

.occasions-hero-banner {
  overflow: hidden;
  border-radius: 28px;
  background: #fffdf7;
  border: 1px solid rgba(215, 166, 107, 0.32);
  box-shadow: 0 24px 70px rgba(36, 30, 20, 0.12);
}

.occasions-hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.occasions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 18px;
}

.occasions-benefits-section {
  padding-top: 18px;
}

.occasions-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.occasions-benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 20px;
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(215, 166, 107, 0.22);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(36, 30, 20, 0.05);
}

.occasions-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex: 0 0 52px;
  background: #fff4df;
  border: 1px solid rgba(215, 166, 107, 0.28);
}

.occasions-benefit-card h3 {
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.occasions-benefit-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.occasions-section-header {
  margin-bottom: 26px;
}

.occasions-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.occasion-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(215, 166, 107, 0.24);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(36, 30, 20, 0.08);
}

.occasion-card-wide {
  grid-column: span 2;
}

.occasion-card-media {
  aspect-ratio: 4 / 3;
  background: #f6ead8;
}

.occasion-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.occasion-card-body {
  padding: 18px 18px 20px;
}

.occasion-card-body h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.occasion-card-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.96rem;
}

.occasions-cta-band {
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(135deg, #fffdf8 0%, #f7ead8 100%);
  border: 1px solid rgba(215, 166, 107, 0.28);
  box-shadow: 0 16px 40px rgba(36, 30, 20, 0.08);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 22px;
  align-items: center;
}

.occasions-cta-copy h2 {
  color: var(--green-dark);
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.occasions-cta-copy p {
  color: #514b42;
  max-width: 720px;
  margin: 0;
}

@media (max-width: 1100px) {
  .occasions-benefits-grid,
  .occasions-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .occasions-cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .product-page-banner-whatsapp {
    left: 3%;
    bottom: 4%;
    width: 38%;
    height: 12%;
  }

  .occasions-hero-section {
    padding-top: 20px;
  }

  .occasions-hero-banner {
    border-radius: 20px;
  }

  .occasions-benefits-grid,
  .occasions-gallery-grid {
    grid-template-columns: 1fr;
  }

  .occasion-card-wide {
    grid-column: auto;
  }

  .occasions-benefit-card {
    padding: 18px;
  }

  .occasions-cta-band {
    padding: 24px;
  }

  .occasions-cta-copy h2 {
    font-size: 2rem;
  }
}


/* 20260607 final occasions user image + bottom button mapping */
.occasions-hero-banner {
  position: relative;
}

.occasions-hero-hotspot {
  position: absolute;
  z-index: 5;
  display: block;
}

/* Bottom middle: “Let’s create something memorable” opens WhatsApp */
.occasions-hero-hotspot-connect {
  left: 49.6%;
  top: 88.0%;
  width: 23.5%;
  height: 7.0%;
}

/* Bottom right: Enquire Now opens the order form */
.occasions-hero-hotspot-bottom-order {
  left: 72.5%;
  top: 88.3%;
  width: 13.7%;
  height: 6.4%;
  border-radius: 999px;
}

.occasions-hero-hotspot:focus-visible {
  outline: 3px solid rgba(0, 68, 48, 0.55);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .occasions-hero-hotspot-connect {
    left: 48%;
    top: 87%;
    width: 25%;
    height: 8%;
  }

  .occasions-hero-hotspot-bottom-order {
    left: 72%;
    top: 87.5%;
    width: 15%;
    height: 7.5%;
  }
}

/* 20260607 fixed occasions banner only */
.occasions-hero-banner {
  position: relative;
}

.occasions-hero-hotspot {
  position: absolute;
  display: block;
  z-index: 6;
  border-radius: 999px;
}

/* Bottom middle: "Let's create something memorable" -> WhatsApp */
.occasions-hero-hotspot-connect {
  left: 48.8%;
  top: 89.0%;
  width: 24.0%;
  height: 6.2%;
}

/* Bottom right: "Enquire Now" -> Order form */
.occasions-hero-hotspot-bottom-order {
  left: 72.9%;
  top: 90.5%;
  width: 12.4%;
  height: 5.2%;
}

.occasions-hero-hotspot:focus-visible {
  outline: 3px solid rgba(0, 68, 48, 0.58);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .occasions-hero-hotspot-connect {
    left: 48.4%;
    top: 88.8%;
    width: 24.8%;
    height: 6.8%;
  }

  .occasions-hero-hotspot-bottom-order {
    left: 72.5%;
    top: 90.2%;
    width: 13.2%;
    height: 5.8%;
  }
}

/* 20260607 occasions page header logo adjustment */
.occasions-page .brand-logo {
  width: 76px;
  height: 76px;
}

.occasions-page .logo-word {
  font-size: clamp(2rem, 2.7vw, 2.65rem);
}

.occasions-page .logo-tagline {
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .occasions-page .brand-logo {
    width: 64px;
    height: 64px;
  }

  .occasions-page .logo-word {
    font-size: 1.85rem;
  }
}


/* Premium Order Page Refresh */
.order-premium-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 56px;
  background:
    radial-gradient(circle at 84% 18%, rgba(215, 166, 107, 0.24), transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(6, 63, 49, 0.14), transparent 32%),
    linear-gradient(135deg, #fffaf0 0%, #f4e6cd 100%);
  border-bottom: 1px solid rgba(66, 80, 57, 0.1);
}

.order-premium-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(6, 63, 49, 0.08);
  border-radius: 42px;
  pointer-events: none;
}

.order-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.order-hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -0.06em;
  color: var(--green-dark);
  max-width: 720px;
}

.order-hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
  margin-top: 18px;
}

.order-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid rgba(6, 63, 49, 0.24);
  box-shadow: none;
}

.btn-outline-dark:hover {
  background: var(--green-dark);
  color: #fff;
}

.order-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.order-trust-row span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(6, 63, 49, 0.13);
  background: rgba(255, 255, 255, 0.58);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 900;
  font-size: 0.88rem;
}

.order-hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.order-hero-visual::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 42px;
  left: 11%;
  bottom: 32px;
  background: rgba(36, 30, 20, 0.16);
  filter: blur(24px);
  border-radius: 50%;
}

.order-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(36, 30, 20, 0.18);
  transform: rotate(-1deg);
}

.order-product-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(215, 166, 107, 0.32);
  z-index: 1;
}

.order-product-orbit-one {
  width: 86%;
  height: 70%;
  transform: rotate(-12deg);
}

.order-product-orbit-two {
  width: 62%;
  height: 48%;
  transform: rotate(18deg);
  border-color: rgba(6, 63, 49, 0.16);
}

.order-floating-note {
  position: absolute;
  z-index: 4;
  right: 10px;
  bottom: 58px;
  width: 210px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, rgba(6, 63, 49, 0.94), rgba(66, 80, 57, 0.94));
  box-shadow: 0 22px 50px rgba(6, 63, 49, 0.24);
}

.order-floating-note strong,
.order-floating-note span {
  display: block;
}

.order-floating-note strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.order-floating-note span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.order-experience-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(215, 166, 107, 0.16), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, #fffaf0 100%);
}

.order-experience-grid {
  display: grid;
  grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.order-side-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.order-side-card {
  border-radius: 30px;
  border: 1px solid rgba(66, 80, 57, 0.11);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 44px rgba(36, 30, 20, 0.08);
  padding: 26px;
  backdrop-filter: blur(12px);
}

.order-whatsapp-card {
  overflow: hidden;
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(215, 166, 107, 0.36), transparent 36%),
    linear-gradient(145deg, #063f31 0%, #425039 100%);
}

.order-whatsapp-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.order-whatsapp-card h2,
.order-whatsapp-card h3 {
  color: #fff;
}

.order-whatsapp-card p {
  color: rgba(255, 255, 255, 0.8);
}

.order-whatsapp-main {
  width: 100%;
  justify-content: center;
  margin: 8px 0 18px;
  background: #fff;
  color: var(--green-dark);
}

.order-contact-mini {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.order-process-card h3,
.order-mini-products h3 {
  color: var(--green-dark);
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.order-process-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.order-process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
}

.order-process-list li > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(6, 63, 49, 0.16);
}

.order-process-list strong {
  display: block;
  color: var(--ink);
}

.order-process-list small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 3px;
}

.order-mini-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.order-mini-product-grid a {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(66, 80, 57, 0.1);
  box-shadow: 0 10px 24px rgba(36, 30, 20, 0.06);
}

.order-mini-product-grid img {
  height: 96px;
  width: 100%;
  object-fit: cover;
}

.order-mini-product-grid span {
  display: block;
  padding: 9px 10px 11px;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.88rem;
}

.order-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(66, 80, 57, 0.12);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(36, 30, 20, 0.12);
  padding: 28px;
}

.order-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold), var(--tomato));
}

.order-form-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.order-form-head h2 {
  color: var(--green-dark);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.04em;
}

.order-form-head p {
  color: var(--muted);
  max-width: 600px;
}

.order-form-whatsapp {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  background: #1da851;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(29, 168, 81, 0.2);
}

.order-notice {
  margin-bottom: 18px;
}

.tally-embed-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(66, 80, 57, 0.1);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

.order-frame-premium {
  display: block;
  min-height: 640px;
  height: min(72vh, 720px);
  border-radius: 28px;
  box-shadow: none;
}

.tally-brand-cover {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 250px;
  height: 46px;
  background: linear-gradient(90deg, rgba(255,255,255,0), #fff 18%, #fff 100%);
  z-index: 5;
  pointer-events: none;
}

.order-form-fallback {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.order-form-fallback a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
}

.order-faq-premium {
  background:
    radial-gradient(circle at 90% 12%, rgba(6, 63, 49, 0.08), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream-2) 100%);
}

.order-sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  border-radius: 999px;
  padding: 14px 18px;
  background: #1da851;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(29, 168, 81, 0.28);
}

@media (max-width: 980px) {
  .order-hero-grid,
  .order-experience-grid {
    grid-template-columns: 1fr;
  }

  .order-premium-hero {
    padding: 52px 0 34px;
  }

  .order-premium-hero::before {
    inset: 10px;
    border-radius: 28px;
  }

  .order-hero-visual {
    min-height: auto;
  }

  .order-hero-visual img {
    border-radius: 24px;
  }

  .order-floating-note {
    right: 16px;
    bottom: 20px;
  }

  .order-side-panel {
    position: static;
    order: -1;
  }

  .order-side-card {
    padding: 22px;
  }

  .order-form-head {
    display: grid;
  }

  .order-form-whatsapp {
    width: fit-content;
  }

  .order-frame-premium {
    height: 680px;
    min-height: 680px;
  }

  .order-sticky-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  .order-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .order-trust-row span {
    width: 100%;
    justify-content: center;
  }

  .order-floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -22px;
    width: 100%;
  }

  .order-form-card {
    padding: 18px;
    border-radius: 26px;
  }

  .order-frame-premium {
    height: 660px;
    min-height: 660px;
  }

  .tally-brand-cover {
    width: 210px;
    height: 44px;
  }

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


/* Order Page Banner Fix - cleaner premium hero */
.order-premium-hero {
  padding: 58px 0 48px;
  background:
    radial-gradient(circle at 92% 10%, rgba(215, 166, 107, 0.22), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #f6ead6 100%);
}

.order-premium-hero::before {
  display: none;
}

.order-hero-grid {
  grid-template-columns: minmax(420px, 0.92fr) minmax(480px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.order-hero-copy {
  max-width: 620px;
}

.order-hero-copy h1 {
  font-size: clamp(3.1rem, 4.7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  max-width: 640px;
}

.order-hero-copy p {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 22px;
}

.order-hero-actions {
  margin-top: 26px;
}

.order-trust-row {
  margin-top: 22px;
}

.order-hero-visual {
  min-height: auto;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.order-hero-visual img {
  width: 100%;
  max-width: 720px;
  border-radius: 30px;
  transform: none;
  box-shadow: 0 24px 70px rgba(36, 30, 20, 0.14);
}

.order-hero-visual::after {
  width: 70%;
  left: 15%;
  bottom: -10px;
  opacity: 0.65;
}

.order-product-orbit {
  display: none;
}

@media (min-width: 1200px) {
  .order-premium-hero {
    padding-top: 64px;
    padding-bottom: 54px;
  }
}

@media (max-width: 1080px) {
  .order-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .order-hero-copy {
    max-width: 760px;
  }

  .order-hero-copy h1 {
    max-width: 760px;
  }

  .order-hero-visual img {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .order-premium-hero {
    padding: 38px 0 30px;
  }

  .order-hero-copy h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }
}


/* Custom Google Sheet Order Form */
.custom-order-card {
  overflow: visible;
}

.custom-order-form {
  display: grid;
  gap: 20px;
}

.form-section-title {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.form-section-title > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(6, 63, 49, 0.16);
}

.form-section-title h3 {
  color: var(--green-dark);
  font-size: 1.45rem;
}

.form-section-title p {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.92rem;
}

.field-label input,
.field-label select,
.field-label textarea {
  width: 100%;
  border: 1px solid rgba(66, 80, 57, 0.16);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
  min-height: 52px;
  font: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.field-label textarea {
  resize: vertical;
  min-height: 96px;
}

.field-label input:focus,
.field-label select:focus,
.field-label textarea:focus {
  border-color: rgba(6, 63, 49, 0.55);
  box-shadow: 0 0 0 4px rgba(6, 63, 49, 0.08);
}

.order-product-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.order-product-choice {
  position: relative;
  display: grid;
  grid-template-columns: 22px 70px 1fr 76px;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(66, 80, 57, 0.13);
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(36, 30, 20, 0.06);
  transition: 0.18s ease;
}

.order-product-choice:hover,
.order-product-choice.is-selected {
  border-color: rgba(6, 63, 49, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(36, 30, 20, 0.1);
}

.order-product-choice.is-selected {
  background: linear-gradient(135deg, #fff 0%, #f2f8ed 100%);
}

.order-product-choice input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-dark);
}

.order-product-choice img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--cream-2);
}

.order-product-choice strong,
.order-product-choice small {
  display: block;
}

.order-product-choice strong {
  color: var(--green-dark);
  line-height: 1.15;
}

.order-product-choice small {
  color: var(--muted);
  margin-top: 3px;
  font-size: 0.82rem;
}

.qty-input {
  width: 74px;
  border: 1px solid rgba(66, 80, 57, 0.16);
  border-radius: 14px;
  min-height: 44px;
  padding: 8px 10px;
  font-weight: 900;
  text-align: center;
}

.order-form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 8px;
}

.custom-order-submit {
  border: 0;
  cursor: pointer;
  min-width: 220px;
}

.custom-order-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.order-form-footer p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.order-form-message {
  display: none;
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 800;
}

.order-form-message.success,
.order-form-message.error,
.order-form-message.warning,
.order-form-message.info {
  display: block;
}

.order-form-message.success {
  color: #0e5f36;
  background: #e7f7ed;
  border: 1px solid rgba(14, 95, 54, 0.16);
}

.order-form-message.error {
  color: #9b1c1c;
  background: #fff0f0;
  border: 1px solid rgba(155, 28, 28, 0.16);
}

.order-form-message.warning,
.order-form-message.info {
  color: #7c4f12;
  background: #fff6df;
  border: 1px solid rgba(124, 79, 18, 0.16);
}

@media (max-width: 860px) {
  .form-grid.two,
  .order-product-picker {
    grid-template-columns: 1fr;
  }

  .order-product-choice {
    grid-template-columns: 22px 64px 1fr 70px;
  }

  .order-form-footer {
    display: grid;
  }

  .custom-order-submit {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .order-product-choice {
    grid-template-columns: 22px 58px 1fr;
  }

  .qty-input {
    grid-column: 3;
    width: 100%;
  }
}


/* Order form added delivery/payment/file controls */
.order-options-grid {
  align-items: start;
}

.order-option-stack {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.order-option-stack label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(66, 80, 57, 0.1);
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s ease;
}

.order-option-stack label:hover {
  border-color: rgba(6, 63, 49, 0.28);
  transform: translateY(-1px);
}

.order-option-stack input {
  width: auto;
  min-height: auto;
  margin: 0;
  accent-color: var(--green-dark);
}

.order-option-stack label span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(6, 63, 49, 0.1);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 950;
  flex: 0 0 auto;
}

.order-option-stack label:has(input:checked) {
  border-color: rgba(6, 63, 49, 0.42);
  background: rgba(6, 63, 49, 0.055);
  box-shadow: 0 12px 26px rgba(36, 30, 20, 0.06);
}

.bulk-file-field input[type="file"] {
  padding: 18px;
  border-style: dashed;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,250,240,0.9));
}

.bulk-file-field small {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 860px) {
  .order-options-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== June 2026 header + about page refinement ===== */
.utility-bar {
  background: linear-gradient(90deg, #0a5b41 0%, #0b513c 100%);
  color: #fff;
}

.utility-bar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.utility-link:hover,
.utility-social:hover {
  opacity: 0.92;
}

.utility-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f1be23;
  color: #0a5b41;
  font-size: 1.2rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.utility-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility-social {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.utility-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.announcement {
  overflow: hidden;
  background: #074836;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  min-width: max-content;
  padding: 14px 0;
  font-weight: 800;
  animation: marquee 26s linear infinite;
}

.announcement-track span {
  position: relative;
  padding-left: 48px;
}

.announcement-track span::before {
  content: '•';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.75);
}

.nav {
  min-height: 94px;
}

.nav-actions {
  min-width: 78px;
  justify-content: flex-end;
}

.about-story-hero {
  padding: 76px 0 48px;
  background: linear-gradient(180deg, rgba(246, 238, 220, 0.72) 0%, rgba(255,248,234,0.98) 100%);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-story-grid h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

.about-story-grid .section-intro {
  max-width: 62ch;
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-stat-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 22px;
  padding: 18px;
}

.about-stat-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.about-stat-card span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
}

.about-hero-collage {
  position: relative;
  min-height: 500px;
}

.about-collage-main,
.about-collage-small,
.about-image-card img,
.about-gift-grid img,
.about-product-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.about-collage-main {
  height: 500px;
  border-radius: 36px;
  box-shadow: var(--shadow);
  object-fit: contain;
  background: #fff;
  padding: 18px;
}

.about-collage-small {
  position: absolute;
  width: 180px;
  background: #fff;
  padding: 10px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.about-collage-top {
  top: 28px;
  left: -28px;
}

.about-collage-bottom {
  right: -16px;
  bottom: 34px;
}

.about-info-stack {
  display: grid;
  gap: 16px;
}

.about-mini-card,
.about-product-card,
.about-image-card {
  background: #fff;
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-mini-card {
  padding: 24px;
}

.about-mini-card h3,
.about-product-card h3 {
  color: var(--green-dark);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.about-mini-card p,
.about-product-card p {
  color: var(--muted);
}

.about-product-family {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-product-card {
  overflow: hidden;
}

.about-product-card img {
  height: 240px;
  object-fit: contain;
  background: #fff9f0;
  padding: 14px;
}

.about-product-card h3,
.about-product-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.about-product-card h3 {
  margin-top: 18px;
}

.about-product-card p {
  padding-bottom: 24px;
}

.about-image-card {
  overflow: hidden;
}

.about-image-card img {
  height: 440px;
}

.about-gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-gift-grid img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}

.about-gift-grid img:not(:first-child) {
  height: 210px;
}

.about-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-cta-panel .section-actions {
  flex-wrap: wrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .about-story-grid,
  .about-product-family {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-collage {
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-collage-main {
    height: 420px;
  }

  .about-collage-top {
    left: 0;
  }

  .about-collage-bottom {
    right: 8px;
    bottom: 18px;
  }
}

@media (max-width: 980px) {
  .utility-bar-inner {
    min-height: 68px;
  }

  .utility-link {
    font-size: 0.95rem;
  }

  .nav-menu {
    top: 94px;
  }

  .about-product-family,
  .about-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .utility-bar-inner,
  .utility-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .utility-bar-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .utility-socials {
    align-self: stretch;
  }

  .utility-link {
    font-size: 0.92rem;
  }

  .announcement-track {
    gap: 28px;
    padding: 12px 0;
    font-size: 0.95rem;
    animation-duration: 24s;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .logo-word {
    font-size: 1.55rem;
  }

  .nav {
    min-height: 80px;
  }

  .nav-menu {
    top: 80px;
  }

  .about-story-hero {
    padding-top: 48px;
  }

  .about-product-family,
  .about-stat-row,
  .about-gift-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-collage {
    padding: 0;
  }

  .about-collage-main {
    height: 320px;
  }

  .about-collage-small {
    width: 132px;
    padding: 8px;
  }

  .about-collage-top {
    top: -12px;
    left: 8px;
  }

  .about-collage-bottom {
    right: 8px;
    bottom: 10px;
  }

  .about-image-card img,
  .about-gift-grid img:first-child,
  .about-gift-grid img:not(:first-child) {
    height: auto;
  }
}


/* ===== June 2026 single header refinement ===== */
.utility-bar {
  display: none !important;
}

.announcement {
  overflow: hidden;
  background: #074836;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  white-space: nowrap;
  min-width: max-content;
  padding: 13px 0;
  font-weight: 800;
  animation: marquee 30s linear infinite;
}

.announcement-track span {
  position: relative;
  padding-left: 40px;
}

.announcement-track span::before {
  content: '•';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.76);
}

.announcement-track a {
  color: #fff;
  text-decoration: none;
}

.announcement-track a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 234, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(66, 80, 57, 0.12);
}

.nav {
  min-height: 92px;
}

.nav-actions.nav-social-actions {
  min-width: 116px;
  justify-content: flex-end;
}

.nav-social-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(6, 63, 49, 0.16);
  color: var(--green-dark);
  background: rgba(255, 253, 247, 0.84);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-social-icon:hover {
  transform: translateY(-1px);
  background: rgba(6, 63, 49, 0.08);
  border-color: rgba(6, 63, 49, 0.28);
}

.nav-social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .nav-menu {
    top: 92px;
  }

  .nav-actions.nav-social-actions {
    min-width: auto;
  }
}

@media (max-width: 680px) {
  .announcement-track {
    gap: 30px;
    padding: 11px 0;
    font-size: 0.94rem;
    animation-duration: 26s;
  }

  .announcement-track span {
    padding-left: 34px;
  }

  .announcement-track span::before {
    left: 12px;
  }

  .nav {
    min-height: 78px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .logo-word {
    font-size: 1.5rem;
  }

  .logo-tagline {
    font-size: 0.74rem;
  }

  .nav-menu {
    top: 78px;
  }

  .nav-social-icon {
    width: 40px;
    height: 40px;
  }

  .nav-social-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 460px) {
  .nav-social-icon {
    display: none;
  }
}

/* 2026-06-10: marketplace partner cards + order Amazon CTA */
.partner-marketplace-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(211, 166, 95, 0.16), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #f6eddd 100%);
}

.partner-marketplace-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 34px;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(66, 80, 57, 0.10);
  box-shadow: 0 26px 70px rgba(36, 30, 20, 0.08);
}

.partner-marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.partner-marketplace-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  text-decoration: none;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 248, 234, 0.96));
  border: 1px solid rgba(66, 80, 57, 0.12);
  box-shadow: 0 18px 44px rgba(36, 30, 20, 0.08);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.partner-marketplace-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(6, 63, 49, 0.06);
}

.partner-marketplace-card.is-live:hover,
.partner-marketplace-card.is-live:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(6, 63, 49, 0.22);
  box-shadow: 0 26px 60px rgba(36, 30, 20, 0.13);
}

.partner-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(6, 63, 49, 0.10);
  color: var(--green-dark);
}

.partner-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.partner-status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6, 63, 49, 0.10);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.partner-status.muted {
  background: rgba(211, 166, 95, 0.18);
  color: #8a5b18;
}

.partner-marketplace-card .partner-logo-text {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
  margin-top: 6px;
}

.partner-card-copy {
  max-width: 24ch;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.partner-card-action {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 900;
}

.partner-card-action.muted {
  color: var(--muted);
}

.order-amazon-section {
  background: linear-gradient(180deg, #fffaf0 0%, #f6eddd 100%);
  padding-top: 42px;
  padding-bottom: 42px;
}

.order-amazon-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 20%, rgba(211, 166, 95, 0.18), transparent 32%),
    rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(66, 80, 57, 0.12);
  box-shadow: 0 22px 55px rgba(36, 30, 20, 0.09);
}

.order-amazon-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(6, 63, 49, 0.10);
  color: var(--green-dark);
}

.order-amazon-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.order-amazon-copy h2 {
  margin-bottom: 8px;
}

.order-amazon-copy p {
  max-width: 68ch;
  color: var(--muted);
}

.order-amazon-btn {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .partner-marketplace-grid {
    grid-template-columns: 1fr;
  }

  .order-amazon-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .order-amazon-btn {
    justify-self: start;
  }
}
