:root {
    --bg: #f6f7fb;
    --surface: #ffffff;
    --surface-2: #f0f3f8;
    --text: #101524;
    --muted: #6c7485;
    --line: #e7ebf2;
    --primary: #2563eb;
    --primary-2: #60a5fa;
    --brand-accent: #7dd3fc;
    --hero: #071228;
    --hero-soft: #0d1c3a;
    --shadow: 0 22px 60px rgba(10, 18, 38, .10);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

html[data-theme="dark"] {
    --bg: #070b14;
    --surface: #0f1726;
    --surface-2: #111d31;
    --text: #f6f8ff;
    --muted: #9aa7bd;
    --line: rgba(255,255,255,.09);
    --primary: #3b82f6;
    --primary-2: #7dd3fc;
    --hero: #040914;
    --hero-soft: #071228;
    --shadow: 0 22px 70px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    transition: background .25s ease, color .25s ease;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .025; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 12px 12px; z-index: 10; mix-blend-mode: overlay; }

.hero {
    min-height: 520px;
    background:
        radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--primary) 28%, transparent), transparent 34%),
        radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--primary-2) 14%, transparent), transparent 28%),
        linear-gradient(180deg, var(--hero), var(--hero-soft));
    color: white;
    position: relative;
    overflow: hidden;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(circle at center, #000 0 40%, transparent 75%);
}
.nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.03em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--brand-accent)); color: white; box-shadow: 0 14px 35px color-mix(in srgb, var(--primary) 35%, transparent); }
.brand-logo { width: 38px; height: 38px; object-fit: contain; display: block; border-radius: 10px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-link { color: rgba(255,255,255,.72); font-size: 14px; font-weight: 700; }
.nav-link:hover { color: white; }
.nav-whatsapp { min-height: 34px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 999px; color: #fff; background: rgba(34,197,94,.18); border: 1px solid rgba(34,197,94,.28); font-weight: 900; font-size: 13px; }
.nav-whatsapp:hover { background: rgba(34,197,94,.28); }
.nav-member { min-height: 36px; display: inline-flex; align-items: center; justify-content: center; padding: 0 15px; border-radius: 999px; color: #fff; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); font-weight: 900; font-size: 13px; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.nav-member:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.30); transform: translateY(-1px); }
.theme-toggle {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
    color: white;
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 22px rgba(0,0,0,.14);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.theme-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.28);
}
.toggle-icon {
    display: block;
    font-size: 15px;
    line-height: 1;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,.25));
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 0 96px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border: 1px solid rgba(96,165,250,.22);
    color: color-mix(in srgb, var(--primary-2) 74%, white);
    border-radius: 999px;
    background: rgba(37,99,235,.10);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 28px;
}
.hero h1 {
    margin: 0 auto;
    max-width: 830px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -.075em;
    font-weight: 900;
}
.hero h1 span { display: block; color: #3b82f6; text-shadow: 0 0 35px rgba(59,130,246,.45); }
.hero p {
    max-width: 620px;
    margin: 24px auto 0;
    color: rgba(255,255,255,.68);
    line-height: 1.72;
    font-weight: 500;
}
.hero-search {
    width: min(690px, 100%);
    margin: 36px auto 0;
    height: 62px;
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    padding: 6px;
    border-radius: 18px;
    border: 1px solid rgba(96,165,250,.18);
    background: rgba(10, 22, 48, .86);
    box-shadow: 0 25px 70px rgba(37, 99, 235, .20);
    backdrop-filter: blur(18px);
}
.search-icon { color: rgba(255,255,255,.45); font-size: 22px; }
.hero-search input { border: 0; outline: 0; background: transparent; color: white; min-width: 0; }
.hero-search input::placeholder { color: rgba(255,255,255,.45); }
.hero-search button {
    border: 0;
    border-radius: 13px;
    color: white;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    height: 50px;
    padding: 0 25px;
    font-weight: 900;
    cursor: pointer;
}
.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    padding: 9px 14px 9px 10px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    box-shadow: 0 18px 48px rgba(0,0,0,.18);
    backdrop-filter: blur(14px);
}
.avatar-stack { display: flex; align-items: center; flex-shrink: 0; }
.avatar-stack .avatar-item,
.avatar-stack .avatar-more {
    width: 38px;
    height: 38px;
    border: 2px solid var(--hero);
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    margin-left: -10px;
    background: #2563eb;
    color: white;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -.04em;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.avatar-stack .avatar-item:first-child { margin-left: 0; }
.avatar-stack .avatar-more {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border-color: rgba(255,255,255,.18);
    font-size: 12px;
}
.avatar-stack img { width: 100%; height: 100%; object-fit: cover; display: block; }

.section { padding: 76px 0; }
.section-header { margin-bottom: 28px; }
.section-header.split { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-header.center { text-align: center; }
.eyebrow { display: inline-block; color: var(--primary); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 8px; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.055em; line-height: 1.05; }
.section-header p { margin: 10px 0 0; color: var(--muted); line-height: 1.7; max-width: 630px; }
.center p { margin-inline: auto; }
.admin-shortcut { font-size: 13px; font-weight: 900; color: var(--primary); border: 1px solid var(--line); padding: 11px 14px; border-radius: 999px; background: var(--surface); box-shadow: 0 10px 25px rgba(0,0,0,.04); }

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 28px 0 14px;
}
.category-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; }
.chip {
    white-space: nowrap;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    border-radius: 999px;
    padding: 8px 14px 8px 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -.01em;
}
.chip:hover, .chip.active { color: white; background: var(--text); border-color: var(--text); transform: translateY(-1px); }
.chip-icon {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 24px;
    border-radius: 999px;
    color: var(--chip-icon-color, var(--primary));
    background: color-mix(in srgb, var(--chip-icon-color, var(--primary)) 12%, transparent);
    font-size: 14px;
    line-height: 1;
}
.chip.active .chip-icon,
.chip:hover .chip-icon { background: color-mix(in srgb, var(--chip-icon-color, var(--primary)) 22%, rgba(255,255,255,.12)); }
.chip-label { display: inline-block; }
.filters-right { display: flex; gap: 10px; align-items: center; }
.select-wrap select, .mini-search input {
    height: 44px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    border-radius: 13px;
    outline: 0;
    box-shadow: none;
}
.select-wrap select { padding: 0 15px; font-weight: 800; }
.mini-search { position: relative; display: flex; align-items: center; }
.mini-search span { position: absolute; left: 13px; color: var(--muted); }
.mini-search input { padding: 0 14px 0 38px; width: 250px; }
.result-count { color: var(--muted); font-size: 13px; font-weight: 700; margin-bottom: 20px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateY(0);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(37,99,235,.28); box-shadow: 0 30px 80px rgba(37,99,235,.15); }
.product-media {
    position: relative;
    height: 205px;
    background:
        radial-gradient(circle at 20% 0%, rgba(59,130,246,.20), transparent 36%),
        linear-gradient(135deg, #071228, #0d1730);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 0; }
.product-badge { position: absolute; top: 14px; left: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.92); color: #0f172a; font-weight: 900; font-size: 11px; box-shadow: 0 10px 25px rgba(0,0,0,.12); }
.product-body { padding: 20px; }
.product-kicker { color: var(--primary); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .12em; margin-bottom: 8px; }
.product-card h3 { margin: 0; font-size: 19px; letter-spacing: -.035em; }
.product-card p { min-height: 52px; margin: 9px 0 0; color: var(--muted); line-height: 1.58; font-size: 14px; }
.product-meta { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 18px; }
.price-box { display: grid; gap: 2px; }
.old-price { color: var(--muted); font-size: 12px; text-decoration: line-through; font-weight: 700; }
.price-box strong { font-size: 19px; letter-spacing: -.04em; }
.stars { color: #f59e0b; font-size: 12px; letter-spacing: -1px; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.btn { min-height: 45px; display: inline-flex; align-items: center; justify-content: center; border-radius: 13px; font-weight: 900; font-size: 13px; border: 1px solid transparent; transition: .2s ease; }
.btn.ghost { background: var(--surface-2); color: var(--text); border-color: var(--line); }
.btn.primary { color: white; background: linear-gradient(135deg, #0f172a, #2563eb); box-shadow: 0 14px 30px rgba(37,99,235,.22); }
.btn:hover { transform: translateY(-1px); }
.empty-state { text-align: center; border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 38px; color: var(--muted); background: var(--surface); }
.empty-state strong { color: var(--text); display: block; font-size: 20px; margin-bottom: 8px; }

.benefits-section { background: linear-gradient(180deg, transparent, rgba(37,99,235,.05)); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.benefit-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: 0 18px 60px rgba(0,0,0,.05); }
.benefit-icon { width: 38px; height: 38px; border-radius: 14px; display: grid; place-items: center; color: white; background: linear-gradient(135deg, #2563eb, #7dd3fc); font-weight: 900; margin-bottom: 28px; }
.benefit-card:nth-child(2) .benefit-icon { background: linear-gradient(135deg, #16a34a, #86efac); }
.benefit-card:nth-child(3) .benefit-icon { background: linear-gradient(135deg, #9333ea, #c084fc); }
.benefit-card h3 { margin: 0; font-size: 18px; letter-spacing: -.035em; }
.benefit-card p { color: var(--muted); line-height: 1.65; font-size: 14px; }

.footer { padding: 54px 0 22px; background: var(--surface); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 34px; }
.footer p { color: var(--muted); line-height: 1.7; max-width: 330px; }
.footer h4 { margin: 0 0 14px; font-size: 14px; }
.footer a:not(.brand) { display: block; color: var(--muted); margin: 10px 0; font-weight: 650; font-size: 14px; }
.social-links { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.social-links a { width: 46px; height: 46px; display: inline-grid !important; place-items: center; margin: 0 !important; border-radius: 999px; background: var(--surface-2); color: color-mix(in srgb, var(--social-color, #94a3b8) 72%, #94a3b8) !important; border: 1px solid color-mix(in srgb, var(--line) 75%, transparent); box-shadow: 0 12px 28px rgba(15, 23, 42, .055); transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease; }
.social-links a:hover { transform: translateY(-2px); color: var(--social-color, var(--primary)) !important; border-color: color-mix(in srgb, var(--social-color, var(--primary)) 30%, var(--line)); background: color-mix(in srgb, var(--social-color, var(--primary)) 8%, var(--surface)); }
.social-icon { width: 21px; height: 21px; display: grid; place-items: center; }
.social-icon svg { width: 21px; height: 21px; display: block; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.social-youtube .social-icon svg path:nth-child(2) { fill: currentColor; stroke: none; }
.social-whatsapp .social-icon svg path:nth-child(2) { stroke-width: 1.25; }
.social-custom-icon { font-size: 20px; line-height: 1; display: grid; place-items: center; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 18px; display: grid; grid-template-columns: 1fr; gap: 8px; text-align: center; justify-items: center; }
.footer-made { color: var(--muted); font-size: 14px; font-weight: 650; letter-spacing: -.01em; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.footer-made strong { color: var(--text); font-weight: 900; letter-spacing: .02em; }
.copyright { color: var(--muted); font-size: 12.5px; }
.floating-support { position: fixed; left: 24px; bottom: 24px; z-index: 80; display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.floating-support__label { min-height: 42px; display: inline-flex; align-items: center; padding: 0 18px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(15, 23, 42, .15); font-size: 14px; font-weight: 850; letter-spacing: -.02em; }
.floating-support__circle { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 999px; background: #22c55e; color: white; box-shadow: 0 18px 42px rgba(34,197,94,.34); transition: transform .2s ease, box-shadow .2s ease; }
.floating-support__circle svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.floating-support__circle svg path:nth-child(2) { stroke-width: 1.25; }
.floating-support:hover .floating-support__circle { transform: translateY(-2px) scale(1.03); box-shadow: 0 22px 52px rgba(34,197,94,.42); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 980px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .toolbar, .section-header.split { align-items: stretch; flex-direction: column; }
    .filters-right { justify-content: space-between; }
    .mini-search input { width: 100%; }
    .benefit-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .container { width: min(100% - 24px, 1180px); }
    .nav { align-items: flex-start; gap: 16px; flex-direction: column; }
    .nav-actions { width: 100%; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
    .nav-link { display: none; }
    .nav-member, .nav-whatsapp { min-height: 34px; padding: 0 12px; font-size: 12px; }
    .hero { min-height: auto; }
    .hero-content { padding: 28px 0 70px; }
    .hero h1 { font-size: 42px; }
    .hero-search { grid-template-columns: 42px 1fr; height: auto; padding: 8px; }
    .hero-search button { grid-column: 1 / -1; width: 100%; margin-top: 8px; }
    .social-proof { flex-direction: column; border-radius: 22px; padding: 14px; }
    .filters-right { flex-direction: column; align-items: stretch; }
    .product-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .floating-support { left: 14px; right: 14px; bottom: 16px; justify-content: flex-start; }
    .floating-support__label { min-height: 40px; padding: 0 14px; font-size: 13px; }
    .floating-support__circle { width: 58px; height: 58px; }
}

/* Popup de detalhes do produto */
body.modal-open { overflow: hidden; }
.product-modal[hidden] { display: none; }
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    padding: 28px;
}
.product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, .76);
    backdrop-filter: blur(9px);
    opacity: 0;
    transition: opacity .2s ease;
}
.product-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: min(86vh, 760px);
    display: grid;
    grid-template-columns: 1.45fr .95fr;
    overflow: hidden;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 40px 120px rgba(0,0,0,.45);
    transform: scale(.96) translateY(16px);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
}
.product-modal.is-open .product-modal__backdrop { opacity: 1; }
.product-modal.is-open .product-modal__dialog { opacity: 1; transform: scale(1) translateY(0); }
.product-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.product-modal__close:hover { background: var(--surface-2); color: var(--text); }
.product-modal__preview {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(15,23,42,.05), rgba(15,23,42,.10)),
        #d7d9de;
    overflow: hidden;
}
.product-modal__preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: saturate(.95);
}
.product-modal__preview.has-video img { display: none; }
.product-modal__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #020617;
}
.product-modal__video iframe,
.product-modal__video video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #020617;
}
.product-modal__video video { object-fit: contain; }
.product-modal__preview.has-video .product-modal__play { display: none; }
.product-modal__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: rgba(15,23,42,.86);
    box-shadow: 0 20px 55px rgba(15,23,42,.35);
    font-size: 23px;
    padding-left: 4px;
    border: 1px solid rgba(255,255,255,.20);
}
.product-modal__content {
    padding: 56px 34px 34px;
    overflow-y: auto;
    background: var(--surface);
}
.product-modal__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.product-modal__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--text);
    font-size: 12px;
    font-weight: 900;
}
.product-modal__badges span:last-child {
    color: #7e22ce;
    background: rgba(168, 85, 247, .13);
}
.product-modal__content h2 {
    margin: 0 34px 28px 0;
    font-size: clamp(31px, 3.6vw, 44px);
    line-height: 1.08;
    letter-spacing: -.06em;
}
.product-modal__prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface-2);
    margin-bottom: 28px;
}
.product-modal__prices div {
    padding: 20px;
    display: grid;
    gap: 8px;
}
.product-modal__prices div + div { border-left: 1px solid var(--line); }
.product-modal__prices span {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .06em;
    font-weight: 900;
}
.product-modal__prices strong {
    font-size: clamp(25px, 3vw, 34px);
    letter-spacing: -.06em;
}
.product-modal__summary {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.62;
}
.product-modal__features {
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 26px;
}
.product-modal__features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.product-modal__features li::before {
    content: "✓";
    color: #16a34a;
    font-weight: 900;
    margin-right: 8px;
}
.product-modal__actions {
    display: grid;
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.product-modal__actions .btn {
    min-height: 58px;
    border-radius: 9px;
    font-size: 15px;
}
.product-modal__actions .buy {
    color: white;
    background: #02a63a;
    border-color: #02a63a;
}
.product-modal__actions .site {
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(15,23,42,.08);
}
.product-modal__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}
.product-modal__trust span { display: grid; gap: 7px; justify-items: center; }
.product-modal__trust b { font-size: 11px; color: var(--muted); }

@media (max-width: 900px) {
    .product-modal { padding: 14px; align-items: start; overflow-y: auto; }
    .product-modal__dialog {
        grid-template-columns: 1fr;
        max-height: none;
        margin: 14px 0;
    }
    .product-modal__preview { min-height: 300px; }
    .product-modal__content { padding: 34px 22px 24px; }
}
@media (max-width: 560px) {
    .product-modal { padding: 0; }
    .product-modal__dialog { border-radius: 0; min-height: 100vh; margin: 0; }
    .product-modal__preview { min-height: 245px; }
    .product-modal__prices { grid-template-columns: 1fr; }
    .product-modal__prices div + div { border-left: 0; border-top: 1px solid var(--line); }
    .product-modal__trust { grid-template-columns: 1fr; }
}
