:root {
  --brand: #ff006a;
  --brand-600: #d40058;
  --brand-50: #ffe6f2;
  --navy: #3b0a2a;
  --ink: #4a1238;
  --text: #5c2a46;
  --muted: #9a6a82;
  --line: #f7d5e6;
  --bg: #fff5fa;
  --green: #18a058;
  --gold: #ffc93c;
  --sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --head: Nunito, "Plus Jakarta Sans", sans-serif;
  --max: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: #fff; line-height: 1.5; font-size: 14px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.ico { width: 18px; height: 18px; display: block; flex-shrink: 0; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
h1, h2, h3 { font-family: var(--head); color: var(--navy); font-weight: 800; letter-spacing: -.02em; }

.header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 1px 0 var(--line); }
.head-top { display: flex; align-items: center; gap: 22px; min-height: 76px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-logo--header {
  height: 64px;
  width: auto;
  max-width: 260px;
}
.brand-logo--footer {
  height: 72px;
  width: auto;
  max-width: 240px;
  background: #fff;
  border-radius: 14px;
  padding: 6px 10px;
}
.brand-logo--page {
  height: 88px;
  width: auto;
  max-width: 320px;
  margin: 8px 0 12px;
}
.brand-logo--strip {
  height: 56px;
  width: auto;
  max-width: 240px;
}
.about-logo { margin: 4px 0 8px; }

.subnav { flex: 1; min-width: 0; }
.subnav-row { display: flex; align-items: center; gap: 18px; font-weight: 700; font-size: 14px; color: var(--navy); }
.subnav-row > a, .drop > a { display: inline-flex; align-items: center; gap: 5px; padding: 10px 0; white-space: nowrap; }
.subnav-row i {
  display: inline-block; width: 0; height: 0; margin-top: 2px;
  border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid #64748b;
}
.drop { position: relative; }
.drop .panel {
  display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 16px 40px rgba(26,39,68,.12); padding: 14px 16px; z-index: 60;
}
.drop:hover .panel, .drop:focus-within .panel { display: grid; gap: 7px; }
.drop .panel p { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.drop .panel a { font-size: 13.5px; font-weight: 600; padding: 3px 0; }
.drop .panel a:hover, .subnav-row > a:hover, .drop > a:hover { color: var(--brand); }
.panel-all { color: var(--brand) !important; }

.utils { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.head-phone {
  display: inline-flex; align-items: center; gap: 8px; color: var(--navy);
  font-weight: 800; font-size: 13.5px; padding: 4px 4px 4px 0;
}
.head-phone .ph {
  width: 36px; height: 36px; border-radius: 50%; background: var(--brand-50); color: var(--brand);
  display: grid; place-items: center;
}
.head-phone .ico { width: 18px; height: 18px; }
.head-wa {
  display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff;
  font-weight: 800; font-size: 13px; border-radius: 10px; padding: 10px 14px;
}
.head-wa .ico { width: 18px; height: 18px; }
.head-wa:hover { background: #128a49; }
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); background: #fff; border-radius: 10px; flex-direction: column; justify-content: center; gap: 5px; padding: 10px; }
.burger span { display: block; height: 2px; background: var(--navy); }
.mobile-nav { display: none; }
.mobile-nav.open { display: grid; padding: 8px 20px 16px; gap: 12px; border-top: 1px solid var(--line); }

.hero { padding: 28px 0 8px; background: #fff; }
.hero-split {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 28px; align-items: center;
  background: linear-gradient(120deg, #ffe6f2 0%, #fff5fa 42%, #ffd0e6 100%);
  border-radius: 28px; overflow: hidden; min-height: 360px;
}
.hero-copy { padding: 40px 44px; }
.kicker {
  display: inline-block; background: #fff; color: var(--brand); font-weight: 800;
  font-size: 12px; letter-spacing: .04em; border-radius: 999px; padding: 6px 12px; margin-bottom: 16px;
}
.hero-copy h1 {
  font-size: clamp(2rem, 3.6vw, 3rem); color: var(--brand); line-height: 1.08; font-weight: 900;
}
.hero-copy h1 em { display: block; color: var(--navy); font-style: normal; }
.hero-sub { font-size: 16px; font-weight: 600; color: var(--text); margin: 16px 0 22px; max-width: 420px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-wa, .btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; border-radius: 12px; padding: 12px 18px;
}
.btn-wa .ico, .btn-call .ico { width: 18px; height: 18px; }
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: #128a49; }
.btn-call { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.hero-photo { min-height: 360px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

.trust-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
.trust-cards article, .trust-wa {
  display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px;
  box-shadow: 0 6px 18px rgba(26,39,68,.05);
}
.trust-cards img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; }
.trust-cards b { display: block; color: var(--navy); font-size: 13.5px; font-weight: 800; }
.trust-cards p { color: var(--muted); font-size: 12px; margin-top: 2px; }

.cat-strip { padding-top: 48px; }
.cat-icons { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
.cat-ico { text-align: center; }
.cat-ico b { display: block; font-size: 12.5px; font-weight: 700; color: var(--navy); }
.ico-pic {
  width: 110px; height: 110px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 8px; display: block; background: var(--brand-50);
  border: 3px solid #fff; box-shadow: 0 6px 16px rgba(26,39,68,.1);
}
.ico-pic img { width: 100%; height: 100%; object-fit: cover; }

.banner-track { grid-auto-columns: 250px; }
.occ-banner {
  position: relative; height: 168px; border-radius: 16px; overflow: hidden;
  display: flex; align-items: flex-end; scroll-snap-align: start;
}
.occ-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.occ-banner:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(26,39,68,.78)); }
.occ-banner span { position: relative; z-index: 1; color: #fff; font-weight: 800; font-family: var(--head); padding: 14px 16px; font-size: 16px; }

.hd { font-size: 1.7rem; }
.hd span { position: relative; display: inline-block; }
.hd span:after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 4px;
  background: var(--brand); border-radius: 4px;
}
.sub { color: var(--muted); margin: 6px 0 24px; font-size: 14.5px; }

.rail-sec { padding: 48px 0 12px; }
.sec-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-bottom: 22px; }
.sec-tools { display: flex; align-items: center; gap: 8px; }
.view-all { color: var(--brand); font-weight: 700; font-size: 14px; margin-right: 6px; }
.arr {
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--brand);
  cursor: pointer; color: #fff; padding: 0; line-height: 0;
  display: grid; place-items: center;
  box-shadow: 0 10px 22px rgba(255, 0, 106, .32);
  transition: transform .15s ease, background .15s ease;
}
.arr .ico { width: 16px; height: 16px; display: block; margin: 0; }
.arr:hover { background: var(--brand-600); transform: scale(1.07); }
.arr.sq { border-radius: 12px; }

.rail-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 214px; gap: 16px;
  overflow-x: auto; scrollbar-width: none; padding: 4px 2px 18px; scroll-snap-type: x mandatory;
}
.quote-track { grid-auto-columns: calc((100% - 54px) / 4); gap: 18px; }
.rail-track::-webkit-scrollbar { display: none; }

.card {
  display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(26,39,68,.1); scroll-snap-align: start; min-width: 0;
}
.card-media { position: relative; }
.card-pic { display: block; height: 168px; background: #eef2f7; }
.card-pic img { width: 100%; height: 100%; object-fit: cover; }
.fav {
  position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border: 0;
  border-radius: 50%; background: #fff; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(26,39,68,.16); z-index: 2;
}
.fav svg { width: 18px; height: 18px; fill: none; stroke: var(--green); stroke-width: 1.8; }
.fav.on svg { fill: var(--brand); stroke: var(--brand); }
.card-body { display: grid; gap: 8px; padding: 12px 12px 12px; }
.card-title {
  font-weight: 800; font-size: 15px; line-height: 1.3; color: #111827;
  min-height: 40px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.rate {
  display: inline-flex; align-items: center; gap: 3px; background: var(--green); color: #fff;
  font-weight: 800; font-size: 11.5px; border-radius: 4px; padding: 2px 6px;
}
.count { color: var(--muted); font-weight: 600; }
.verified {
  margin-left: auto; display: inline-flex; align-items: center; gap: 4px;
  background: #e8f8ee; color: var(--green); font-weight: 700; font-size: 11px;
  border-radius: 999px; padding: 3px 8px;
}
.verified:before { content: "✓"; font-weight: 900; }
.card-loc {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 12.5px; color: #4b5563; font-weight: 600;
}
.card-loc .area { display: inline-flex; align-items: center; gap: 5px; min-width: 0; }
.card-loc .area:before { content: ""; width: 12px; height: 12px; flex-shrink: 0; background: var(--green); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.open { color: var(--green); font-weight: 800; white-space: nowrap; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card-tags span {
  border: 1px solid #e5e7eb; color: #6b7280; font-size: 11px; font-weight: 600;
  border-radius: 999px; padding: 4px 9px; background: #fff;
}
.card-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 13.5px;
  border-radius: 8px; padding: 11px 12px; margin-top: 2px;
}
.card-cta .ico { width: 16px; height: 16px; }
.card-cta:hover { background: var(--brand-600); }

.theme-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.theme-card { text-align: center; }
.theme-art {
  display: block; aspect-ratio: 1; height: auto; border-radius: 22px; margin-bottom: 10px;
  background: var(--brand-50); overflow: hidden;
}
.theme-art img { width: 100%; height: 100%; object-fit: cover; }
.theme-card b { font-size: 13.5px; font-weight: 700; color: var(--navy); }

.starline {
  display: flex; align-items: center; gap: 3px; color: var(--gold); font-size: 14px; margin-bottom: 6px;
}
.starline .ico { width: 14px; height: 14px; }
.starline small { color: var(--muted); letter-spacing: 0; font-weight: 600; margin-left: 6px; }
.rev-track { grid-auto-columns: calc((100% - 36px) / 3); gap: 18px; }
.rev {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 22px 20px 18px; box-shadow: 0 10px 28px rgba(255,0,106,.08); overflow: hidden;
}
.rev-mark {
  position: absolute; top: 6px; right: 16px; font-family: var(--head); font-size: 64px;
  line-height: 1; color: var(--brand-50); font-weight: 900;
}
.rev-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 10px; }
.rev-stars .ico { width: 14px; height: 14px; }
.rev-text { font-size: 14.5px; color: var(--ink); min-height: 72px; line-height: 1.55; position: relative; z-index: 1; }
.who { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.who i {
  width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-style: normal; font-weight: 800; font-size: 12px;
}
.who small { display: flex; align-items: center; gap: 4px; color: var(--muted); }
.who small .ico { width: 12px; height: 12px; color: var(--brand); }

.seo { padding: 56px 0 20px; color: var(--muted); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 24px; }
.why {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 16px;
  color: var(--navy); font-size: 13.5px; display: grid; gap: 12px; min-height: 128px;
  box-shadow: 0 8px 20px rgba(255,0,106,.06);
}
.why-ico {
  width: 40px; height: 40px; border-radius: 12px; background: var(--brand-50); color: var(--brand);
  display: grid; place-items: center;
}
.why-ico .ico { width: 20px; height: 20px; }
.why:hover { border-color: #ffb3d2; transform: translateY(-3px); box-shadow: 0 14px 28px rgba(255,0,106,.12); }
.rev:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(255,0,106,.12); }
.why, .rev { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }

.faq { background: var(--bg); padding: 56px 0 72px; margin-top: 28px; }
.faq-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 40px; align-items: start; }
.faq-intro .sub { margin-bottom: 18px; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0; margin-bottom: 10px;
  box-shadow: 0 6px 16px rgba(255,0,106,.05);
}
.faq-list summary {
  font-weight: 800; cursor: pointer; color: var(--navy); list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { content: ""; }
.faq-list summary:after {
  content: "+"; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-50);
  color: var(--brand); font-size: 18px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0;
}
.faq-list details[open] summary:after { content: "–"; background: var(--brand); color: #fff; }
.faq-list details p { padding: 0 18px 16px; color: var(--muted); margin: 0; }
.faq-list details[open] { border-color: #ffb3d2; }
.faq-intro .btn { margin-top: 4px; }

.promo { margin: 32px 0; }
.promo-flash {
  background: linear-gradient(105deg, #ff006a 0%, #ff4d94 42%, #ffc93c 160%);
  overflow: hidden;
}
.promo-flash-row {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  min-height: 220px; padding: 22px 0 18px; gap: 10px;
  grid-template-areas: "copy art" "cta cta";
}
.promo-flash-copy { color: #fff; position: relative; z-index: 2; grid-area: copy; }
.promo-flash-art { grid-area: art; }
.btn.flash-btn {
  grid-area: cta; justify-self: center; align-self: center;
  background: #111; color: #fff; border: 0;
  padding: 8px 16px; font-size: 13px; border-radius: 10px; gap: 6px;
}
.btn.flash-btn .ico { width: 15px; height: 15px; }
.btn.flash-btn:hover { background: #000; }
.flash-pill {
  display: inline-block; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 800;
}
.promo-flash h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 12px 0 14px; line-height: 1.15; }
.flash-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; }
.flash-chips li {
  background: #fff; color: var(--brand); font-size: 12px; font-weight: 800;
  border-radius: 999px; padding: 6px 10px;
}
.promo-flash-art { position: relative; height: 200px; }
.promo-flash-art .blob {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.22);
}
.promo-flash-art .b1 { width: 90px; height: 90px; right: 8%; top: -10px; }
.promo-flash-art .b2 { width: 54px; height: 54px; right: 38%; bottom: 8px; background: #ffc93c; }
.promo-flash-art .b3 { width: 28px; height: 28px; right: 2%; bottom: 28px; background: #fff; }
.promo-flash-art .shot {
  position: absolute; object-fit: cover; border: 4px solid #fff;
  box-shadow: 0 12px 28px rgba(59,10,42,.28);
}
.promo-flash-art .s1 { width: 150px; height: 150px; border-radius: 50%; right: 18%; top: 18px; z-index: 2; }
.promo-flash-art .s2 { width: 108px; height: 108px; border-radius: 22px; right: 0; top: 8px; transform: rotate(8deg); }
.promo-flash-art .s3 { width: 88px; height: 88px; border-radius: 18px; right: 42%; bottom: 4px; transform: rotate(-10deg); }

.promo-kids { background: #fff5fa; }
.promo-kids-row {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center;
  padding: 18px 0 22px; min-height: 220px;
}
.kids-photos { display: flex; justify-content: center; align-items: flex-end; gap: 0; height: 200px; }
.kids-photos figure {
  width: 132px; margin: 0 -12px; text-align: center; z-index: 1;
}
.kids-photos figure.mid { z-index: 3; width: 156px; margin-bottom: 8px; }
.kids-photos img {
  width: 100%; height: 148px; object-fit: cover; border-radius: 18px;
  border: 4px solid #fff; box-shadow: 0 14px 30px rgba(255,0,106,.18);
}
.kids-photos .mid img { height: 168px; border-radius: 24px; }
.kids-photos figure:first-child { transform: rotate(-8deg); }
.kids-photos figure:last-child { transform: rotate(8deg); }
.kids-photos figcaption { margin-top: 8px; font-size: 12px; font-weight: 800; color: var(--navy); }
.kids-badge {
  display: inline-block; background: var(--brand); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; border-radius: 999px; padding: 5px 11px;
}
.kids-copy h2 { font-size: clamp(1.45rem, 2.4vw, 1.95rem); margin: 10px 0 8px; }
.kids-copy p { color: var(--muted); font-weight: 600; margin-bottom: 14px; }

.promo-wed {
  background: var(--navy);
  background-image: radial-gradient(circle at 88% 20%, rgba(255,0,106,.45), transparent 42%);
}
.promo-wed-row {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: center;
  min-height: 220px; padding: 22px 0;
}
.wed-frame { position: relative; height: 180px; }
.wed-frame img {
  position: absolute; object-fit: cover; border-radius: 18px; border: 3px solid #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,.28);
}
.wed-frame img:first-child { width: 58%; height: 160px; left: 0; top: 18px; transform: rotate(-6deg); }
.wed-frame img:last-child { width: 58%; height: 160px; right: 0; top: 0; transform: rotate(7deg); }
.wed-copy { color: #fff; }
.wed-copy > p:first-child {
  color: var(--gold); font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}
.wed-copy h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 8px 0 8px; }
.wed-copy p { color: #f3c2d8; font-weight: 600; }
.wed-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.wed-actions .btn { background: var(--brand); color: #fff; }
.wed-actions .ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }

.page-pad { padding: 28px 0 72px; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.crumbs span { margin: 0 6px; color: #c5cad3; }
.crumbs a:hover { color: var(--brand); }

.pdp { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.gallery { display: grid; grid-template-columns: 72px 1fr; gap: 12px; }
.thumbs { display: grid; gap: 8px; align-content: start; }
.thumb { border: 2px solid transparent; border-radius: 10px; overflow: hidden; padding: 0; background: #fff; cursor: pointer; height: 72px; }
.thumb.on { border-color: var(--brand); }
.thumb img { width: 72px; height: 72px; object-fit: cover; display: block; }
.stage { position: relative; background: #f6f7fb; border-radius: 16px; overflow: hidden; min-height: 420px; }
.main-pic { width: 100%; height: 480px; object-fit: cover; display: block; }
.g-arr {
  position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.92); cursor: pointer; color: var(--navy); padding: 0;
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.g-arr .ico { width: 14px; height: 14px; display: block; }
.g-arr.prev { left: 10px; }
.g-arr.next { right: 10px; }
.dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 6px; }
.dots i { width: 7px; height: 7px; border-radius: 50%; background: #fff; opacity: .45; display: block; }
.dots i.on { opacity: 1; background: var(--brand); }
.similar {
  position: absolute; right: 12px; bottom: 12px; background: #fff; border-radius: 999px;
  padding: 7px 12px; font-size: 12px; font-weight: 700; color: var(--navy); box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.buy h1 { font-size: 1.85rem; line-height: 1.2; margin: 0 0 10px; }
.pdp-rate { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pdp-rate a { color: var(--muted); font-weight: 600; text-decoration: underline; }
.urgency {
  background: #fff6e5; color: #b45309; font-weight: 700; font-size: 13px;
  border-radius: 8px; padding: 9px 12px; margin-bottom: 14px;
}
.quote-box { padding: 4px 0 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.quote-box b { display: block; font-size: 1.7rem; color: var(--navy); }
.quote-box small { display: block; margin-top: 4px; color: var(--muted); }
.serve-card, .more-cat, .trust-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px;
}
.serve-card { display: flex; align-items: center; gap: 10px; }
.serve-card svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }
.serve-card a { margin-left: auto; color: var(--brand); font-weight: 700; }
.more-cat { display: block; text-align: center; font-weight: 700; color: var(--navy); }
.trust-card { display: flex; gap: 12px; align-items: flex-start; background: #fff8e8; border-color: #f3e4b8; }
.medal { width: 28px; height: 28px; border-radius: 50%; background: #f5b301; color: #fff; display: grid; place-items: center; font-weight: 800; flex-shrink: 0; }
.trust-card b { display: block; color: var(--navy); }
.trust-card p { color: var(--muted); font-size: 13px; margin-top: 2px; }

.tabs {
  display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin: 36px 0 0;
  overflow-x: auto;
}
.tab {
  border: 0; background: none; padding: 12px 16px; font-weight: 800; color: var(--muted);
  cursor: pointer; white-space: nowrap; border-radius: 12px 12px 0 0;
}
.tab small {
  display: inline-grid; place-items: center; min-width: 20px; height: 20px; margin-left: 6px;
  border-radius: 999px; background: var(--brand-50); color: var(--brand); font-size: 11px;
}
.tab.on { color: var(--navy); background: #fff; box-shadow: inset 0 -3px 0 var(--brand); }
.tab-panel { display: none; }
.tab-panel.on {
  display: block; background: #fff; border: 1px solid var(--line); border-top: 0;
  border-radius: 0 16px 16px 16px; padding: 22px;
  box-shadow: 0 10px 28px rgba(255,0,106,.06);
}
.pdp-info { margin-top: 28px; scroll-margin-top: 88px; }
.inc-count { font-weight: 800; color: var(--muted); margin-bottom: 12px; font-size: 13px; }
.inc-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: start; }
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; margin: 0; padding: 0; }
.inc-item {
  display: flex; gap: 10px; align-items: flex-start; background: var(--bg);
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px;
  color: var(--navy); font-weight: 700; font-size: 13.5px;
}
.inc-ico { color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.inc-ico .ico { width: 18px; height: 18px; }
.about-card {
  background: linear-gradient(180deg, #fff5fa, #fff); border: 1px solid var(--line);
  border-radius: 18px; padding: 20px 18px;
}
.about-card h3 { font-size: 1.15rem; margin: 4px 0 10px; }
.about-card p { color: var(--muted); }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.care-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 16px;
  display: grid; gap: 8px;
}
.care-card b { color: var(--navy); }
.care-card p { color: var(--muted); font-size: 13.5px; }
.rev-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 22px; align-items: start; }
.rev-form {
  background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: 18px;
  display: grid; gap: 10px;
}
.rev-form h3 { margin: 0; }
.rev-form > p { color: var(--muted); font-size: 13.5px; }
.rev-form input, .rev-form textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; background: #fff;
  font: inherit;
}
.rev-form .btn { justify-content: center; }
.star-pick { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }
.star-pick input { display: none; }
.star-pick label { color: #ead0dc; cursor: pointer; display: grid; }
.star-pick label .ico { width: 26px; height: 26px; }
.star-pick label:hover,
.star-pick label:hover ~ label,
.star-pick input:checked ~ label { color: var(--gold); }
.rev-ok {
  background: #e8f8ee; color: #0f7a3f; font-weight: 700; border-radius: 12px;
  padding: 10px 14px; margin-bottom: 14px;
}
.rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pdp-info .rev-grid { grid-template-columns: 1fr; }

.brand-strip { display: flex; justify-content: space-between; gap: 20px; background: var(--bg); border-radius: 16px; padding: 20px 24px; margin: 28px 0; align-items: center; }
.brand-stats { display: flex; gap: 28px; }
.brand-stats span { display: grid; font-size: 12px; color: var(--muted); }
.brand-stats b { font-size: 16px; color: var(--navy); }

.bookbar {
  position: sticky; bottom: 0; z-index: 35; background: #fff;
  border-top: 1px solid var(--line); padding: 10px 0; box-shadow: 0 -8px 24px rgba(26,39,68,.06);
}
.bookbar-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.bookbar-pills { display: flex; gap: 10px; flex-wrap: wrap; font-size: 12px; color: var(--muted); font-weight: 600; }
.bookbar-pills span { background: var(--bg); border-radius: 999px; padding: 6px 10px; }
.bookbar-btns { display: flex; gap: 8px; }
.pdp-page .wa { bottom: 84px; }
.pdp-page .page-pad { padding-bottom: 28px; }

.eyebrow { color: var(--brand); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.lede { color: var(--muted); max-width: 640px; margin: 8px 0 22px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 22px; }
.grid .card { box-shadow: 0 8px 22px rgba(26,39,68,.08); }
.related-h { margin: 40px 0 8px; font-size: 1.45rem; }
.btn { background: var(--brand); color: #fff; border: 0; border-radius: 10px; padding: 12px 20px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn .ico { width: 18px; height: 18px; }
.btn:hover { background: var(--brand-600); }
.btn.ghost { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.inc { margin: 8px 0 18px 18px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0; }
.stats div { background: var(--bg); border-radius: 14px; padding: 16px; }
.stats b { display: block; font-family: var(--head); font-size: 1.15rem; }
.stats span { color: var(--muted); font-size: 12px; }
.narrow { max-width: 760px; }
.contact { display: grid; grid-template-columns: .8fr 1fr; gap: 32px; margin-top: 8px; }
.facts p { margin-bottom: 16px; }
.facts small { display: block; color: var(--muted); font-size: 12px; }
.facts a { font-weight: 700; color: var(--navy); }
.fact-link { display: inline-flex; align-items: center; gap: 8px; }
.fact-link .ico { width: 18px; height: 18px; color: var(--brand); }
.foot-phone { display: inline-flex; align-items: center; gap: 8px; }
.foot-phone .ico { width: 16px; height: 16px; }

.footer { background: var(--navy); color: #f3c2d8; padding: 44px 0 0; margin-top: 8px; }
.foot { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 32px; }
.footer h4 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.footer a, .footer p { display: block; margin: 7px 0; font-size: 13px; }
.copy { border-top: 1px solid #6a2048; text-align: center; padding: 14px; font-size: 12px; }

.wa {
  position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px;
  border-radius: 16px; background: #25d366; color: #fff;
  display: grid; place-items: center; z-index: 40;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .45);
}
.wa .ico { width: 34px; height: 34px; }
.fact-link .ico-wa { color: #25d366; }

.modal { position: fixed; inset: 0; background: rgba(26,39,68,.45); display: none; place-items: center; z-index: 80; padding: 16px; }
.modal.open { display: grid; }
.sheet { background: #fff; width: min(420px, 100%); border-radius: 16px; padding: 22px; position: relative; display: grid; gap: 10px; }
.sheet.static { width: 100%; }
.sheet .x { position: absolute; top: 10px; right: 12px; border: 0; background: none; font-size: 22px; cursor: pointer; }
.sheet form { display: grid; gap: 10px; }
.sheet input, .sheet textarea { border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; background: var(--bg); }

@media (max-width: 1100px) {
  .theme-row { grid-template-columns: repeat(3, 1fr); }
  .cat-icons { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .rev-track { grid-auto-columns: calc((100% - 18px) / 2); }
}
@media (max-width: 1024px) {
  .subnav { display: none; }
  .burger { display: flex; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; gap: 22px; }
  .inc-layout, .rev-layout, .care-grid { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .head-phone > span:not(.ph), .head-wa span { display: none; }
  .brand-logo--header { height: 46px; max-width: 150px; }
  .burger { margin-left: 8px; }
  .hero-split, .pdp, .contact, .foot, .gallery, .brand-strip, .rev-grid, .bookbar-row { grid-template-columns: 1fr; }
  .hero-photo, .hero-photo img { min-height: 240px; }
  .hero-copy { padding: 28px 24px; }
  .trust-cards { grid-template-columns: 1fr 1fr; }
  .promo-flash-row, .promo-kids-row, .promo-wed-row { grid-template-columns: 1fr; }
  .promo-flash-row { grid-template-areas: "copy" "art" "cta"; }
  .promo-flash-art { display: none; }
  .kids-photos { height: auto; }
  .theme-row, .grid, .stats { grid-template-columns: 1fr 1fr; }
  .cat-icons { grid-template-columns: repeat(4, 1fr); }
  .ico-pic { width: 78px; height: 78px; }
  .rail-track { grid-auto-columns: 70vw; }
  .quote-track { grid-auto-columns: calc((100% - 18px) / 2); }
  .thumbs { grid-auto-flow: column; grid-auto-columns: 64px; overflow-x: auto; }
  .main-pic { height: 280px; }
  .bookbar-pills { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .rev-track { grid-auto-columns: 78vw; }
}
@media (max-width: 560px) {
  .theme-row, .grid, .stats, .trust-cards { grid-template-columns: 1fr; }
  .quote-track { grid-auto-columns: 82vw; }
  .why-grid { grid-template-columns: 1fr; }
}
