:root {
  /* Professional wellness palette: crisp ivory base, charcoal text, warm brown accent, gold highlight, trust-green for benefits. */
  --pink: #e6d2bf;
  --soft-pink: #fbf3ea;
  --rose: #c89f7a;
  --deep-rose: #111111;
  --wood: #e6c39b;
  --cream: #fdfbf8;
  --page-bg: #ffffff;
  --footer-bg: #faf6ef;
  --brown: #15120f;
  --muted: #625b54;
  --gold: #b9853a;
  --green: #4f7a5b;
  --green-soft: #eaf3ec;
  --aqua: #f6f2eb;
  --white: #ffffff;
  --border: rgba(21, 18, 15, .08);
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.09);
  --shadow-soft: 0 8px 22px rgba(17, 17, 17, 0.06);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  color: var(--brown);
  background: var(--page-bg);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--brown);
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 9px 0;
  text-align: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid rgba(21, 18, 15, .08);
}

.navbar {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.navbar-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-start {
  justify-self: start;
}

.navbar-end {
  justify-self: end;
}

.logo {
  justify-self: center;
}

.logo img {
  width: 168px;
  height: 112px;
  object-fit: contain;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--brown);
}

.search-panel {
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: max-height .3s ease;
}

.search-panel.open {
  max-height: 96px;
}

.search-form {
  display: flex;
  gap: 10px;
  padding: 16px;
}

.search-form input {
  flex: 1;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(21, 18, 15, .14);
  padding: 0 16px;
  background: var(--white);
  color: var(--brown);
  outline: none;
}

.nav {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 104px;
  z-index: 40;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brown);
  background: rgba(185, 133, 58, .1);
}

.desktop-nav-link {
  display: none;
}

@media (min-width: 1000px) {
  .menu-button {
    display: none;
  }

  .desktop-nav-link {
    display: inline-flex;
    padding: 8px 6px;
    border-radius: 0;
    background: none;
  }

  .desktop-nav-link:hover,
  .desktop-nav-link.active {
    background: none;
    color: var(--gold);
  }
}

.cart-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--brown);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.cart-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cart-link:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 16px 34px rgba(17, 17, 17, .12);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  box-shadow: 0 0 0 2px var(--white);
}

.cart-badge.has-items {
  animation: pulse .7s ease;
}

.cart-link.bump {
  animation: cartBump .5s cubic-bezier(.34, 1.56, .64, 1);
}

.menu-button {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--brown);
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-button.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.open span:nth-child(2) {
  opacity: 0;
}

.menu-button.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--brown);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.page-hero h1 {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(43px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.page-hero h1 span {
  color: var(--brown);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-slider {
  position: relative;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(21, 18, 15, .38), rgba(21, 18, 15, 0) 32%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-overlay .eyebrow {
  justify-content: center;
  color: var(--white);
}

.hero-overlay .eyebrow::before {
  background: var(--gold);
}

.hero-overlay h1 {
  margin: 6px 0 0;
  font-family: "Jost", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(34px, 5vw, 58px);
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .25);
}

.hero-overlay-sub {
  margin: 14px 0 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, .92);
  font-size: 17px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .2);
}

.slider-track {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  flex: 1;
  min-height: 0;
  cursor: grab;
}

.slider-track:active {
  cursor: grabbing;
}

.slider-track [data-slide] {
  grid-area: 1 / 1;
  height: 100%;
  min-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--aqua);
  transform: translateX(36px) scale(1.02);
  transition: opacity .15s cubic-bezier(.4, 0, .2, 1), transform .15s cubic-bezier(.4, 0, .2, 1), visibility .15s;
}

.slider-track [data-slide].active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.slider-track [data-slide] img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.slider-track [data-slide].active img {
  animation: heroKenBurns 6s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.07);
  }
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  color: var(--brown);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: background .2s ease, transform .2s ease;
}

.slider-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
}

.slider-arrow-prev {
  left: 18px;
}

.slider-arrow-next {
  right: 18px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 0 0 1px rgba(21, 18, 15, .18);
  transition: background .25s ease, transform .25s ease;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brown), #2d2925);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(17, 17, 17, .20);
}

.btn-soft {
  background: var(--white);
  color: var(--brown);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(185, 133, 58, .22);
}

.btn-outline {
  border: 1px solid rgba(21, 18, 15, .20);
  background: transparent;
  color: var(--brown);
}

.btn.full {
  width: 100%;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.stat-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(185, 133, 58, .18);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  font-family: "Jost", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--brown);
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 64px 0;
}

#best-sellers {
  background: var(--page-bg);
}

.section-sm {
  padding: 46px 0;
}

.section-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 34px;
  text-align: center;
}

.section-head > .btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.section-head h2 {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
}

.section-head p {
  max-width: 580px;
  margin: 10px 0 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(185,133,58,.10), transparent 70%);
}

.category-card h3 {
  margin: 0 0 8px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.category-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
}

.product-card {
  overflow: hidden;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  border: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.product-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #f5f5f5;
}

.product-image-wrap > a {
  display: block;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1);
  transition: transform .5s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-quick-actions {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.icon-action {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--dark);
  box-shadow: 0 10px 24px rgba(21, 18, 15, .16);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.icon-action:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--white);
}

.icon-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.discount-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: #e77e26;
  color: var(--white);
  font-family: "Jost", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  animation: badgePulse 2.2s ease-in-out infinite;
}

.product-content {
  padding: 15px 0 0;
}

.product-category {
  margin: 0 0 4px;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product-card h3 {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  line-height: 1.35;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.bundle-includes {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: 14px;
  margin: 7px 0 8px;
}

.stars {
  color: #ffc233;
  letter-spacing: 1px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.price-row strong {
  font-family: "Jost", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #e84e4e;
}

.price-row span {
  color: #9e928a;
  text-decoration: line-through;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.product-actions .btn {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 14px;
}

.banner {
  border-radius: var(--radius-xl);
  padding: 46px;
  background: linear-gradient(115deg, #15120f, #3c2f22);
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.banner h2 {
  margin: 0;
  max-width: 680px;
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.banner p {
  max-width: 580px;
  color: rgba(255,255,255,.82);
  margin: 16px 0 24px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-bubble {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.icon-bubble svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.benefit-card h3 {
  margin: 0 0 8px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.review-card p {
  color: var(--muted);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--green);
}

.newsletter {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: center;
}

.newsletter h2 {
  font-family: "Jost", Arial, sans-serif;
  font-size: 38px;
  margin: 0 0 8px;
}

.newsletter p {
  color: var(--muted);
  margin: 0;
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input,
.form-control,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(21,18,15,.14);
  border-radius: 14px;
  padding: 13px 16px;
  background: var(--white);
  color: var(--brown);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.newsletter input:focus,
.form-control:focus,
select:focus,
textarea:focus {
  border-color: rgba(185,133,58, .46);
  box-shadow: 0 0 0 4px rgba(185,133,58,.12);
}

.brand-values-bar {
  background: var(--white);
}

.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.brand-value-item .icon-bubble {
  margin: 0 auto 16px;
}

.brand-value-item h3 {
  margin: 0 0 6px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 20px;
}

.brand-value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 54px 0 22px;
  background: var(--footer-bg);
  color: var(--brown);
  margin-top: 0;
  border-top: 1px solid rgba(185, 133, 58, .22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}

.footer h3,
.footer h4 {
  color: var(--brown);
  margin-top: 0;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--footer-bg);
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.footer-logo-wrap img {
  width: 158px;
  max-height: 92px;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  margin: 14px 0 10px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
}

.footer-whatsapp-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-email a {
  margin: 0;
  color: var(--brown);
  font-weight: 600;
}

.footer p,
.footer a {
  color: rgba(21, 18, 15, .72);
}

.footer a {
  display: block;
  margin: 9px 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(185, 133, 58, .34);
  background: rgba(255, 255, 255, .58);
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
  margin: 0;
}

.contact-card .social-links a {
  background: rgba(255, 255, 255, .72);
  color: var(--brown);
  box-shadow: var(--shadow-soft);
}

.social-links a[aria-disabled="true"],
a[aria-disabled="true"] {
  opacity: .68;
}

.footer-bottom {
  border-top: 1px solid rgba(185, 133, 58, .22);
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
  color: rgba(21, 18, 15, .58);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, .28);
  transition: transform .25s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.btn-primary .whatsapp-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 18px);
  z-index: 80;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(21,18,15,.96);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.brand-statement {
  text-align: center;
}

.brand-statement .container {
  max-width: 760px;
}

.brand-statement .eyebrow {
  justify-content: center;
}

.page-hero {
  padding: 76px 0 54px;
  text-align: center;
}

.page-hero.small {
  padding: 58px 0 34px;
}

.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
}

.shop-toolbar {
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 220px 220px;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
}

.product-count {
  color: var(--muted);
  margin: -12px 0 20px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 46px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: start;
}

.detail-image {
  position: sticky;
  top: 105px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.detail-image img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.detail-content {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.detail-content h2 {
  margin: 0 0 6px;
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.detail-price strong {
  font-family: "Jost", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.lead-text {
  color: var(--muted);
  font-size: 17px;
}

.quantity-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
}

.quantity-box input {
  width: 96px;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(21,18,15,.15);
  padding: 8px 12px;
}

.detail-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.pd-sections {
  padding-top: 0;
}

.pd-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pd-section {
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.pd-section-title {
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  font-size: 19px;
  line-height: 1.3;
}

.pd-section p {
  margin: 0;
  color: var(--muted);
}

.benefit-checklist,
.precaution-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.benefit-checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--brown);
}

.benefit-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.ingredient-chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ingredient-chips li {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--aqua);
  border: 1px solid var(--border);
  color: var(--brown);
  font-size: 13px;
  font-weight: 600;
}

.pd-section-caution {
  border-color: rgba(185, 133, 58, .3);
}

.precaution-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.precaution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.shelf-life {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--brown) !important;
}

.pd-section-quality {
  background: var(--green-soft);
  border-color: rgba(79, 122, 91, .22);
}

.pd-section-quality .pd-section-title {
  border-left-color: var(--green);
}

.bundle-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-inline: auto;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.insta-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.insta-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 15, 0);
  transition: background .25s ease;
}

.insta-tile svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  fill: var(--white);
  opacity: 0;
  transition: opacity .25s ease;
}

.insta-tile:hover img {
  transform: scale(1.08);
}

.insta-tile:hover::after {
  background: rgba(21, 18, 15, .38);
}

.insta-tile:hover svg {
  opacity: 1;
}

.hot-sale-section {
  background: linear-gradient(180deg, rgba(185,133,58,.06), transparent);
}

.hot-sale-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hot-sale-image {
  position: relative;
}

.hot-sale-image img {
  width: 100%;
  aspect-ratio: 1 / .92;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transform: scale(1.05);
}

.hot-sale-content .eyebrow {
  color: var(--gold);
}

.hot-sale-content h2 {
  margin: 0 0 10px;
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
}

.hot-sale-content p {
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brown);
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.cart-layout,
.checkout-layout,
.contact-layout,
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 118px 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.cart-item img {
  width: 118px;
  height: 104px;
  object-fit: cover;
  border-radius: 22px;
}

.cart-item h3 {
  margin: 0;
}

.cart-item p {
  margin: 3px 0 8px;
  color: var(--muted);
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(247,239,228,.32);
}

.cart-controls button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--brown);
  font-size: 20px;
  box-shadow: var(--shadow-soft);
}

.cart-item-total {
  text-align: right;
}

.cart-item-total button {
  display: block;
  margin-top: 8px;
  color: var(--brown);
  background: transparent;
  font-weight: 700;
}

.summary-card,
.checkout-form-card,
.contact-card,
.story-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.policy-content {
  max-width: 820px;
  margin-inline: auto;
  padding: 40px;
}

.policy-content h2 {
  margin: 32px 0 10px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 24px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.policy-content li {
  margin: 6px 0;
}

.summary-card {
  position: sticky;
  top: 105px;
}

.summary-card h3 {
  margin-top: 0;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21,18,15,.09);
}

.summary-row.total {
  font-size: 20px;
  border-bottom: 0;
  margin-bottom: 16px;
}

.summary-note {
  padding: 12px;
  border-radius: 16px;
  background: rgba(185,133,58,.10);
  color: var(--brown);
  font-size: 13px;
  margin-top: 12px;
}

.checkout-products {
  max-height: 350px;
  overflow: auto;
  padding-right: 4px;
}

.mini-product {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(21,18,15,.08);
}

.mini-product img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 16px;
}

.mini-product span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

.payment-note {
  display: none;
  margin: 14px 0 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(247,239,228,.64);
  color: var(--muted);
}

.payment-note.show {
  display: block;
}

.payment-note p {
  margin: 7px 0 0;
}

.contact-card {
  margin-bottom: 18px;
}

.contact-card h3 {
  margin-top: 0;
}

.contact-card p {
  color: var(--muted);
}

.story-card img {
  border-radius: 28px;
  margin-bottom: 20px;
}

.story-card p {
  color: var(--muted);
}

.values-list {
  display: grid;
  gap: 14px;
}

.value-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(247,239,228,.58);
}

.value-item strong {
  display: block;
  margin-bottom: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-13px) scale(1.055);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes cartBump {
  0% {
    transform: scale(1) rotate(0);
  }
  30% {
    transform: scale(1.12) rotate(-4deg);
  }
  60% {
    transform: scale(1.05) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* Refinements */
.logo img {
  filter: drop-shadow(0 8px 16px rgba(17,17,17,.08));
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brown), #2d2925);
}

.product-card,
.category-card,
.review-card,
.summary-card,
.checkout-form-card,
.contact-card,
.story-card,
.newsletter,
.detail-content,
.detail-image {
  border-color: rgba(21, 18, 15, .06);
}

.product-image-wrap::after {
  display: none;
}

.product-tag {
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer {
  border-top: 1px solid rgba(185, 133, 58, .22);
}

.product-grid .reveal:nth-child(1),
.trust-grid .reveal:nth-child(1) { transition-delay: .02s; }
.product-grid .reveal:nth-child(2),
.trust-grid .reveal:nth-child(2) { transition-delay: .08s; }
.product-grid .reveal:nth-child(3),
.trust-grid .reveal:nth-child(3) { transition-delay: .14s; }
.product-grid .reveal:nth-child(4),
.trust-grid .reveal:nth-child(4) { transition-delay: .2s; }
.product-grid .reveal:nth-child(5) { transition-delay: .26s; }


@media (max-width: 1040px) {
  .product-grid,
  .benefit-grid,
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter,
  .product-detail-grid,
  .cart-layout,
  .checkout-layout,
  .contact-layout,
  .about-grid,
  .pd-section-grid,
  .hot-sale-card {
    grid-template-columns: 1fr;
  }

  .detail-image,
  .summary-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .navbar {
    min-height: 108px;
  }

  .nav {
    top: 108px;
  }

  .stats-row,
  .category-grid,
  .product-grid,
  .benefit-grid,
  .reviews-grid,
  .trust-grid,
  .insta-grid,
  .brand-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 90px 1fr;
  }

  .cart-item img {
    width: 90px;
    height: 90px;
  }

  .cart-controls,
  .cart-item-total {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head > .btn {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .topbar {
    font-size: 12px;
  }

  .logo img {
    width: 130px;
    height: 88px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .hero-actions,
  .detail-actions,
  .newsletter form {
    flex-direction: column;
  }

  .stats-row,
  .category-grid,
  .benefit-grid,
  .reviews-grid,
  .trust-grid,
  .brand-values-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    border-radius: 0;
    box-shadow: none;
  }

  .product-card:hover {
    transform: none;
  }

  .product-image-wrap {
    padding: 0;
  }

  .product-image-wrap img {
    border-radius: 0;
    transform: none;
  }

  .product-card:hover .product-image-wrap img {
    transform: none;
  }

  .product-image-wrap::after {
    display: none;
  }

  .product-tag {
    left: 8px;
    top: 8px;
    max-width: calc(100% - 16px);
    padding: 5px 8px;
    font-size: 10px;
  }

  .discount-badge {
    left: 8px;
    right: auto;
    top: 8px;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 11px;
  }

  .product-tag + .discount-badge {
    top: 38px;
  }

  .product-quick-actions {
    bottom: 8px;
    gap: 8px;
  }

  .icon-action {
    width: 36px;
    height: 36px;
  }

  .icon-action svg {
    width: 16px;
    height: 16px;
  }

  .product-content {
    padding: 10px 0 0;
  }

  .product-category {
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: .02em;
  }

  .product-card h3 {
    font-family: "Jost", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .rating-row {
    gap: 4px;
    flex-wrap: wrap;
    font-size: 12px;
    margin: 7px 0 9px;
  }

  .stars {
    letter-spacing: 0;
  }

  .price-row {
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .price-row strong {
    font-size: 14px;
  }

  .price-row span {
    font-size: 12px;
  }

  .banner,
  .newsletter {
    padding: 28px;
    border-radius: 30px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
