:root {
  --cream: #fbf6ef;
  --cream-deep: #f1e8da;
  --almond: #e9dbc7;
  --sand: #d5c0a6;
  --pistachio: #d8e5c5;
  --sage: #b7c89d;
  --olive: #6c7b4e;
  --olive-deep: #4c5737;
  --cacao: #7e6447;
  --text: #2f2b24;
  --muted: #6d6659;
  --white: #ffffff;
  --gold: #c8a96b;
  --shadow: 0 20px 60px rgba(91, 73, 41, 0.12);
  --shadow-soft: 0 16px 40px rgba(76, 87, 55, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 229, 197, 0.45), transparent 26%),
    radial-gradient(circle at bottom right, rgba(233, 219, 199, 0.5), transparent 24%),
    var(--cream);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: rgba(251, 246, 239, 0.98);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  z-index: 50;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-mark {
  display: grid;
  gap: 0.75rem;
  text-align: center;
}

.loading-mark strong,
.hero-copy h1,
.section-head h1,
.section-head h2,
.product-details h1 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.loading-leaf {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  background: linear-gradient(140deg, var(--pistachio), var(--olive));
  border-radius: 60% 40% 65% 35%;
  animation: floatLeaf 2.4s ease-in-out infinite;
}

@keyframes floatLeaf {
  50% {
    transform: translateY(-10px) rotate(-8deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 239, 0.82);
  border-bottom: 1px solid rgba(109, 102, 89, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 16px 40px rgba(73, 62, 42, 0.08);
  background: rgba(251, 246, 239, 0.94);
}

.announcement-bar {
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--olive-deep);
  background: linear-gradient(90deg, rgba(216, 229, 197, 0.65), rgba(241, 232, 218, 0.8));
}

.nav-wrap,
.page-shell,
.site-footer,
.hero-section,
.section-block,
.page-hero,
.cart-page,
.checkout-layout,
.product-page {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-copy,
.brand-logo {
  display: grid;
  gap: 0.2rem;
}

.brand-copy small,
.brand-logo small {
  color: var(--muted);
}

.brand-logo {
  gap: 0.1rem;
}

.brand-logo strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.9;
  color: #70825a;
  text-shadow: 0 8px 26px rgba(216, 229, 197, 0.5);
}

.brand-logo small {
  font-size: 0.63rem;
  letter-spacing: 0.25em;
  color: #8e866f;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.desktop-nav a,
.social-row a,
.footer-grid a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.social-row a:hover,
.footer-grid a:hover {
  color: var(--olive-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-button,
.burger-button {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--olive-deep);
}

.nav-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon-search::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 2px solid var(--olive-deep);
  border-radius: 50%;
}

.icon-search::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 1px;
  width: 7px;
  height: 2px;
  background: var(--olive-deep);
  transform: rotate(45deg);
  transform-origin: right center;
}

.icon-cart::before,
.icon-bag::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 6px;
  bottom: 2px;
  border: 2px solid var(--olive-deep);
  border-radius: 5px;
}

.icon-cart::after,
.icon-bag::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 2px;
  height: 8px;
  border: 2px solid var(--olive-deep);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.icon-home::before {
  content: "";
  position: absolute;
  inset: 2px 3px 3px;
  border: 2px solid var(--olive-deep);
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.icon-home::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  height: 12px;
  border-left: 2px solid var(--olive-deep);
  border-top: 2px solid var(--olive-deep);
  transform: rotate(45deg);
}

.icon-whatsapp::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 2px solid var(--olive-deep);
  border-radius: 50%;
}

.icon-whatsapp::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  box-shadow:
    -3px 4px 0 0 var(--olive-deep),
    0 0 0 2px transparent;
  border: 2px solid var(--olive-deep);
  border-right: 0;
  border-top: 0;
  transform: rotate(-25deg);
}

.icon-contact::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  height: 7px;
  border: 2px solid var(--olive-deep);
  border-radius: 50%;
}

.icon-contact::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 9px;
  border: 2px solid var(--olive-deep);
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.cart-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive-deep);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
}

.burger-button {
  display: none;
  padding: 0.85rem;
}

.burger-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--olive-deep);
  border-radius: 999px;
}

.shop-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.shop-pill:hover {
  transform: translateY(-2px);
}

.button-primary,
.shop-pill {
  color: var(--white);
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
  box-shadow: var(--shadow-soft);
}

.button-soft {
  background: rgba(255, 255, 255, 0.8);
  color: var(--olive-deep);
  border: 1px solid rgba(109, 102, 89, 0.12);
}

.button-ghost {
  background: rgba(216, 229, 197, 0.45);
  color: var(--olive-deep);
}

.search-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.search-panel.is-open {
  max-height: 120px;
}

.search-panel-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  padding: 0 0 1rem;
}

.search-panel input,
.newsletter-form input,
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(109, 102, 89, 0.15);
  border-radius: 18px;
  color: var(--text);
}

.page-shell {
  padding: 1rem 0 8rem;
}

.page-transition {
  animation: pageFade 0.45s ease;
}

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

.hero-section,
.product-page,
.ingredients-section,
.cart-page,
.checkout-layout,
.contact-layout,
.editorial-grid,
.premium-showcase,
.article-layout {
  display: grid;
  gap: 2rem;
}

.hero-section {
  min-height: calc(100vh - 220px);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 2rem 0 1rem;
}

.premium-hero {
  grid-template-columns: 0.95fr 1.05fr;
}

.hero-editorial {
  position: relative;
  min-height: 520px;
}

.hero-editorial-card {
  position: absolute;
  inset: 28px 72px 74px 20px;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.hero-editorial-card img,
.editorial-image img,
.showcase-card img,
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-note,
.hero-stat-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-floating-note {
  right: 0;
  bottom: 36px;
  max-width: 250px;
  padding: 1rem;
  border-radius: 24px;
}

.hero-stat-chip {
  left: 0;
  top: 0;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--olive-deep);
}

.editorial-feature {
  padding-top: 0;
}

.editorial-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 1.5rem;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(216,229,197,0.34));
}

.editorial-image {
  overflow: hidden;
  border-radius: 32px;
  min-height: 430px;
  box-shadow: var(--shadow);
}

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

.showcase-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,0.76);
  box-shadow: var(--shadow);
}

.showcase-card img {
  aspect-ratio: 1 / 0.95;
}

.showcase-card div {
  padding: 1rem;
}

.article-card img {
  border-radius: 26px;
  max-height: 420px;
  margin-bottom: 1rem;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(216, 229, 197, 0.65);
  color: var(--olive-deep);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h1,
.section-head h2,
.product-details h1 {
  margin: 1.1rem 0 1rem;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.94;
  color: #2f2b20;
}

.hero-copy p,
.section-head p,
.product-details p,
.story-card p,
.benefit-card p,
.review-card p,
.blog-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.cta-actions,
.product-actions,
.mini-cart-actions,
.social-links,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.hero-trust span,
.detail-badges span,
.product-badge-stack span,
.ingredient-list span,
.payment-icons span {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--olive-deep);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-blob,
.leaf {
  position: absolute;
  filter: blur(0.2px);
}

.hero-blob {
  border-radius: 56% 44% 42% 58%;
}

.hero-blob-one {
  inset: 90px 60px 40px 70px;
  background: linear-gradient(180deg, rgba(216, 229, 197, 0.85), rgba(241, 232, 218, 0.65));
  animation: blobMove 12s ease-in-out infinite alternate;
}

.hero-blob-two {
  width: 190px;
  height: 190px;
  top: 10px;
  right: 40px;
  background: rgba(200, 169, 107, 0.18);
  animation: blobMove 10s ease-in-out infinite alternate-reverse;
}

.leaf {
  width: 70px;
  height: 34px;
  background: linear-gradient(135deg, rgba(108, 123, 78, 0.5), rgba(216, 229, 197, 0.7));
  border-radius: 100px 0;
}

.leaf-one {
  top: 56px;
  left: 30px;
  transform: rotate(-28deg);
}

.leaf-two {
  bottom: 50px;
  right: 10px;
  transform: rotate(22deg);
}

.floating-card {
  position: absolute;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.floating-card-main {
  top: 80px;
  left: 80px;
  right: 70px;
  padding: 1.2rem;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card-main img {
  width: 100%;
  border-radius: 24px;
}

.floating-card-small {
  right: 0;
  bottom: 40px;
  max-width: 240px;
  padding: 1.2rem;
  animation: floatCard 5s ease-in-out infinite reverse;
}

@keyframes blobMove {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-16px) rotate(6deg);
  }
}

@keyframes floatCard {
  50% {
    transform: translateY(-14px);
  }
}

.section-block,
.page-hero {
  padding: 1.25rem 0;
}

.compact-section {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 0.98;
}

.category-grid,
.benefit-grid,
.product-grid,
.review-grid,
.gallery-grid,
.blog-grid,
.benefits-story {
  display: grid;
  gap: 1rem;
}

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

.category-card,
.benefit-card,
.story-card,
.review-card,
.blog-card,
.faq-item,
.product-card,
.cart-item,
.cart-summary,
.checkout-form,
.checkout-summary {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  border: 1px solid rgba(109, 102, 89, 0.08);
}

.category-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--category-color) 35%, white), rgba(255, 255, 255, 0.75));
  min-height: 210px;
}

.category-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 1.7rem;
}

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

.benefit-card span {
  color: var(--gold);
  font-size: 1.35rem;
}

.ingredients-section {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 1.8rem;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(216, 229, 197, 0.42), rgba(255, 255, 255, 0.7));
}

.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

.slider-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 0.2rem 0;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--olive-deep);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
}

.slider-product {
  min-width: 250px;
  flex: 0 0 250px;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.8rem;
}

.slider-product img {
  border-radius: 20px;
}

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

.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

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

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(233, 219, 199, 0.65), rgba(216, 229, 197, 0.55));
}

.page-hero {
  padding-top: 2.5rem;
}

.shop-hero {
  display: grid;
  gap: 1rem;
}

.category-pills {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.category-pills button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  border: 1px solid rgba(109, 102, 89, 0.08);
}

.category-pills button.active {
  background: var(--olive-deep);
  color: var(--white);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.product-card {
  padding: 0.85rem;
}

.product-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.favorite-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
}

.favorite-button.active {
  color: #af4a54;
}

.product-badge-stack {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-content {
  padding: 0.7rem 0 0.1rem;
}

.product-topline,
.product-meta,
.mini-cart-head,
.price-line,
.checkout-line,
.footer-bottom,
.detail-price,
.purchase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-topline span,
.product-meta small,
.blog-card span,
.review-card span,
.mini-cart-head p {
  color: var(--muted);
}

.product-content h3 {
  margin: 0.55rem 0 0.4rem;
  font-size: 1.05rem;
}

.product-actions {
  margin-top: 1rem;
}

.product-page {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  padding-top: 2.2rem;
}

.gallery-main,
.gallery-thumbs button {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.gallery-main {
  padding: 1rem;
  cursor: zoom-in;
}

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

.gallery-thumbs button {
  padding: 0.5rem;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.gallery-thumbs button.active {
  border-color: rgba(108, 123, 78, 0.5);
}

.gallery-thumbs button:hover {
  transform: translateY(-2px);
}

.detail-price strong {
  font-size: 1.8rem;
}

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

.detail-badges,
.nutrition-grid {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.nutrition-grid article {
  min-width: 120px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.nutrition-grid strong {
  display: block;
  font-size: 1.3rem;
}

.ingredient-card {
  padding: 1rem 1.2rem;
  border-radius: 26px;
  background: rgba(216, 229, 197, 0.32);
}

.quantity-picker {
  display: grid;
  gap: 0.45rem;
}

.quantity-picker div,
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.quantity-picker input {
  width: 56px;
  text-align: center;
  border: 0;
  background: transparent;
}

.quantity-picker button,
.cart-qty button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(216, 229, 197, 0.52);
}

.cart-page,
.checkout-layout,
.contact-layout,
.about-layout {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  padding-bottom: 2rem;
}

.cart-items,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
}

.cart-item img,
.mini-cart-item img {
  border-radius: 20px;
}

.remove-button {
  color: #996a72;
  font-weight: 700;
}

.empty-state,
.empty-mini-cart {
  text-align: center;
  padding: 2rem 1rem;
}

.checkout-form,
.checkout-summary,
.cart-summary {
  position: sticky;
  top: 140px;
}

.checkout-form {
  display: grid;
  gap: 1rem;
}

.checkout-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 8rem;
}

.footer-grid {
  grid-template-columns: 1.25fr 0.7fr 0.9fr 1fr;
  padding: 1.7rem;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(233, 219, 199, 0.5));
  box-shadow: var(--shadow);
}

.footer-grid > div {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.footer-bottom {
  padding: 1rem 0;
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  gap: 0.7rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.icon-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.social-svg {
  width: 36px;
  height: 36px;
  padding: 0.55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--olive-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.social-svg svg {
  width: 100%;
  height: 100%;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.92rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
  color: var(--olive-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(109, 102, 89, 0.08);
}

.payment-badge svg {
  width: 52px;
  height: 18px;
  display: block;
}

.payment-badge b {
  font-size: 0.82rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 80;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 20, 0.72);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 980px);
  max-height: calc(100vh - 2rem);
  padding: 1rem;
  border-radius: 32px;
  background: rgba(251, 246, 239, 0.92);
  box-shadow: var(--shadow);
}

.lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 6rem);
  object-fit: contain;
  border-radius: 24px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.86);
  color: var(--olive-deep);
  transform: rotate(45deg);
  z-index: 2;
}

.favorite-button {
  font-size: 1.1rem;
  line-height: 1;
}

.desktop-nav a,
.mobile-nav a,
.footer-grid a,
.button,
.shop-pill,
.product-card,
.category-card,
.story-card,
.benefit-card,
.review-card,
.blog-card,
.showcase-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.category-card:hover,
.product-card:hover,
.story-card:hover,
.benefit-card:hover,
.review-card:hover,
.blog-card:hover,
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(76, 87, 55, 0.14);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 31, 25, 0.25);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 390px);
  height: 100%;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(251, 246, 239, 0.98), rgba(241, 232, 218, 0.96));
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: grid;
  gap: 1.4rem;
}

.mobile-drawer.is-open {
  pointer-events: auto;
}

.mobile-drawer.is-open .mobile-drawer-overlay {
  opacity: 1;
}

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

.mobile-drawer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.mobile-drawer-top .icon-button {
  transform: rotate(45deg);
}

.mobile-nav {
  display: grid;
  gap: 0.7rem;
}

.mobile-nav a {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.mobile-drawer-actions {
  display: grid;
  gap: 0.8rem;
}

.mobile-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(calc(100% - 1rem), 560px);
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  padding: 0.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  z-index: 25;
}

.mobile-bottom-nav a,
.mobile-bottom-nav button {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  padding: 0.7rem 0.3rem;
  border-radius: 18px;
  color: var(--olive-deep);
  font-size: 0.75rem;
}

.mini-icon {
  transform: scale(0.9);
}

.mini-cart {
  position: fixed;
  top: 120px;
  right: 20px;
  width: min(420px, calc(100% - 1rem));
  max-height: calc(100vh - 140px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border-radius: 32px;
  background: rgba(251, 246, 239, 0.94);
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 31;
}

.mini-cart.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mini-cart-items {
  overflow: auto;
  display: grid;
  gap: 0.8rem;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.skeleton-grid.is-hidden,
.product-grid.is-hidden {
  display: none;
}

.skeleton-card {
  min-height: 390px;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(241, 232, 218, 0.95), rgba(255, 255, 255, 0.55));
  background-size: 200% 100%;
  animation: skeleton 1.2s linear infinite;
}

@keyframes skeleton {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

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

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

@media (max-width: 1100px) {
  .desktop-nav,
  .shop-pill {
    display: none;
  }

  .burger-button,
  .mobile-bottom-nav {
    display: grid;
  }

  .hero-section,
  .product-page,
  .ingredients-section,
  .cart-page,
  .checkout-layout,
  .contact-layout,
  .about-layout,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .why-grid .benefit-grid,
  .review-grid,
  .blog-grid,
  .gallery-grid,
  .skeleton-grid,
  .product-grid,
  .premium-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-story,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .announcement-bar {
    font-size: 0.78rem;
  }

  .nav-wrap,
  .page-shell,
  .site-footer,
  .hero-section,
  .section-block,
  .page-hero,
  .cart-page,
  .checkout-layout,
  .product-page {
    width: min(calc(100% - 1rem), var(--max));
  }

  .search-panel-inner,
  .toolbar,
  .cta-panel,
  .mini-cart-head,
  .footer-bottom,
  .purchase-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy h1,
  .section-head h1,
  .section-head h2,
  .product-details h1 {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .hero-section {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 420px;
  }

.hero-editorial {
    min-height: 390px;
  }

  .hero-editorial-card {
    inset: 24px 10px 70px 10px;
  }

  .hero-floating-note {
    right: 10px;
    left: 90px;
    bottom: 16px;
    max-width: none;
  }

  .hero-stat-chip {
    left: 10px;
  }

  .floating-card-main {
    left: 14px;
    right: 14px;
    top: 65px;
  }

  .floating-card-small {
    right: 14px;
    bottom: 24px;
    left: 90px;
    max-width: none;
  }

  .category-grid,
  .why-grid .benefit-grid,
  .review-grid,
  .blog-grid,
  .gallery-grid,
  .benefits-story,
  .skeleton-grid,
  .footer-grid,
  .premium-showcase {
    grid-template-columns: 1fr;
  }

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

  .cart-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .brand-copy small {
    display: none;
  }

  .brand-logo strong {
    font-size: 1.7rem;
  }

  .brand-logo small {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }

  .site-footer {
    padding-bottom: 7rem;
  }

  .slider-shell {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }

  .mini-cart {
    top: auto;
    bottom: 92px;
    right: 8px;
    left: 8px;
    width: auto;
    max-height: 70vh;
  }
}
