:root {
  --bg: #f8f1ea;
  --bg-soft: #fdf9f4;
  --surface: rgba(255, 250, 245, 0.82);
  --surface-strong: #fffaf4;
  --text: #352920;
  --muted: #766557;
  --line: rgba(83, 59, 38, 0.12);
  --gold: #b8996d;
  --gold-soft: #d5be97;
  --shadow: 0 24px 60px rgba(87, 61, 37, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #f9f2eb 0%, #f7eee6 42%, #f6f1eb 100%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 72px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 16px;
  min-height: 156px;
  padding: 20px 28px 20px 18px;
  background: rgba(255, 248, 241, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(97, 74, 53, 0.08);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  min-width: 420px;
  min-height: 128px;
  padding: 0;
}

.brand-mark img {
  width: auto;
  height: 128px;
  max-width: 460px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.cart-toggle,
.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #c9ab82, #b38a60);
  color: #fffaf5;
  box-shadow: 0 12px 26px rgba(170, 134, 91, 0.25);
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero,
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(4.1rem, 8vw, 6.7rem);
  line-height: 0.92;
  font-weight: 600;
}

.hero-subtitle,
.section-heading h2,
.ritual-copy h2,
.editorial-copy h2,
.final-cta h2,
.cart-header h2 {
  margin: 0 0 20px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 600;
}

.hero-subtitle {
  margin-top: 18px;
  color: var(--muted);
  max-width: 12ch;
}

.hero-text,
.brand-text p,
.editorial-copy p,
.final-cta p,
.site-footer p,
.product-description,
.ritual-steps p,
.checkout-note {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 14px;
}

.hero-text {
  max-width: 52ch;
  margin: 24px 0 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
}

.button:hover,
.cart-toggle:hover,
.cart-close:hover,
.qty-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #c9ab82, #b89168);
  color: #fffbf6;
  box-shadow: 0 18px 34px rgba(171, 132, 88, 0.22);
}

.button-secondary {
  background: rgba(255, 250, 245, 0.8);
  color: var(--text);
  border: 1px solid var(--line);
}

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

.visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.visual-main {
  inset: 0 62px 68px 0;
}

.visual-accent {
  right: 0;
  bottom: 0;
  width: 260px;
  height: 240px;
  background: linear-gradient(180deg, rgba(248, 237, 226, 0.96), rgba(232, 212, 188, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.accent-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px;
  color: #5d4634;
}

.accent-copy span {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(93, 70, 52, 0.7);
}

.accent-copy strong {
  margin-top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  display: grid;
  gap: 12px;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 34px;
}

.brand-text {
  padding: 34px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.brand-points {
  display: grid;
  gap: 24px;
}

.brand-points article,
.benefit-card,
.product-card {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.brand-points article {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.brand-points span {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.brand-points h3,
.product-card h3,
.ritual-steps h3 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.product-card {
  overflow: hidden;
}

.product-card-featured {
  grid-column: span 3;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(244, 232, 219, 0.9));
  border: 1px solid rgba(184, 145, 104, 0.24);
}

.product-featured-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  min-height: 560px;
}

.product-image {
  aspect-ratio: 0.92;
}

.product-image-featured {
  aspect-ratio: auto;
  min-height: 100%;
  padding: 28px 18px 28px 28px;
  border-right: 1px solid rgba(184, 145, 104, 0.12);
}

.product-image-featured img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-content {
  padding: 30px;
}

.product-content-featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
}

.product-featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-type {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(184, 145, 104, 0.12);
  color: #886746;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0;
  color: var(--muted);
}

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

.product-note,
.combo-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-note {
  margin: -8px 0 22px;
}

.product-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.product-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.combo-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0 24px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(184, 145, 104, 0.16);
  border-radius: 24px;
}

.combo-pricing div {
  display: grid;
  gap: 8px;
}

.combo-strike {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.combo-price {
  font-size: 1.4rem;
}

.combo-save {
  color: #8f6c46;
  font-weight: 700;
}

.product-meta-featured {
  margin: 0 0 24px;
}

.ritual-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.ritual-copy,
.benefit-card,
.editorial,
.final-cta {
  padding: 44px;
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.ritual-steps {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.ritual-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.ritual-steps span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 171, 130, 0.18), rgba(184, 145, 104, 0.28));
  color: #8f6c46;
  font-weight: 700;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.94), rgba(245, 232, 216, 0.86)),
    url("assets/images/benefits-bg.png") center/cover;
}

.benefit-card p {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
}

.benefit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
}

.benefit-card li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
}

.editorial {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

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

.editorial-large,
.editorial-small {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.editorial-large {
  inset: 0 90px 0 0;
}

.editorial-small {
  width: 250px;
  height: 300px;
  right: 0;
  bottom: 36px;
}

.final-cta {
  text-align: center;
  margin-top: 120px;
}

.final-cta p {
  max-width: 640px;
  margin: 18px auto 16px;
}

.contact-whatsapp {
  display: grid;
  gap: 6px;
  max-width: 420px;
  margin: 36px auto 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 238, 228, 0.92));
  border: 1px solid rgba(201, 171, 130, 0.28);
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(120, 88, 58, 0.1);
}

.contact-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.contact-whatsapp strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.contact-whatsapp small {
  color: var(--muted);
  font-size: 0.95rem;
}

.social-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links-contact {
  justify-content: center;
  margin-top: 28px;
}

.social-links a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.7);
  color: var(--muted);
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.social-links a:hover,
.footer-links a:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 145, 104, 0.45);
  color: var(--text);
  background: rgba(255, 248, 241, 0.92);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer-copy {
  margin: 0;
  color: #8a7b6d;
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-legal-links a {
  color: #8a7b6d;
  font-size: 13px;
  transition: color 220ms ease;
}

.footer-legal-links a:hover {
  color: var(--text);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(184, 145, 104, 0.36);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.92);
  color: var(--text);
  box-shadow: 0 16px 34px rgba(109, 83, 58, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.floating-whatsapp span {
  color: #6f573f;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100vh;
  padding: 28px;
  background: rgba(255, 249, 242, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: -20px 0 50px rgba(67, 49, 33, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

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

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(36, 26, 18, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.cart-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.cart-header,
.cart-summary,
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-close,
.qty-button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.cart-close {
  width: 42px;
  height: 42px;
  background: rgba(204, 177, 147, 0.18);
  color: var(--text);
  font-size: 1.8rem;
}

.cart-body {
  flex: 1;
  margin: 28px 0;
  overflow-y: auto;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
}

.cart-item h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.cart-item p,
.cart-empty,
.cart-item span {
  margin: 0;
  color: var(--muted);
}

.cart-empty {
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 22px;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.qty-button {
  width: 30px;
  height: 30px;
  background: rgba(201, 171, 130, 0.18);
  color: var(--text);
}

.cart-footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cart-summary {
  margin-bottom: 18px;
  font-size: 1rem;
}

.checkout-button {
  width: 100%;
}

.checkout-note {
  margin-top: 12px;
  font-size: 0.92rem;
  text-align: center;
}

.checkout-trust {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.legal-body {
  min-height: 100vh;
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #f9f2eb 0%, #f7eee6 42%, #f6f1eb 100%);
}

.legal-shell {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto;
  padding: 80px 0;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
}

.legal-card {
  padding: 80px;
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.legal-title {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.98;
  font-weight: 600;
}

.legal-copy {
  display: grid;
  gap: 16px;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 132px;
    padding: 18px 22px;
  }

  .brand-mark {
    min-width: 320px;
    min-height: 96px;
  }

  .brand-mark img {
    height: 92px;
    max-width: 340px;
  }

  .hero,
  .brand-grid,
  .ritual-layout,
  .editorial {
    grid-template-columns: 1fr;
  }

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

  .product-card-featured {
    grid-column: span 2;
  }

  .product-featured-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-image-featured {
    min-height: 360px;
    padding: 28px 28px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 145, 104, 0.12);
  }

  .combo-pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .editorial-collage {
    min-height: 560px;
  }

  .site-footer {
    align-items: center;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    min-height: 0;
    padding: 18px 18px 16px;
    border-radius: 28px;
  }

  .brand-mark {
    justify-content: center;
    min-width: 220px;
    min-height: 60px;
  }

  .brand-mark img {
    height: 56px;
    max-width: 240px;
    object-position: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero,
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: 3.6rem;
  }

  .hero-subtitle,
  .section-heading h2,
  .ritual-copy h2,
  .editorial-copy h2,
  .final-cta h2 {
    font-size: 2.5rem;
  }

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

  .final-cta {
    margin-top: 80px;
  }

  .product-card-featured {
    grid-column: auto;
  }

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

  .visual-main,
  .editorial-large {
    inset: 0 30px 60px 0;
  }

  .visual-accent {
    width: 190px;
    height: 180px;
  }

  .editorial-small {
    width: 170px;
    height: 210px;
    bottom: 18px;
  }

  .ritual-copy,
  .benefit-card,
  .editorial,
  .final-cta,
  .brand-text,
  .brand-points article,
  .product-content {
    padding: 28px;
  }

  .product-content-featured {
    padding: 28px;
  }

  .product-featured-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-image-featured {
    min-height: 280px;
    padding: 22px 22px 6px;
  }

  .cart-drawer {
    padding: 20px;
  }

  .site-footer {
    padding-bottom: 86px;
  }

  .footer-links,
  .social-links-contact {
    justify-content: center;
  }

  .contact-whatsapp strong {
    font-size: 2rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 16px;
  }

  .legal-shell {
    width: min(calc(100% - 20px), 980px);
    padding: 60px 0;
  }

  .legal-card {
    padding: 36px 28px;
  }
}
