
:root {
  --bg: #fff8fb;
  --bg-soft: #fdf2f7;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #fffafc;
  --surface-strong: #ffffff;
  --text: #5d4150;
  --text-soft: #8b6a79;
  --primary: #cf86a5;
  --primary-dark: #a95f7f;
  --primary-soft: #f3d7e4;
  --accent: #f7b7c9;
  --border: rgba(192, 136, 160, 0.22);
  --header-line: rgba(116, 78, 97, 0.16);
  --shadow: 0 20px 50px rgba(202, 144, 168, 0.18);
  --shadow-soft: 0 12px 30px rgba(197, 137, 161, 0.12);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 32px));
  --header-h: 84px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(250, 217, 230, 0.55), transparent 22%),
    radial-gradient(circle at bottom right, rgba(245, 204, 221, 0.42), transparent 22%),
    linear-gradient(180deg, #fffafd 0%, #fff7fb 40%, #fff4f8 100%);
  min-height: 100vh;
}

body.menu-open { overflow: hidden; }
body.loading-page { overflow: hidden; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 57;
  backdrop-filter: blur(4px);
  transition: opacity .28s ease;
  background:
    radial-gradient(
      circle 110px at var(--candle-x, calc(100vw - 42px)) var(--candle-y, 38px),
      rgba(255, 247, 223, 0.62) 0%,
      rgba(255, 235, 194, 0.34) 34%,
      rgba(255, 222, 169, 0.14) 58%,
      rgba(255, 222, 169, 0) 78%
    ),
    radial-gradient(
      circle 260px at var(--candle-x, calc(100vw - 42px)) var(--candle-y, 38px),
      rgba(255, 227, 188, 0.12) 0%,
      rgba(131, 85, 104, 0.14) 48%,
      rgba(62, 34, 46, 0.34) 78%,
      rgba(36, 19, 28, 0.52) 100%
    ),
    linear-gradient(
      180deg,
      rgba(77, 46, 60, 0.18) 0%,
      rgba(46, 25, 35, 0.46) 100%
    );
}

body.menu-open::before {
  opacity: 1;
}

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

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

.container { width: var(--container); margin: 0 auto; }

.page-shell { position: relative; overflow: clip; }
.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto auto 12% -8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(239, 201, 217, 0.22);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}
.page-shell::after {
  inset: 15% -7% auto auto;
  width: 220px;
  height: 220px;
  background: rgba(245, 208, 223, 0.24);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 250, 252, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--header-line);
  box-shadow: 0 8px 30px rgba(191, 142, 162, 0.08);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.brand-title {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand-subtitle {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-top: 3px;
}

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

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-toggle-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-toggle-link:hover,
.nav-toggle-link:focus-visible {
  background: rgba(239, 198, 215, 0.36);
  color: var(--primary-dark);
}

.nav-item.has-dropdown {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.nav-arrow {
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: transform .24s ease;
}
.has-dropdown.open .nav-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 270px;
  padding: 12px;
  background: rgba(255, 252, 253, 0.98);
  border: 1px solid rgba(202, 144, 168, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(170, 108, 133, 0.15);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  z-index: 55;
}
.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text);
  font-weight: 600;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(239, 198, 215, 0.34);
  color: var(--primary-dark);
}
@media (hover: hover) and (pointer: fine) {
  .nav-item.has-dropdown:hover .dropdown-menu,
  .nav-item.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  min-height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d891af 0%, #c76f94 100%);
  color: white;
  box-shadow: 0 14px 26px rgba(200, 107, 146, 0.24);
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.pill-btn:hover { transform: translateY(-1px); }

.mobile-toggle {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(199, 124, 154, 0.22);
  background: linear-gradient(180deg, rgba(255,251,253,1), rgba(251,237,243,1));
  box-shadow: var(--shadow-soft);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.candle-icon {
  position: relative;
  width: 26px;
  height: 32px;
}
.candle-wax {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 16px;
  height: 18px;
  margin-left: -8px;
  border-radius: 8px 8px 6px 6px;
  background: linear-gradient(180deg, #f7dce7 0%, #d994b0 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.35);
}
.candle-wick {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 2px;
  height: 8px;
  margin-left: -1px;
  background: #7b5766;
  border-radius: 999px;
  transform-origin: bottom center;
  transition: transform .28s ease;
}
.candle-flame {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 14px;
  height: 18px;
  margin-left: -7px;
  background: radial-gradient(circle at 50% 30%, #fff5c9 0%, #ffd79f 46%, #ffb76d 72%, rgba(255,183,109,0.15) 100%);
  clip-path: path("M 7 0 C 11 4, 14 8, 12 12 C 11 16, 9 18, 7 18 C 5 18, 3 16, 2 12 C 0 8, 3 4, 7 0 Z");
  filter: drop-shadow(0 0 10px rgba(255, 184, 90, 0.35));
  opacity: 0;
  transform: translateY(3px) scale(.84);
  transform-origin: center bottom;
  transition: opacity .24s ease, transform .24s ease;
}
.mobile-toggle.active .candle-flame,
body.menu-open .mobile-toggle .candle-flame {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: flicker 1.25s ease-in-out infinite;
}
.mobile-toggle.active .candle-wick,
body.menu-open .mobile-toggle .candle-wick {
  transform: rotate(8deg);
}
@keyframes flicker {
  0%, 100% { transform: translateY(0) scale(1) rotate(-2deg); }
  25% { transform: translateY(-1px) scale(1.04, .98) rotate(2deg); }
  50% { transform: translateY(0) scale(.98, 1.03) rotate(-1deg); }
  75% { transform: translateY(-1px) scale(1.02, .99) rotate(1deg); }
}

.mobile-panel {
  position: fixed;
  top: calc(var(--header-h) + 8px);
  left: 16px;
  right: 16px;
  max-height: calc(100vh - var(--header-h) - 32px);
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdfd 0%, #fff7fa 100%);
  border: 1px solid rgba(202, 144, 168, 0.26);
  box-shadow:
    0 30px 60px rgba(89, 50, 65, 0.22),
    0 12px 28px rgba(178, 116, 141, 0.12);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(.985);
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index: 62;
}

body.menu-open .mobile-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.mobile-nav-link, .mobile-subtoggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(219, 180, 196, 0.18);
  font-weight: 700;
}
.mobile-submenu {
  display: grid;
  gap: 6px;
  padding: 8px 0 0;
}
.mobile-submenu a {
  display: block;
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(246, 226, 235, 0.5);
  font-weight: 600;
  color: var(--text);
}
.mobile-submenu[hidden] { display: none; }

.hero {
  position: relative;
  padding: 74px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 36px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 216, 228, 0.58);
  border: 1px solid rgba(204, 154, 177, 0.18);
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  line-height: .98;
  margin: 0 0 18px;
}
.hero p {
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 620px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(199, 123, 153, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 700;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,246,250,0.95));
  border: 1px solid rgba(208, 159, 180, 0.18);
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 18px;
}
.hero-card img {
  border-radius: 26px;
}
.hero-note {
  display: grid;
  gap: 6px;
  padding: 18px 6px 6px;
}
.hero-note strong { font-size: 1.05rem; }
.hero-note span { color: var(--text-soft); }

.section {
  padding: 34px 0 78px;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.section-head p {
  margin: 0;
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.category-card,
.product-card,
.info-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,249,251,0.95));
  border: 1px solid rgba(211, 169, 188, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.category-card {
  padding: 24px;
  display: grid;
  gap: 14px;
  min-height: 240px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-emoji {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(244, 216, 228, 0.65);
  font-size: 1.8rem;
}
.category-card h3 { margin: 0; font-size: 1.2rem; }
.category-card p { margin: 0; color: var(--text-soft); line-height: 1.65; }
.category-card .arrow-link {
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  padding: 24px;
}
.info-card h3 { margin-top: 0; }
.info-card p { color: var(--text-soft); line-height: 1.65; margin-bottom: 0; }

.collection-hero {
  padding: 58px 0 24px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.collection-heading {
  max-width: 780px;
}
.collection-heading h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin: 0 0 14px;
}
.collection-heading p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.product-card {
  overflow: hidden;
}
.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-body {
  padding: 22px;
}
.product-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 217, 228, 0.7);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 14px;
}
.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}
.product-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
}
.product-footer {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.product-footer strong {
  font-size: 1.35rem;
  color: var(--primary-dark);
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #d488a6, #bd688c);
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(196, 111, 147, 0.24);
}
.wa-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}
.wa-icon svg { width: 100%; height: 100%; }

.footer {
  padding: 32px 0 40px;
}
.footer-card {
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
.footer-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #d488a6 0%, #b95f85 100%);
  box-shadow: 0 18px 32px rgba(177, 92, 124, 0.28);
  z-index: 65;
  transition: transform .22s ease, box-shadow .22s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 36px rgba(177, 92, 124, 0.32);
}
.floating-whatsapp .wa-icon { width: 28px; height: 28px; }

.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 245, 250, 0.65);
  backdrop-filter: blur(12px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s ease, visibility .26s ease;
}
.page-loader.active,
body.loading-page .page-loader {
  opacity: 1;
  visibility: visible;
}
.loader-mark {
  width: 132px;
  height: 132px;
  border-radius: 36px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(202,144,168,0.22);
  box-shadow: 0 20px 46px rgba(182, 115, 141, 0.16);
  display: grid;
  place-items: center;
  padding: 20px;
  animation: pulse 1.35s ease-in-out infinite;
}
.loader-mark img {
  width: 78px;
  height: 78px;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 16px 36px rgba(182,115,141,0.16); }
  50% { transform: scale(1.06); box-shadow: 0 24px 46px rgba(182,115,141,0.24); }
}

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

@media (max-width: 820px) {
  :root { --header-h: 76px; }
  .main-nav,
  .header-actions .pill-btn {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .hero { padding-top: 42px; }
  .hero-grid { grid-template-columns: 1fr; }
  .category-grid,
  .feature-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .nav-item.has-dropdown::after { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(100vw - 22px, 100%); }
  .brand-title { font-size: 1rem; }
  .brand-subtitle { display: none; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .pill-btn, .ghost-btn, .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
  .product-footer {
    align-items: stretch;
  }
}
body.menu-open .floating-whatsapp {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(.96);
}

body.menu-open .site-header {
  box-shadow: 0 10px 28px rgba(83, 48, 63, 0.16);
}

@media (max-width: 820px) {
  body::before {
    z-index: 57;
  }
}