:root {
    --red: #a31320;
    --red-strong: #c31f2d;
    --wine: #5d0b12;
    --wine-dark: #35070b;
    --ink: #281b1d;
    --muted: #756468;
    --gold: #e5bd6a;
    --gold-light: #f7dfa5;
    --line: #eadfda;
    --surface-soft: #fbf7f4;
    --success: #23764a;
    --shadow: 0 22px 60px rgba(72, 25, 28, .12);
    --focus: 0 0 0 3px rgba(195, 31, 45, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    line-height: 1.7;
    background: #fff;
}
body.overlay-open { overflow: hidden; }
body.has-basket { padding-bottom: calc(96px + env(safe-area-inset-bottom)); background: #0f0b0c; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.container { width: min(1220px, calc(100% - 36px)); margin-inline: auto; }
.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; }

.icon-button {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}
.icon-button:focus-visible, .btn:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: none;
    box-shadow: var(--focus);
}

.btn {
    border: 0;
    border-radius: 12px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .46; cursor: not-allowed; transform: none; }
.btn-lg { padding: 15px 24px; font-size: 16px; }
.btn-sm { padding: 9px 12px; font-size: 12px; }
.btn-block { width: 100%; }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #55320c; box-shadow: 0 10px 25px rgba(229, 189, 106, .18); }
.btn-red { background: linear-gradient(135deg, var(--red-strong), var(--red)); color: #fff; box-shadow: 0 10px 25px rgba(163, 19, 32, .17); }
.btn-light { background: #fff; color: var(--red); border: 1px solid #e9ccd0; }
.btn-outline-light { background: rgba(255,255,255,.05); color: #fff; border: 1px solid rgba(255,255,255,.45); }
.btn-whatsapp { background: #20a957; color: #fff; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: #D52031;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { height: 76px; display: flex; align-items: center; gap: 26px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: max-content; }
.brand img { height: 100px; }
.brand span { display: grid; line-height: 1.25; }
.brand b { font-size: 16px; }
.brand small { color: #edc879; font: italic 13px Georgia, serif; direction: ltr; }
.main-nav { display: flex; gap: 22px; margin-inline: auto; font-size: 14px; }
.main-nav a { opacity: .86; transition: opacity .18s, color .18s; }
.main-nav a:hover { opacity: 1; color: var(--gold-light); }
.mobile-menu-button, .mobile-menu { display: none; }

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(circle at 79% 28%, rgba(202, 64, 57, .78), transparent 34%),linear-gradient(122deg, #D52031 0%, #D52031 47%, #9d151f 100%)
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .28;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 1px, transparent 1px 13px);
}
.hero-grid { min-height: 570px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding: 72px 0; max-width: 640px; }
.hero h1 { margin: 0 0 20px; font-size: clamp(43px, 5vw, 72px); line-height: 1.14; letter-spacing: -.025em; text-wrap: balance; }
.hero-copy > p { margin: 0 0 28px; max-width: 600px; color: #f2dfe1; font-size: 18px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; padding-right: 14px; border-right: 3px solid var(--gold); color: #e7cdd0; font-size: 13px; }
.hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; padding: 44px 0 34px; }
.hero-media-frame {
    position: relative;
    width: min(100%, 570px);
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 34px 80px rgba(20, 3, 5, .34);
    border: 1px solid rgba(255,255,255,.18);
    background: #76121a;
}
.hero-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.hero-media-frame img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.offer-medallion {
    position: absolute;
    z-index: 3;
    top: 26px;
    left: -6px;
    width: 142px;
    height: 142px;
    border-radius: 50%;
    border: 7px solid rgba(255,255,255,.27);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.05;
    color: #4c2b10;
    background: radial-gradient(circle at 32% 24%, #fff0b3, #d5a64f 72%);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.offer-medallion small { font-weight: 800; }
.offer-medallion strong { font-size: 43px; }
.offer-medallion span { font-size: 12px; font-weight: 800; }
.offer-medallion b { margin-top: 7px; font-size: 16px; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(75px); opacity: .34; }
.hero-glow-a { width: 360px; height: 360px; right: 3%; top: 0; background: #f0a94e; }
.hero-glow-b { width: 300px; height: 300px; left: 5%; bottom: -120px; background: #280005; }

.trust-strip { position: relative; z-index: 2; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 8px 28px rgba(0,0,0,.035); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 20px 16px; border-left: 1px solid var(--line); }
.trust-item:last-child { border-left: 0; }
.trust-icon { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: #fff0ed; color: var(--red); }
.trust-item div { display: grid; }
.trust-item b { font-size: 14px; }
.trust-item small { color: var(--muted); font-size: 11px; }

.section { padding: 88px 0; }
.section-heading.centered { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section-heading h2, .about-copy h2, .order-aside h2, .contact-strip h2 { margin: 0 0 10px; font-size: clamp(30px, 4vw, 44px); line-height: 1.2; }
.section-heading p { margin: 0; color: var(--muted); }
.catalog-section { background: linear-gradient(#fff, #fffaf7); }
.catalog-toolbar { display: grid; grid-template-columns: minmax(280px, 1.7fr) minmax(170px, .65fr) minmax(170px, .65fr) auto; gap: 10px; align-items: stretch; margin-bottom: 14px; }
.search-field { display: flex; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.025); }
.search-field input { width: 100%; min-width: 0; border: 0; outline: 0; padding: 12px 14px; background: transparent; }
.search-field button { width: 48px; flex: 0 0 auto; display: grid; place-items: center; border: 0; background: transparent; color: var(--red); cursor: pointer; }
.select-filter select { width: 100%; height: 100%; padding: 0 12px; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--ink); outline: 0; }
.catalog-search-button { min-width: 86px; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.pill { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 12px; font-weight: 800; transition: .18s; }
.pill:hover { border-color: #d7b4b8; }
.pill.active { border-color: var(--red); background: var(--red); color: #fff; }
.perfume-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.perfume-card { position: relative; overflow: hidden; border: 1px solid #eee4df; border-radius: 18px; background: #fff; box-shadow: 0 8px 24px rgba(60,30,28,.04); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.perfume-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(60,30,28,.1); }
.perfume-card.is-selected { border-color: #d99ca3; box-shadow: 0 15px 38px rgba(163,19,32,.1); }
.featured-badge { position: absolute; z-index: 2; right: 12px; top: 12px; padding: 5px 9px; border-radius: 999px; background: #281b1d; color: #fff; font-size: 10px; font-weight: 800; }
.perfume-image-wrap { width: 100%; height: 225px; padding: 22px; display: grid; place-items: center; border: 0; background: linear-gradient(160deg, #fff, #fbf1ec); cursor: pointer; }
.perfume-image-wrap img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 14px rgba(0,0,0,.12)); }
.perfume-content { padding: 15px; }
.gender-chip { display: inline-flex; padding: 4px 9px; border-radius: 999px; background: #fff0f1; color: var(--red); font-size: 10px; font-weight: 800; }
.perfume-content h3 { margin: 8px 0 3px; min-height: 43px; font-size: 16px; line-height: 1.35; }
.perfume-content p { margin: 0 0 8px; min-height: 22px; color: var(--muted); font-size: 12px; }
.details-link { min-height: 40px; display: inline-flex; align-items: center; padding: 7px 2px; border: 0; background: transparent; color: var(--red); font-size: 12px; font-weight: 800; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.product-picker { margin-top: 12px; }
.add-product-button { width: 100%; min-height: 42px; }
.qty-control { height: 39px; border: 1px solid #e4c5c9; border-radius: 11px; align-items: center; justify-content: space-between; overflow: hidden; background: #fff; }
.qty-control:not([hidden]) { display: flex; }
.qty-control button { width: 40px; height: 100%; display: grid; place-items: center; border: 0; background: #fff6f4; color: var(--red); cursor: pointer; }
.qty-control strong { min-width: 42px; text-align: center; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 34px; }
.page-link, .page-current { padding: 9px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.page-link { color: var(--red); font-weight: 800; }
.page-link.is-disabled { opacity: .45; }
.page-current { color: var(--muted); font-size: 13px; }
.empty-state { padding: 50px; border: 1px dashed #dcc7bf; border-radius: 24px; background: #fff; text-align: center; }
.empty-icon { width: 80px; height: 80px; display: grid; place-items: center; margin: auto; border-radius: 50%; background: var(--red); color: #fff; font: italic 30px Georgia, serif; }
.empty-state h3 { margin: 14px 0 4px; font-size: 25px; }
.empty-state p { color: var(--muted); }

.how-section { background: #f8f3ef; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; padding: 32px 24px; border-radius: 22px; background: #fff; text-align: center; box-shadow: 0 12px 35px rgba(60,37,32,.05); }
.step-number { position: absolute; right: 16px; top: 16px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; font-weight: 900; }
.step-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 13px; border-radius: 50%; background: #fff3ef; color: var(--red); }
.step-card h3 { margin: 0 0 6px; font-size: 21px; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.about-media { position: relative; }
.about-media > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.about-seal { position: absolute; left: 28px; bottom: -24px; display: grid; padding: 17px 22px; border-radius: 16px; background: var(--red); color: #fff; box-shadow: 0 15px 35px rgba(161,19,31,.25); }
.about-seal b { font: 20px Georgia, serif; direction: ltr; }
.about-seal span { color: #f5d8d9; font-size: 12px; }
.about-copy p { color: #5e4a4e; font-size: 17px; }
.about-points { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.about-points span { display: inline-flex; align-items: center; gap: 6px; padding: 9px 12px; border-radius: 999px; background: #fff5f2; color: #6e3b3e; font-size: 12px; font-weight: 800; }

.order-section { background: linear-gradient(135deg, #D52031, #9e151f); color: #fff; }
.order-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 36px; align-items: start; }
.order-aside { padding: 20px 6px; position: sticky; top: 100px; }
.order-aside > p { color: #f0d3d6; }
.selection-summary { max-height: 360px; overflow: auto; margin-top: 24px; padding: 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.075); }
.summary-empty { padding: 14px; color: inherit; opacity: .74; font-size: 13px; }
.summary-item { display: grid; grid-template-columns: 46px minmax(0,1fr) auto; gap: 10px; align-items: center; padding: 9px 6px; border-bottom: 1px solid rgba(255,255,255,.1); }
.summary-item:last-child { border-bottom: 0; }
.summary-item img { width: 46px; height: 46px; object-fit: contain; border-radius: 9px; background: #fff; }
.summary-product { min-width: 0; display: grid; line-height: 1.35; }
.summary-product b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.summary-product small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #e5c7c9; font-size: 10px; }
.mini-qty { display: inline-flex; align-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; }
.mini-qty button { width: 31px; height: 31px; border: 0; background: rgba(255,255,255,.12); color: inherit; cursor: pointer; }
.mini-qty strong { min-width: 28px; text-align: center; font-size: 12px; }
.price-breakdown { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.16); }
.price-breakdown > div { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.price-total { margin-top: 6px; padding-top: 12px !important; border-top: 1px solid rgba(255,255,255,.16); font-size: 18px !important; }
.order-form-card { padding: 30px; border-radius: 27px; background: #fff; color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.form-title { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.form-step { width: 54px; height: 54px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; }
.form-title h2 { margin: 0; font-size: 26px; }
.form-title p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; align-content: start; gap: 7px; }
.field > span { font-size: 13px; font-weight: 800; }
.span-2 { grid-column: span 2; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #ded0ca; border-radius: 11px; padding: 12px 13px; background: #fff; outline: 0; transition: .15s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: #c6666f; box-shadow: var(--focus); }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #c62c38; background: #fffafa; }
.field-error { min-height: 18px; color: #a5232c; font-size: 11px; line-height: 1.4; }
.form-validation-note { margin: 15px 0 10px; padding: 10px 12px; border-radius: 10px; background: #fff3ed; color: #8b4a36; font-size: 13px; }
.form-validation-note.valid { background: #edf8f0; color: var(--success); }
.alert { padding: 12px 15px; border-radius: 12px; margin-bottom: 18px; font-size: 13px; }
.alert-error { border: 1px solid #f3caca; background: #fff0f0; color: #9c2424; }
.selection-error { margin-bottom: 12px; padding: 11px 12px; border: 1px solid #f1c4c8; border-radius: 11px; background: #fff2f2; color: #982931; font-size: 12px; line-height: 1.55; }
.alert p { margin: 6px 0 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.contact-strip { padding: 48px 0; background: #1d1416; color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.2fr auto 1fr; gap: 28px; align-items: center; }
.contact-strip h2 { margin: 0; font-size: 31px; }
.contact-strip p { margin: 5px 0 0; color: #cbbcbf; }
.contact-badges { display: flex; gap: 9px; flex-wrap: wrap; }
.contact-badges span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #e5d9db; font-size: 12px; }
.footer { padding: 28px 0; background: #0f0b0c; color: #bbaeb0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand div { display: grid; }
.footer-brand b { color: #fff; }
.footer-brand small { color: white; font: italic 12px Georgia, serif; }
.footer-links { display: flex; gap: 18px; font-size: 12px; }
.footer-grid > p { margin: 0; text-align: left; font-size: 11px; }

.basket-bar { position: fixed; z-index: 60; right: 0; bottom: 0; left: 0; border-top: 1px solid rgba(255,255,255,.12); background: rgba(31,19,21,.97); color: #fff; box-shadow: 0 -10px 35px rgba(0,0,0,.2); backdrop-filter: blur(14px); }
.basket-inner { min-height: 84px; display: grid; grid-template-columns: auto minmax(180px,1.2fr) auto auto; gap: 22px; align-items: center; padding-bottom: env(safe-area-inset-bottom); }
.basket-stat, .basket-total { display: grid; }
.basket-open { padding: 4px 0; border: 0; background: transparent; color: inherit; cursor: pointer; text-align: right; }
.basket-stat span, .basket-total span { color: #cdbfc1; font-size: 10px; }
.basket-stat b { font-size: 17px; }
.basket-stat i { color: var(--gold-light); font-style: normal; }
.basket-progress small { display: block; color: #d5c8ca; font-size: 11px; line-height: 1.45; }
.progress-track { height: 7px; overflow: hidden; margin-bottom: 6px; border-radius: 99px; background: rgba(255,255,255,.14); }
.progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), #fff0b6); transition: width .25s ease; }
.basket-total b { color: var(--gold-light); font-size: 16px; }
.basket-actions { display: flex; align-items: center; gap: 8px; }
.text-button { padding: 8px; border: 0; background: transparent; color: #e7dadd; cursor: pointer; font-weight: 700; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 90; display: flex; justify-content: flex-start; background: rgba(25,10,12,.62); backdrop-filter: blur(5px); }
.cart-drawer { width: min(440px, 100%); height: 100%; display: flex; flex-direction: column; background: #fff; color: var(--ink); box-shadow: 30px 0 80px rgba(0,0,0,.3); outline: 0; animation: drawer-in .2s ease both; }
@keyframes drawer-in { from { transform: translateX(-22px); opacity: .7; } to { transform: translateX(0); opacity: 1; } }
.drawer-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 22px; border-bottom: 1px solid var(--line); }
.drawer-head span { color: var(--muted); font-size: 11px; }
.drawer-head h2 { margin: 1px 0 0; font-size: 26px; }
.drawer-head .icon-button { background: #fff3f2; color: var(--red); }
.drawer-message { margin: 14px 18px 0; padding: 10px 12px; border-radius: 11px; background: #fff1eb; color: #814938; font-size: 12px; }
.drawer-message.valid { background: #edf8f0; color: var(--success); }
.drawer-items { flex: 1; overflow: auto; padding: 10px 18px; }
.drawer-items .summary-item { border-color: var(--line); }
.drawer-items .summary-product small { color: var(--muted); }
.drawer-items .mini-qty { border-color: #e6d5d0; color: var(--ink); }
.drawer-items .mini-qty button { background: #fff3f1; color: var(--red); }
.drawer-footer { padding: 18px 18px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }
.drawer-footer > div:first-child { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.drawer-footer > div:first-child span { color: var(--muted); font-size: 12px; }
.drawer-footer > div:first-child b { color: var(--red); font-size: 19px; }
.drawer-actions { display: grid; grid-template-columns: auto 1fr; gap: 9px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; padding: 24px; display: grid; place-items: center; background: rgba(25,10,12,.72); backdrop-filter: blur(6px); }
.perfume-modal { position: relative; width: min(850px,100%); max-height: min(720px,90vh); overflow: auto; border-radius: 26px; background: #fff; box-shadow: 0 40px 100px rgba(0,0,0,.4); outline: 0; }
.modal-close { position: absolute; z-index: 3; left: 16px; top: 14px; background: #fff0f1; color: var(--red); }
.modal-loading { padding: 80px 30px; color: var(--muted); text-align: center; }
.modal-loading p { margin: 0 0 14px; }
.modal-loading .btn { margin-inline: auto; }
.modal-content { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 520px; }
.modal-image { display: grid; place-items: center; padding: 40px; background: linear-gradient(145deg,#fff8f5,#f2e2db); }
.modal-image img { max-height: 400px; object-fit: contain; filter: drop-shadow(0 20px 18px rgba(0,0,0,.13)); }
.modal-copy { padding: 52px 34px 34px; }
.modal-copy h2 { margin: 10px 0 2px; font-size: 35px; line-height: 1.2; }
.modal-brand { margin: 0; color: #76585c; font-weight: 800; }
.modal-description { color: var(--muted); font-size: 14px; }
.notes-block { display: grid; gap: 8px; margin: 22px 0; }
.notes-block > div { display: grid; grid-template-columns: 75px 1fr; gap: 10px; padding: 10px 12px; border: 1px solid #eee0da; border-radius: 12px; background: #faf5f2; font-size: 13px; }
.notes-block b { color: var(--red); }
.modal-size { margin-bottom: 15px; font-size: 13px; font-weight: 800; }
.modal-picker { display: grid; gap: 7px; }
.modal-picker span { min-height: 17px; color: var(--muted); font-size: 11px; text-align: center; }

.success-page { min-height: 100vh; padding: 50px 16px; display: grid; place-items: center; background: radial-gradient(circle at top, #fff7ed, #f3e2d9); }
.success-card { width: min(760px, 100%); padding: 38px; border-radius: 30px; background: #fff; box-shadow: var(--shadow); text-align: center; }
.success-card > img { width: 78px; height: 78px; margin: 0 auto 14px; border-radius: 50%; }
.success-mark { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 50%; background: #eaf8ef; color: #198b48; }
.success-card h1 { margin: 5px; font-size: 36px; }
.success-card > p { color: var(--muted); }
.success-number { display: grid; margin: 20px 0; padding: 14px; border: 1px dashed #d9c1b8; border-radius: 14px; }
.success-number span { color: var(--muted); font-size: 11px; }
.success-number b { color: var(--red); font-size: 20px; letter-spacing: .05em; }
.success-summary { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 16px; }
.success-summary div { display: grid; padding: 14px 10px; border-left: 1px solid var(--line); }
.success-summary div:last-child { border-left: 0; }
.success-summary span { color: var(--muted); font-size: 11px; }
.success-summary b { font-size: 14px; }
.success-items { margin-top: 20px; padding: 15px; border: 1px solid var(--line); border-radius: 16px; text-align: right; }
.success-items h2 { margin: 0 0 10px; font-size: 17px; }
.success-items-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.success-item { display: flex; justify-content: space-between; gap: 10px; padding: 10px 11px; border-radius: 10px; background: var(--surface-soft); font-size: 12px; }
.success-item span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.success-item b { color: var(--red); }
.success-actions { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }

@media (max-width: 1080px) {
    .main-nav { display: none; }
    .mobile-menu-button { display: inline-grid; margin-right: auto; color: #fff; }
    .nav-cta { display: none; }
    .mobile-menu:not([hidden]) { display: grid; padding: 8px 18px 16px; gap: 2px; }
    .mobile-menu a { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 24px; }
    .hero-visual { min-height: 420px; }
    .offer-medallion { width: 120px; height: 120px; left: 0; }
    .offer-medallion strong { font-size: 36px; }
    .trust-grid { grid-template-columns: repeat(2,1fr); }
    .perfume-grid { grid-template-columns: repeat(4,1fr); }
    .contact-grid { grid-template-columns: 1fr auto; }
    .contact-badges { grid-column: 1 / -1; }
    .basket-inner { grid-template-columns: auto 1fr auto; }
    .basket-total { display: none; }
}

@media (max-width: 820px) {
    .hero-grid { grid-template-columns: 1fr; padding-top: 20px; }
    .hero-copy { padding: 42px 0 10px; text-align: center; margin-inline: auto; }
    .hero-note { display: inline-block; text-align: right; }
    .hero-actions { justify-content: center; }
    .hero-visual { min-height: 320px; padding: 0 0 44px; }
    .hero-media-frame { width: min(620px, 92%); }
    .offer-medallion { left: 5%; top: -22px; }
    .catalog-toolbar { grid-template-columns: 1fr 1fr; }
    .search-field { grid-column: 1 / -1; }
    .perfume-grid { grid-template-columns: repeat(3,1fr); }
    .about-grid, .order-grid { grid-template-columns: 1fr; }
    .order-aside { position: static; }
    .contact-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-grid .btn { justify-self: center; }
    .contact-badges { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand, .footer-links { justify-content: center; }
    .footer-grid > p { text-align: center; }
}

@media (max-width: 640px) {
    body.has-basket { padding-bottom: calc(118px + env(safe-area-inset-bottom)); }
    .container { width: min(100% - 22px, 1220px); }
    .nav-wrap { height: 68px; }
    .brand img { width: 43px; height: 43px; }
    .brand b { font-size: 14px; }
    .brand small { font-size: 11px; }
    .hero h1 { font-size: 39px; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions .btn { width: 100%; }
    .hero-visual { min-height: 250px; padding-bottom: 34px; }
    .offer-medallion { width: 102px; height: 102px; border-width: 5px; left: 1%; top: -12px; }
    .offer-medallion strong { font-size: 31px; }
    .offer-medallion b { font-size: 13px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 13px 8px; }
    .trust-icon { width: 36px; height: 36px; }
    .trust-item b { font-size: 12px; }
    .trust-item small { font-size: 11px; line-height: 1.45; }
    .section { padding: 62px 0; }
    .catalog-toolbar { grid-template-columns: 1fr; }
    .search-field { grid-column: auto; }
    .filter-pills { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
    .filter-pills::-webkit-scrollbar { display: none; }
    .pill { min-height: 44px; white-space: nowrap; }
    .perfume-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
    .perfume-image-wrap { height: 172px; padding: 14px; }
    .perfume-content { padding: 12px; }
    .perfume-content h3 { min-height: 38px; font-size: 14px; }
    .perfume-content p { font-size: 10px; }
    .details-link { min-height: 44px; font-size: 12px; }
    .add-product-button { min-height: 44px; }
    .steps-grid { grid-template-columns: 1fr; }
    .about-grid { gap: 38px; }
    .about-seal { left: 12px; bottom: -18px; }
    .order-form-card { padding: 20px; border-radius: 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .span-2 { grid-column: auto; }
    .contact-grid .btn { width: 100%; }
    .footer-links { flex-wrap: wrap; }

    .basket-inner { min-height: 96px; grid-template-columns: auto minmax(0,1fr) auto; gap: 8px; padding-block: 9px; }
    .basket-stat { align-self: start; padding-top: 3px; }
    .basket-stat b { font-size: 14px; }
    .basket-progress { min-width: 0; align-self: start; }
    .basket-progress small { min-height: 38px; font-size: 12px; line-height: 1.45; }
    .basket-actions { display: grid; grid-template-columns: 1fr; }
    .basket-actions .text-button { display: none; }
    .basket-actions .btn-outline-light, .basket-actions .btn-gold { min-height: 44px; padding: 9px 11px; font-size: 11px; min-width: 78px; }
    .progress-track { margin-top: 2px; }
    .qty-control { height: 44px; }
    .qty-control button { width: 44px; }
    .catalog-search-button { min-height: 44px; }

    .cart-drawer { width: 100%; }
    .drawer-head { padding: 18px; }
    .drawer-items { padding-inline: 12px; }
    .modal-backdrop { padding: 10px; }
    .modal-content { grid-template-columns: 1fr; }
    .modal-image { height: 245px; padding: 24px; }
    .modal-image img { max-height: 195px; }
    .modal-copy { padding: 26px 19px 21px; }
    .modal-copy h2 { font-size: 27px; }
    .notes-block > div { grid-template-columns: 60px 1fr; }
    .success-card { padding: 25px 18px; }
    .success-summary { grid-template-columns: 1fr 1fr; }
    .success-items-list { grid-template-columns: 1fr; }
    .success-actions { flex-direction: column; }
}

@media (max-width: 390px) {
    .hero h1 { font-size: 34px; }
    .trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .trust-item { gap: 7px; padding: 11px 7px; }
    .trust-icon { width: 32px; height: 32px; }
    .trust-item b { font-size: 11px; line-height: 1.35; }
    .trust-item small { font-size: 10px; line-height: 1.35; }
    .perfume-image-wrap { height: 150px; }
    .perfume-content h3 { font-size: 13px; }
    .btn-sm { padding: 8px 9px; font-size: 11px; }
    .success-summary { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
}


/* Final interaction polish */
.button-spinner {
    display: none;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border: 2px solid rgba(255,255,255,.42);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: pg-spin .7s linear infinite;
}
.btn.is-loading .button-spinner { display: inline-block; }
.btn.is-loading { cursor: wait; }
@keyframes pg-spin { to { transform: rotate(360deg); } }

.site-toast {
    position: fixed;
    z-index: 130;
    left: 20px;
    bottom: calc(108px + env(safe-area-inset-bottom));
    max-width: min(440px, calc(100vw - 28px));
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: #211719;
    color: #fff;
    box-shadow: 0 18px 48px rgba(0,0,0,.28);
    font-size: 13px;
}
.site-toast > span { min-width: 0; flex: 1; }
.site-toast button {
    min-height: 38px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 9px;
    background: transparent;
    color: var(--gold-light);
    cursor: pointer;
    font-weight: 800;
}
body:not(.has-basket) .site-toast { bottom: calc(20px + env(safe-area-inset-bottom)); }

@media (max-width: 640px) {
    .site-toast { right: 12px; left: 12px; bottom: calc(126px + env(safe-area-inset-bottom)); max-width: none; }
    body:not(.has-basket) .site-toast { bottom: calc(12px + env(safe-area-inset-bottom)); }
}


@media (max-width: 640px) {

    .basket-bar {
        width: 100%;
        max-width: 100vw;
        overflow-x: clip;
    }

    .basket-bar .basket-inner {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 9px 10px calc(9px + env(safe-area-inset-bottom));

        display: grid;
        grid-template-columns: minmax(0, 65px) minmax(0, 1fr) minmax(0, 82px);
        gap: 6px;
        box-sizing: border-box;
    }

    .basket-inner > * {
        min-width: 0;
        max-width: 100%;
    }

    .basket-stat {
        min-width: 0;
        overflow: hidden;
    }

    .basket-stat span,
    .basket-stat b {
        white-space: nowrap;
    }

    .basket-progress {
        min-width: 0;
        width: 100%;
        overflow: hidden;
    }

    .basket-progress small {
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .progress-track {
        width: 100%;
        max-width: 100%;
    }

    .basket-actions {
        width: 100%;
        min-width: 0;
    }

    .basket-actions .btn {
        width: 100%;
        min-width: 0 !important;
        padding-inline: 6px;
        white-space: nowrap;
    }
}