:root {
  --ink: #17101b;
  --ink-soft: #4d4352;
  --muted: #7c7080;
  --line: #eadfe6;
  --paper: #ffffff;
  --paper-soft: #fff8fb;
  --cream: #fbf3ec;
  --cream-2: #f6e8df;
  --plum: #3d0c2a;
  --plum-2: #641642;
  --rose: #d93c70;
  --rose-2: #f06f91;
  --apricot: #f5a362;
  --mint: #dff5ed;
  --success: #227653;
  --warning: #996116;
  --danger: #a53143;
  --shadow-sm: 0 10px 30px rgba(61, 12, 42, .08);
  --shadow-md: 0 22px 60px rgba(61, 12, 42, .13);
  --shadow-lg: 0 32px 90px rgba(61, 12, 42, .18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --gutter: clamp(18px, 4vw, 32px);
  --space-section: clamp(64px, 8vw, 112px);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(217,60,112,.08), transparent 30vw),
    radial-gradient(circle at 90% 4%, rgba(245,163,98,.10), transparent 28vw),
    linear-gradient(180deg, #fffaf7 0%, #fff 48%, #fff8fb 100%);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - var(--gutter) * 2)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--plum); color: #fff; padding: 12px 16px; border-radius: 10px; z-index: 1000; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 247, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234,223,230,.75);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  color: #fff; box-shadow: 0 14px 32px rgba(217,60,112,.28);
}
.brand-name { font-size: 1.18rem; }
.site-nav { display: flex; align-items: center; gap: 5px; padding: 7px; border: 1px solid rgba(234,223,230,.9); border-radius: 999px; background: rgba(255,255,255,.72); box-shadow: var(--shadow-sm); }
.site-nav a { color: var(--ink-soft); padding: 10px 15px; border-radius: 999px; font-weight: 750; font-size: .94rem; transition: .18s ease; }
.site-nav a:hover, .site-nav a.active { color: var(--plum); background: #fff1f6; }
.site-nav .nav-cta { background: var(--plum); color: #fff; box-shadow: 0 12px 30px rgba(61,12,42,.18); }
.site-nav .nav-cta:hover { background: var(--plum-2); color: #fff; transform: translateY(-1px); }
.nav-toggle { display: none; border: 0; background: var(--plum); color: #fff; border-radius: 14px; width: 44px; height: 44px; font-size: 1.2rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1px solid transparent; font-weight: 850; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn.primary, .btn.dark { background: linear-gradient(135deg, var(--plum), var(--rose)); color: #fff; box-shadow: 0 18px 42px rgba(217,60,112,.25); }
.btn.secondary, .btn.ghost { background: #fff; color: var(--plum); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn.card-btn { width: 100%; background: var(--plum); color: #fff; min-height: 42px; }
.text-link { color: var(--plum); font-weight: 900; }
.kicker, .eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--rose); font-size: .78rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; margin: 0 0 12px; }
.kicker::before, .eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }

.hero { padding: clamp(48px, 7vw, 96px) 0 var(--space-section); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: auto -10% 0 auto; width: 42vw; height: 42vw; border-radius: 999px; background: radial-gradient(circle, rgba(217,60,112,.12), transparent 68%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr); gap: clamp(34px, 6vw, 76px); align-items: center; position: relative; z-index: 1; }
.hero-copy h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 5.6rem); line-height: .93; letter-spacing: -.075em; max-width: 850px; }
.hero-text { margin: 24px 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.76); color: var(--ink-soft); font-weight: 750; font-size: .9rem; }
.trust-row span::before { content: '✓'; color: var(--success); font-weight: 950; }
.mini-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 28px; max-width: 610px; }
.mini-metric { border: 1px solid var(--line); background: rgba(255,255,255,.75); border-radius: 20px; padding: 16px; box-shadow: var(--shadow-sm); }
.mini-metric strong { display: block; color: var(--plum); font-size: 1.8rem; letter-spacing: -.04em; }
.mini-metric span { color: var(--muted); font-size: .88rem; font-weight: 700; }
.hero-panel { position: relative; }
.hero-panel::before { content: ''; position: absolute; inset: -18px; border-radius: 38px; background: linear-gradient(135deg, rgba(217,60,112,.20), rgba(245,163,98,.16)); transform: rotate(-2deg); }
.hero-panel > * { position: relative; }
.hero-note { margin-top: 16px; border: 1px solid rgba(234,223,230,.9); background: rgba(255,255,255,.82); border-radius: 24px; padding: 18px; display: grid; gap: 4px; box-shadow: var(--shadow-sm); }
.hero-note strong { color: var(--plum); }
.hero-note span { color: var(--muted); }

.section { padding: var(--space-section) 0; }
.section.compact { padding-top: 26px; }
.section.soft, .reviews-shell { background: linear-gradient(180deg, rgba(255,243,247,.58), rgba(255,255,255,0)); border-block: 1px solid rgba(234,223,230,.5); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.section-head h2, .method-card h2, .guide-band h2 { margin: 0; font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1; letter-spacing: -.06em; }
.section-head p, .method-card p, .guide-band p { color: var(--muted); max-width: 680px; margin: 12px 0 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { border: 1px solid rgba(234,223,230,.9); background: rgba(255,255,255,.86); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: .22s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(217,60,112,.26); }
.product-card.feature-card { box-shadow: var(--shadow-lg); }
.product-image { display: block; position: relative; height: 260px; background: var(--cream-2); overflow: hidden; }
.product-card.large .product-image { height: 350px; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.01); transition: transform .28s ease; }
.product-card:hover .product-image img { transform: scale(1.055); }
.badge, .deal, .rank-badge { position: absolute; z-index: 2; top: 16px; border-radius: 999px; padding: 8px 12px; font-size: .78rem; font-weight: 950; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.badge { left: 16px; background: #fff; color: var(--plum); }
.deal { right: 16px; background: var(--rose); color: #fff; }
.rank-badge { left: 16px; bottom: 16px; top: auto; background: var(--plum); color: #fff; }
.product-body { padding: 22px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--muted); font-size: .88rem; font-weight: 850; }
.rating { color: #c68022; white-space: nowrap; }
.rating span { letter-spacing: -2px; }
.product-body h3 { margin: 12px 0 10px; font-size: 1.27rem; line-height: 1.15; letter-spacing: -.035em; }
.product-card.large h3 { font-size: 1.55rem; }
.product-body p { color: var(--muted); margin: 0; min-height: 58px; }
.card-line { height: 1px; background: var(--line); margin: 18px 0; }
.empty-card { border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 38px; background: #fff; color: var(--muted); }

.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.category-tile { min-height: 220px; padding: 24px; border-radius: 28px; border: 1px solid var(--line); background: linear-gradient(145deg, #fff, #fff3f7); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: space-between; transition: .2s ease; }
.category-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.category-tile span { font-size: 1.28rem; font-weight: 950; letter-spacing: -.035em; }
.category-tile p { color: var(--muted); margin: 10px 0; }
.category-tile em { font-style: normal; color: var(--plum); font-weight: 900; }
.method-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 24px; align-items: stretch; }
.method-card, .guide-band { border-radius: 34px; padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.method-card { background: #fff; }
.guide-band { background: linear-gradient(135deg, var(--plum), #7a1b4e); color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.guide-band .eyebrow, .guide-band p { color: #f8c8d9; }
.guide-band .btn { align-self: flex-start; background: #fff; color: var(--plum); margin-top: 28px; }
.method-list { padding: 0; margin: 26px 0 0; list-style: none; display: grid; gap: 14px; }
.method-list li { padding: 16px 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper-soft); font-weight: 750; }
.method-list li::before { content: '✓'; margin-right: 10px; color: var(--success); font-weight: 950; }

.page-hero { padding: clamp(48px, 7vw, 86px) 0; background: linear-gradient(135deg, rgba(61,12,42,.96), rgba(118,29,69,.92)), radial-gradient(circle at 80% 0%, rgba(245,163,98,.32), transparent 40%); color: #fff; }
.page-hero.compact h1 { max-width: 850px; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .96; letter-spacing: -.07em; margin: 0; }
.page-hero p { color: #f7d8e4; max-width: 720px; font-size: 1.12rem; }
.reviews-shell { padding: 34px 0 var(--space-section); }
.reviews-layout { display: grid; grid-template-columns: 308px minmax(0, 1fr); gap: 28px; align-items: start; }
.filter-panel { position: sticky; top: 104px; border: 1px solid var(--line); background: rgba(255,255,255,.92); border-radius: 28px; padding: 20px; box-shadow: var(--shadow-sm); }
.search-box { display: flex; align-items: center; gap: 10px; background: var(--paper-soft); border: 1px solid var(--line); border-radius: 999px; padding: 12px 14px; }
.search-box input { border: 0; outline: 0; background: transparent; min-width: 0; width: 100%; }
.filter-group { margin-top: 22px; }
.filter-group h3 { margin: 0 0 10px; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink-soft); font-weight: 800; font-size: .86rem; }
.chip.active, .chip:hover { border-color: rgba(217,60,112,.35); background: #fff0f5; color: var(--plum); }
.filter-actions { display: flex; gap: 10px; margin-top: 20px; }
.filter-actions .btn { flex: 1; }
.review-results { min-width: 0; }
.result-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 18px; padding: 16px; background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: 24px; }
.result-toolbar strong { font-size: 1.05rem; }
.sort-select { border: 1px solid var(--line); border-radius: 999px; background: #fff; padding: 10px 14px; color: var(--ink); }
.review-list { display: grid; gap: 18px; }
.review-row { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 0; border: 1px solid rgba(234,223,230,.95); background: #fff; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-sm); transition: .22s ease; }
.review-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-row .product-image { height: 100%; min-height: 270px; border-radius: 0; }
.review-row .product-body { padding: 26px; display: grid; align-content: center; }
.review-row h3 { font-size: clamp(1.45rem, 2.6vw, 2.05rem); }
.row-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.row-actions .btn { min-height: 42px; }
.procon-mini { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.procon-mini span { padding: 7px 10px; border-radius: 999px; background: var(--paper-soft); border: 1px solid var(--line); color: var(--ink-soft); font-size: .84rem; font-weight: 800; }
.empty-state { border: 1px dashed var(--line); border-radius: 28px; padding: 42px; background: #fff; text-align: center; color: var(--muted); }

.detail-hero { padding: 44px 0 28px; }
.breadcrumb { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 30px; align-items: start; }
.detail-main { min-width: 0; }
.detail-card { background: #fff; border: 1px solid var(--line); border-radius: 34px; padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow-sm); }
.detail-title { margin: 0; font-size: clamp(2.2rem, 5vw, 4.6rem); line-height: .96; letter-spacing: -.075em; }
.detail-lead { color: var(--ink-soft); font-size: 1.14rem; margin: 20px 0 0; max-width: 790px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.detail-meta span { padding: 9px 12px; border-radius: 999px; background: #fff0f5; color: var(--plum); border: 1px solid rgba(217,60,112,.18); font-weight: 850; }
.detail-gallery { margin-top: 28px; border-radius: 34px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--cream); }
.detail-gallery img { width: 100%; max-height: 640px; object-fit: cover; }
.review-section { margin-top: 24px; background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 28px; box-shadow: var(--shadow-sm); }
.review-section h2 { margin: 0 0 16px; font-size: 1.7rem; letter-spacing: -.04em; }
.review-section p { color: var(--ink-soft); }
.detail-aside { position: sticky; top: 104px; display: grid; gap: 16px; }
.score-card { border-radius: 30px; padding: 24px; background: linear-gradient(135deg, var(--plum), #761d45); color: #fff; box-shadow: var(--shadow-md); }
.score-card .score { display: flex; align-items: baseline; gap: 8px; }
.score-card .score strong { font-size: 4rem; line-height: 1; letter-spacing: -.07em; }
.score-card p { color: #f7d8e4; margin: 8px 0 0; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 22px; box-shadow: var(--shadow-sm); }
.aside-card h3 { margin: 0 0 12px; }
.spec-list, .pros-cons, .faq-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.spec-list li { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec-list li:last-child { border-bottom: 0; }
.spec-list span { color: var(--muted); }
.spec-list strong { text-align: right; }
.pros-cons li { padding: 12px 14px; border-radius: 16px; background: var(--paper-soft); border: 1px solid var(--line); }
.pros-cons.pros li::before { content: '✓'; color: var(--success); margin-right: 8px; font-weight: 950; }
.pros-cons.cons li::before { content: '•'; color: var(--warning); margin-right: 8px; font-weight: 950; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; padding: 14px 16px; background: #fff; }
.faq-list summary { cursor: pointer; font-weight: 900; }
.faq-list p { margin: 10px 0 0; color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.site-footer { background: var(--footer-bg, var(--plum)); color: var(--footer-text, #fff); padding: 60px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 34px; align-items: start; }
.footer-brand .brand-mark { background: rgba(255,255,255,.14); box-shadow: none; border: 1px solid rgba(255,255,255,.2); }
.footer-brand-block p { color: var(--footer-muted, #f0c8d6); max-width: 420px; }
.footer-mini { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-mini span { border: 1px solid rgba(255,255,255,.18); color: var(--footer-muted, #f0c8d6); border-radius: 999px; padding: 8px 10px; font-size: .82rem; font-weight: 800; }
.footer-col h3 { margin: 0 0 14px; font-size: .88rem; text-transform: uppercase; letter-spacing: .11em; color: #fff; }
.footer-col a { display: block; color: var(--footer-muted, #f0c8d6); padding: 6px 0; font-weight: 700; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; color: var(--footer-muted, #f0c8d6); border-top: 1px solid rgba(255,255,255,.16); margin-top: 42px; padding-top: 22px; font-size: .88rem; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav { display: none; position: absolute; top: 78px; left: var(--gutter); right: var(--gutter); flex-direction: column; align-items: stretch; border-radius: 24px; padding: 12px; }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero-grid, .detail-grid, .reviews-layout, .method-grid { grid-template-columns: 1fr; }
  .detail-aside, .filter-panel { position: static; }
  .product-grid, .category-grid, .related-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-row { grid-template-columns: 1fr; }
  .review-row .product-image { min-height: 240px; }
}
@media (max-width: 640px) {
  :root { --gutter: 16px; }
  .nav-wrap { min-height: 68px; }
  .site-nav { top: 68px; }
  .hero { padding-top: 34px; }
  .hero-copy h1, .page-hero.compact h1, .detail-title { letter-spacing: -.055em; }
  .hero-actions, .filter-actions, .row-actions, .footer-bottom, .section-head { flex-direction: column; align-items: stretch; }
  .mini-metrics, .product-grid, .category-grid, .related-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-image, .product-card.large .product-image { height: 250px; }
  .detail-card, .review-section { padding: 22px; border-radius: 24px; }
  .review-row .product-body { padding: 22px; }
  .score-card .score strong { font-size: 3.1rem; }
}
