:root {
  --bg: #060b16;
  --bg-alt: #0a0f1e;
  --surface: #0d1526;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(14, 21, 38, 0.86);
  --text: #f0ede8;
  --muted: #8a8fa8;
  --teal: #1a9b8a;
  --aqua: #00e5cc;
  --gold: #c9a84c;
  --gold-light: #e8c76a;
  --line: rgba(201, 168, 76, 0.15);
  --line-soft: rgba(255, 255, 255, 0.07);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --max: 1280px;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 229, 204, 0.08), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(201, 168, 76, 0.16), transparent 20%),
    linear-gradient(180deg, #060b16 0%, #0a0f1e 48%, #060b16 100%);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.24;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 85%);
  pointer-events: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 1.5rem), var(--max));
  margin: 0 auto;
}

.announcement-bar {
  height: 38px;
  overflow: hidden;
  background: rgba(7, 15, 28, 0.96);
  border-bottom: 1px solid rgba(0, 229, 204, 0.24);
  color: var(--aqua);
}

.announcement-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  min-width: max-content;
  padding: 0 1rem;
  height: 100%;
  align-items: center;
  animation: ticker 30s linear infinite;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 11, 22, 0.7);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 11, 22, 0.95);
  border-color: var(--line-soft);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.brand-mark {
  display: flex;
  flex-direction: column;
}

.brand-wordmark,
.footer-mark {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.brand-main,
.brand-name {
  font-family: "Cinzel", serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-main {
  font-size: 1.08rem;
}

.brand-italic {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
}

.brand-subtitle,
.footer-label,
.eyebrow,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
}

.brand-subtitle {
  color: var(--muted);
}

.eyebrow,
.footer-label,
.mini-label {
  color: var(--gold-light);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-soft);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: calc(var(--header-h) + 38px) 0.75rem auto;
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  background: rgba(6, 11, 22, 0.98);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  border-color: rgba(201, 168, 76, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.nav-feature-grid {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.nav-feature {
  display: grid;
  gap: 0.55rem;
}

.nav-feature img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}

.nav-feature span {
  color: var(--text);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.6rem;
}

.icon-button,
.button,
.button-ghost,
.text-link,
.filter-pill,
.variant-btn,
.notes-tab,
.payment-option,
.faq-trigger,
.search-input,
.search-result {
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.icon-button,
.button,
.button-ghost,
.text-link,
.filter-pill,
.variant-btn,
.payment-option {
  min-height: 46px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 1rem;
}

.icon-button {
  width: 46px;
  padding: 0;
}

.button-gold {
  border-color: rgba(201, 168, 76, 0.42);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(255, 255, 255, 0.03));
}

.button:hover,
.button-ghost:hover,
.icon-button:hover,
.text-link:hover,
.filter-pill:hover,
.variant-btn:hover,
.payment-option:hover,
.search-result:hover {
  transform: scale(1.02);
  border-color: rgba(232, 199, 106, 0.42);
}

.text-link {
  border: 0;
  padding-left: 0;
  padding-right: 0;
  color: var(--gold-light);
  min-height: auto;
}

.button-block {
  width: 100%;
}

.site-shell {
  position: relative;
}

.hero,
.page-hero {
  padding: 3rem 0 4rem;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 11, 22, 0.92), rgba(6, 11, 22, 0.42)),
    radial-gradient(circle at 75% 20%, rgba(0, 229, 204, 0.1), transparent 24%);
}

.hero-grid,
.page-hero-grid,
.editorial-grid,
.discovery-layout,
.story-layout,
.article-grid,
.product-layout,
.footer-shell,
.timeline-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.hero-copy,
.panel,
.story-block,
.story-metric,
.product-card,
.bundle-card,
.testimonial-card,
.story-card,
.product-detail-panel,
.cart-drawer,
.final-cta,
.discovery-callout,
.faq-item,
.search-panel {
  background: var(--glass);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-copy,
.panel,
.story-block,
.story-metric,
.product-detail-panel,
.testimonial-card,
.story-card,
.discovery-callout,
.search-panel,
.final-cta {
  padding: 1.3rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.2rem, 13vw, 6rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.4rem, 8vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 5vw, 2rem);
}

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

.hero-text {
  max-width: 34rem;
  font-size: 1rem;
}

.hero-actions,
.cta-actions,
.card-actions,
.variant-switch,
.filter-pills,
.performance-grid,
.footer-bottom-inner,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-trust,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.trust-pill,
.verified-badge,
.ingredient-chip,
.filter-pill,
.rating-line,
.product-category,
.breadcrumb {
  font-size: 0.76rem;
}

.trust-pill,
.verified-badge,
.ingredient-chip,
.rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  color: var(--muted);
}

.verified-badge {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.flagship-hero .hero-visual-panel,
.page-hero-visual,
.discovery-visual,
.founder-visual {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.hero-visual-panel img,
.page-hero-visual img,
.discovery-visual img,
.founder-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.36), rgba(13, 21, 38, 0.66));
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  max-width: 54rem;
}

.product-grid,
.bundle-grid,
.collection-grid,
.stories-grid,
.testimonial-grid,
.ingredient-grid,
.expanded-notes,
.timeline-grid {
  display: grid;
  gap: 1rem;
}

.product-card,
.bundle-card {
  overflow: hidden;
}

.product-card-image,
.bundle-card-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.product-card-image img,
.bundle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-image {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .hover-image {
  opacity: 1;
}

.product-card-body,
.bundle-card-body {
  padding: 1.2rem;
}

.brand-name {
  font-size: 1.2rem;
  color: var(--text);
}

.brand-main-title {
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3rem);
}

.product-category,
.breadcrumb {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.emotional-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text);
}

.emotional-line-large {
  font-size: 1.45rem;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.price-line-tight span {
  color: var(--text);
}

.price-line small {
  color: var(--muted);
}

.price-cut {
  color: var(--muted);
  text-decoration: line-through;
}

.price-now {
  color: var(--text);
  font-weight: 700;
}

.muted-copy {
  color: var(--muted);
  margin-top: 0.8rem;
}

.feature-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 5px;
  height: 5px;
  background: var(--gold-light);
}

.metric-value {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
}

.metric-copy {
  color: var(--muted);
}

.filter-pills {
  margin-bottom: 1rem;
}

.filter-pill.is-active,
.variant-btn.is-active,
.notes-tab.is-active,
.payment-option.is-active {
  background: rgba(201, 168, 76, 0.16);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--text);
}

.collection-grid-rich .product-card-image {
  min-height: 360px;
}

.product-page {
  padding: 2rem 0 4rem;
}

.product-gallery {
  display: grid;
  gap: 0.8rem;
}

.product-gallery-main {
  min-height: 480px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}

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

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.product-thumb {
  min-height: 78px;
  border: 1px solid var(--line-soft);
  background: transparent;
  padding: 0;
}

.product-thumb.is-active {
  border-color: rgba(201, 168, 76, 0.5);
}

.product-detail-panel {
  display: grid;
  gap: 1rem;
}

.performance-grid {
  gap: 0.55rem;
}

.notes-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.notes-tab {
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 0 0.45rem;
  min-height: auto;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.notes-tab.is-active {
  background: transparent;
  border-color: var(--gold-light);
}

.notes-panel {
  display: none;
}

.notes-panel.is-active {
  display: block;
}

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

.ingredient-column {
  display: grid;
  gap: 0.7rem;
}

.ingredient-chip {
  justify-content: flex-start;
  min-height: 58px;
  padding: 0.8rem 1rem;
}

.ingredient-art {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), var(--ingredient));
  flex: none;
}

.expanded-notes {
  margin-top: 1.2rem;
}

.review-summary {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.review-score {
  display: grid;
  gap: 0.35rem;
}

.review-score strong {
  font-size: 3rem;
  font-family: "Cormorant Garamond", serif;
}

.breakdown-row {
  display: grid;
  grid-template-columns: 42px 1fr 38px;
  gap: 0.7rem;
  align-items: center;
  color: var(--muted);
}

.breakdown-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.breakdown-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.faq-item {
  margin-bottom: 0.8rem;
}

.faq-trigger {
  width: 100%;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 1rem 1.05rem;
}

.faq-item.is-open {
  border-color: rgba(201, 168, 76, 0.38);
}

.faq-answer {
  display: none;
  padding: 0 1.05rem 1rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.timeline-card,
.contact-panel,
.faq-panel,
.contact-form {
  padding: 1.2rem;
}

.contact-stack,
.faq-panel {
  display: grid;
  gap: 0.85rem;
}

.contact-link {
  font-size: 1.15rem;
  color: var(--text);
}

.form-feedback {
  min-height: 1.4rem;
  color: var(--gold-light);
}

.discovery-callout {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.sticky-product-bar,
.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 38;
  background: rgba(6, 11, 22, 0.96);
  backdrop-filter: blur(20px);
}

.sticky-product-bar {
  bottom: 62px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  border-top: 1px solid var(--line-soft);
}

.mobile-bottom-nav {
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-soft);
}

.mobile-bottom-nav a,
.mobile-bottom-nav button {
  min-height: 62px;
  border: 0;
  background: transparent;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  right: 0.8rem;
  bottom: 140px;
  z-index: 39;
  min-height: 52px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  background: rgba(26, 155, 138, 0.18);
  border: 1px solid rgba(26, 155, 138, 0.34);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.cart-overlay,
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 45;
}

.cart-overlay.is-open,
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 430px);
  height: 100vh;
  z-index: 46;
  transform: translateX(100%);
  transition: transform 0.24s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--glass-strong);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-head,
.cart-foot {
  padding: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.cart-foot {
  border-top: 1px solid var(--line-soft);
  border-bottom: 0;
  display: grid;
  gap: 0.9rem;
}

.cart-body {
  overflow-y: auto;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.cart-item {
  display: flex;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.8rem;
}

.cart-item img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}

.cart-item-copy {
  display: grid;
  gap: 0.3rem;
  flex: 1;
}

.qty-stepper {
  display: inline-flex;
  border: 1px solid var(--line-soft);
}

.qty-stepper button,
.qty-stepper span {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-summary-row,
.upi-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.cart-summary-row strong {
  color: var(--text);
}

.cart-upsell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(201, 168, 76, 0.24);
  background: rgba(201, 168, 76, 0.06);
}

.payment-options {
  display: grid;
  gap: 0.6rem;
}

.search-panel {
  width: min(calc(100% - 1.5rem), 760px);
  margin: 7rem auto 0;
  background: var(--glass-strong);
}

.search-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.search-input {
  width: 100%;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  color: var(--text);
}

.search-results {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.search-result {
  display: grid;
  gap: 0.22rem;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.search-type {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
}

.footer-shell {
  padding: 2rem 0 1.5rem;
}

.footer-copy,
.footer-meta,
.footer-links a,
.social-row a,
.footer-bottom {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 0 5.5rem;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 2rem), var(--max));
  }

  .hero-grid,
  .page-hero-grid,
  .editorial-grid,
  .discovery-layout,
  .article-grid,
  .product-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-layout {
    grid-template-columns: 1.1fr 1fr 0.55fr 0.55fr 0.55fr;
  }

  .founder-layout .founder-visual {
    grid-column: span 2;
  }

  .product-grid,
  .bundle-grid,
  .collection-grid,
  .stories-grid,
  .testimonial-grid,
  .expanded-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ingredient-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-summary {
    grid-template-columns: 0.55fr 1fr;
    align-items: start;
  }

  .final-cta,
  .discovery-callout,
  .footer-bottom-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-shell {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    transform: none;
  }

  .nav-feature-grid {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .product-grid,
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bundle-grid,
  .stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-layout {
    grid-template-columns: 0.6fr 0.4fr;
    align-items: start;
  }

  .product-detail-panel {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }

  .expanded-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-bottom-nav,
  .sticky-product-bar {
    display: none;
  }

  .whatsapp-float {
    bottom: 1rem;
  }
}
