:root {
    --font: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ink: #18181b;
    --muted: #73737d;
    --line: #e8e8eb;
    --surface: #ffffff;
    --soft: #f5f5f7;
    --rose: #e4467e;
    --rose-dark: #c93268;
    --rose-soft: #fff0f5;
    --green: #50a85d;
    --green-dark: #3f8d4b;
    --accent: #eb560c;
    --sand: #f4ece5;
    --shadow: 0 16px 45px rgba(24, 24, 27, .08);
    --container: 1440px;
    --radius: 16px;
    --radius-lg: 24px;
    --section-gap: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font: 400 14px/1.5 var(--font);
    -webkit-font-smoothing: antialiased;
}
body.menu-open, body.catalog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.page { min-height: 60vh; }
.storefront { padding-top: 24px; }

svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Header */
.announcement { border-bottom: 1px solid var(--line); background: #fafafa; color: var(--muted); font-size: 12px; }
.announcement__inner { min-height: 32px; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.announcement__inner > span { display: none; }
.announcement__links { display: flex; align-items: center; gap: 22px; }
.announcement a:hover { color: var(--rose); }

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 5px 20px rgba(24,24,27,.035);
    backdrop-filter: blur(14px);
}
.site-header__main {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 14px;
}
.brand { display: inline-flex; align-items: center; min-width: 190px; max-width: 240px; }
.brand__logo { display: block; width: 100%; height: auto; max-height: 44px; object-fit: contain; object-position: left center; }

.catalog-button {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.catalog-button:hover { background: var(--green-dark); transform: translateY(-1px); }
.catalog-button svg { width: 18px; fill: none; }

.header-search { position: relative; min-width: 0; }
.header-search input {
    width: 100%;
    height: 44px;
    padding: 0 48px 0 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: 0;
    background: var(--soft);
    color: var(--ink);
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.header-search input:focus { border-color: var(--rose); background: #fff; box-shadow: 0 0 0 3px var(--rose-soft); }
.header-search button {
    position: absolute; inset: 0 0 0 auto; width: 46px;
    border: 0; background: transparent; cursor: pointer;
    display: grid; place-items: center;
}
.header-search svg { width: 20px; }
.header-search__suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 40;
    display: grid;
    gap: 2px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(40, 20, 30, 0.12);
}
.header-search__suggestions a {
    display: grid;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
}
.header-search__suggestions a:hover { background: var(--soft); }
.header-search__suggestions small { color: var(--muted); }

.header-actions { display: flex; align-items: center; gap: 5px; }
.header-phone { display: flex; align-items: center; gap: 7px; padding: 9px; font-weight: 650; white-space: nowrap; }
.header-phone svg { width: 19px; }
.header-phone:hover { color: var(--rose); }
.header-icon {
    position: relative;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 10px;
    transition: background .2s, color .2s;
}
.header-icon:hover { color: var(--rose); background: var(--rose-soft); }
.header-icon svg { width: 21px; }
.header-icon__badge {
    position: absolute; top: 2px; right: 2px;
    min-width: 16px; height: 16px; padding: 0 4px;
    display: grid; place-items: center;
    border: 2px solid #fff; border-radius: 99px;
    background: var(--rose); color: #fff;
    font-size: 9px; font-weight: 700;
}
.mobile-menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.mobile-cart-link { display: none; }
.header-nav-wrap { display: none; }
.header-nav { display: flex; align-items: center; gap: 3px; overflow-x: auto; scrollbar-width: none; }
.header-nav a { padding: 10px 13px; border-radius: 8px; white-space: nowrap; font-size: 13px; font-weight: 520; }
.header-nav a:hover { color: var(--rose); background: var(--rose-soft); }
.lang-switch { display: flex; padding: 2px; border-radius: 8px; background: var(--soft); }
.lang-switch a { padding: 6px 8px; border-radius: 6px; color: var(--muted); font-size: 11px; font-weight: 650; text-transform: uppercase; }
.lang-switch a.active { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,.08); }

/* Catalog drawer */
.catalog-backdrop {
    position: fixed; z-index: 90; inset: 0;
    background: rgba(20,20,24,.48);
    opacity: 0; visibility: hidden;
    transition: opacity .25s, visibility .25s;
}
.catalog-drawer {
    position: fixed; z-index: 100; inset: 0 auto 0 0;
    width: min(440px, 92vw);
    display: flex; flex-direction: column;
    background: #fff;
    box-shadow: 24px 0 70px rgba(0,0,0,.18);
    transform: translateX(-102%);
    transition: transform .28s ease;
}
.catalog-open .catalog-backdrop { opacity: 1; visibility: visible; }
.catalog-open .catalog-drawer { transform: translateX(0); }
.catalog-drawer__header {
    min-height: 76px; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 21px;
}
.catalog-drawer__header button {
    width: 42px; height: 42px; padding: 0;
    display: grid; place-items: center;
    border: 0; border-radius: 10px;
    background: var(--soft); cursor: pointer;
}
.catalog-drawer__body { flex: 1; overflow-y: auto; padding: 18px 24px 28px; }
.catalog-drawer__all {
    display: flex; justify-content: space-between;
    margin-bottom: 12px; padding: 14px 15px;
    border-radius: 10px; background: var(--green); color: #fff; font-weight: 650;
}
.catalog-drawer__section { padding: 17px 0; border-bottom: 1px solid var(--line); }
.catalog-drawer__root { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; }
.catalog-drawer__root:hover, .catalog-drawer__children a:hover { color: var(--rose); }
.catalog-drawer__children { margin-top: 11px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.catalog-drawer__children a { color: var(--muted); font-size: 13px; }
.catalog-drawer__languages { padding: 15px 24px; display: flex; gap: 8px; border-top: 1px solid var(--line); }
.catalog-drawer__languages a { padding: 7px 11px; border-radius: 8px; background: var(--soft); font-size: 12px; font-weight: 650; }
.catalog-drawer__languages a.active { background: var(--ink); color: #fff; }

/* Hero */
.hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f5f5f7;
}
.hero__viewport { position: relative; overflow: hidden; }
.hero__slide { display: none; }
.hero__slide.is-active { display: block; animation: hero-fade-in .35s ease-out; }
.hero__main {
    position: relative; overflow: hidden;
    display: block; aspect-ratio: 2.4;
    background: #f5f5f7;
}
.hero__main > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.hero__main:hover > img { transform: scale(1.015); }
.hero__cta {
    position: absolute; z-index: 2; left: clamp(20px, 4vw, 48px); bottom: clamp(20px, 4vw, 40px);
    min-height: 44px; padding: 0 20px;
    display: inline-flex; align-items: center;
    border: 1px solid rgba(255,255,255,.85); border-radius: 8px;
    background: rgba(255,255,255,.12); color: #fff; font-weight: 650;
    backdrop-filter: blur(6px);
}
.hero__controls {
    position: absolute; z-index: 3; left: 50%; bottom: 16px;
    display: flex; align-items: center; gap: 10px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.45); border-radius: 999px;
    background: rgba(28,22,26,.5); color: #fff;
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
}
.hero__pagination { display: flex; align-items: center; gap: 7px; }
.hero__arrow,
.hero__dot {
    margin: 0; padding: 0;
    border: 0; background: transparent; color: inherit; cursor: pointer;
}
.hero__arrow {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    border-radius: 50%; font-size: 18px;
}
.hero__arrow:hover { background: rgba(255,255,255,.18); }
.hero__dot {
    width: 9px; height: 9px;
    border: 1px solid rgba(255,255,255,.9); border-radius: 50%;
}
.hero__dot.is-active { background: #fff; transform: scale(1.15); }
.hero__arrow:focus-visible,
.hero__dot:focus-visible,
.hero__main:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
@keyframes hero-fade-in {
    from { opacity: .35; }
    to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .hero__slide.is-active { animation: none; }
    .hero__main > img { transition: none; }
}
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,10,8,.65), rgba(20,10,8,.05) 70%); }
.hero__content { position: relative; z-index: 1; width: min(620px, 75%); padding: clamp(32px, 5vw, 68px); display: flex; flex-direction: column; align-items: flex-start; }
.hero__eyebrow, .section-heading__eyebrow {
    color: var(--rose); font-size: 12px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
}
.hero__eyebrow { margin-bottom: 14px; padding: 7px 11px; border-radius: 99px; background: rgba(255,255,255,.92); }
.hero__title { font-size: clamp(32px, 4.3vw, 64px); line-height: 1.02; letter-spacing: -.045em; text-wrap: balance; }
.hero__text { max-width: 470px; margin-top: 18px; font-size: clamp(15px, 1.4vw, 18px); color: rgba(255,255,255,.9); }
.button {
    min-height: 46px; margin-top: 26px; padding: 0 21px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 0; border-radius: 10px;
    background: var(--rose); color: #fff; font-weight: 650;
    transition: transform .2s, background .2s;
}
.button:hover { color: #fff; background: var(--rose-dark); transform: translateY(-2px); }
.button--light { background: #fff; color: var(--ink); }
.button--light:hover { color: var(--rose); background: #fff; }
.hero__aside { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.promo-card {
    position: relative; min-height: 0; overflow: hidden;
    display: flex; align-items: flex-end; padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--soft);
}
.promo-card--rose { background: linear-gradient(135deg, #8d3663, var(--rose)); color: #fff; }
.promo-card--sand { background: var(--sand); }
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.promo-card:hover img { transform: scale(1.03); }
.promo-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.56)); }
.promo-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
.promo-card__body small { margin-bottom: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; opacity: .8; }
.promo-card__body strong { font-size: clamp(20px, 2vw, 29px); line-height: 1.08; letter-spacing: -.03em; }
.promo-card__body > span { margin-top: 13px; font-size: 13px; font-weight: 600; }

/* Sections */
.section { margin-top: var(--section-gap); }
.section-heading { margin-bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-heading__eyebrow { display: block; margin-bottom: 6px; }
.section-heading h2, .deal-section h2, .about-section h2 {
    margin: 0; font-size: clamp(27px, 3vw, 42px); line-height: 1.08; letter-spacing: -.035em;
}
.section-heading > a { padding-bottom: 5px; color: var(--muted); font-size: 13px; font-weight: 600; }
.section-heading > a:hover { color: var(--rose); }

/* Home accent titles (CS-Cart parity) */
.home-title {
    margin: 0 0 28px;
    text-align: center;
}
.home-title h2 {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 750;
}
.home-title__accent { color: var(--accent); }

.interest-tabs {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 28px;
    margin: 0 0 28px; padding-bottom: 2px;
}
.interest-tabs__btn {
    padding: 8px 2px 10px;
    border: 0; border-bottom: 2px solid transparent;
    background: transparent; color: var(--muted);
    font: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
}
.interest-tabs__btn.is-active,
.interest-tabs__btn:hover { color: var(--ink); border-bottom-color: var(--ink); }
.interest-panel[hidden] { display: none; }

/* Categories */
.category-section { margin-top: 28px; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.category-card { min-width: 0; text-align: center; }
.category-card__visual {
    aspect-ratio: 1.35; overflow: hidden;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--soft);
    transition: transform .25s, box-shadow .25s;
}
.category-card__visual img { width: 88%; height: 88%; object-fit: contain; transition: transform .3s; }
.category-card__visual svg { width: 46px; height: 46px; color: var(--rose); }
.category-card:hover .category-card__visual { transform: translateY(-3px); box-shadow: var(--shadow); }
.category-card:hover img { transform: scale(1.04); }
.category-card__name { display: block; margin-top: 12px; font-weight: 600; line-height: 1.25; font-size: 15px; }
.category-card__count { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }

.promo-strip__grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
}
.promo-strip__card {
    overflow: hidden; border-radius: 12px; background: var(--soft);
    aspect-ratio: 1.55;
}
.promo-strip__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.promo-strip__card:hover img { transform: scale(1.03); }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.news-card { min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.news-card__visual {
    aspect-ratio: 1.45; overflow: hidden; border-radius: 12px; background: var(--soft);
}
.news-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.news-card:hover .news-card__visual img { transform: scale(1.03); }
.news-card__meta { display: grid; gap: 6px; }
.news-card__meta time { color: var(--muted); font-size: 12px; }
.news-card__meta strong { font-size: 15px; line-height: 1.35; font-weight: 650; }
.news-section__more { margin-top: 18px; text-align: center; }
.news-section__more a { color: var(--muted); font-size: 13px; font-weight: 600; }
.news-section__more a:hover { color: var(--rose); }

.newsletter-section {
    margin-top: var(--section-gap);
    padding: clamp(28px, 5vw, 48px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fff7f0, #f5f5f7);
    border: 1px solid var(--line);
}
.newsletter-section__inner {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: end;
}
.newsletter-section h2 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.03em; }
.newsletter-section p { margin: 0; color: var(--muted); max-width: 42ch; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
    flex: 1; min-width: 0; height: 46px; padding: 0 14px;
    border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
.newsletter-form .button { margin-top: 0; }
.newsletter-form__success { margin: 10px 0 0; color: var(--green-dark); font-weight: 600; }
.newsletter-form__error { margin: 10px 0 0; color: var(--rose-dark); font-weight: 600; }
.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;
}

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.product-card {
    min-width: 0; overflow: hidden;
    display: flex; flex-direction: column;
    border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.product-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.product-card__visual { position: relative; overflow: hidden; margin: 7px; border-radius: 12px; background: var(--soft); }
.product-card__image { aspect-ratio: 1; display: grid; place-items: center; }
.product-card__image img { width: 92%; height: 92%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s; }
.product-card:hover .product-card__image img { transform: scale(1.045); }
.product-card__placeholder { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; color: var(--rose); background: var(--rose-soft); font-weight: 700; }
.product-card__tags { position: absolute; z-index: 2; top: 10px; left: 10px; display: flex; flex-wrap: wrap; gap: 5px; max-width: calc(100% - 56px); }
.tag { padding: 5px 8px; border-radius: 6px; background: var(--ink); color: #fff; font-size: 9px; line-height: 1; font-weight: 750; text-transform: uppercase; }
.tag--sale { background: var(--rose); }
.tag--out { background: rgba(24,24,27,.7); }
.product-card__favorite-form { position: absolute; z-index: 2; top: 8px; right: 8px; margin: 0; }
.product-card__favorite {
    position: absolute; z-index: 2; top: 8px; right: 8px;
    width: 36px; height: 36px; padding: 0;
    display: grid; place-items: center;
    border: 0; border-radius: 50%;
    background: rgba(255,255,255,.9); cursor: pointer; color: inherit; text-decoration: none;
    transition: color .2s, transform .2s;
}
.product-card__favorite-form .product-card__favorite { position: static; }
.product-card__favorite:hover { color: var(--rose); transform: scale(1.08); }
.product-card__favorite svg { width: 18px; }
.product-card__brand a { color: inherit; text-decoration: none; }
.product-card__body { flex: 1; padding: 9px 15px 15px; display: flex; flex-direction: column; }
.product-card__brand { margin: 0 0 5px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-card__name { min-height: 39px; margin: 0 0 8px; font-size: 14px; font-weight: 520; line-height: 1.35; }
.product-card__name a { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.product-card__name a:hover { color: var(--rose); }
.product-card__rating { margin-bottom: 9px; display: flex; align-items: center; gap: 4px; color: #e8a111; font-size: 11px; }
.product-card__rating small { color: var(--muted); }
.product-card__footer { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.product-card__price { display: flex; flex-direction: column; font-size: 17px; font-weight: 700; line-height: 1.2; }
.product-card__price del { margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 500; }
.product-card__cart {
    flex: 0 0 auto; width: 38px; height: 38px; padding: 0;
    display: grid; place-items: center;
    border: 0; border-radius: 10px; background: var(--green); color: #fff; cursor: pointer;
    transition: background .2s, transform .2s;
}
.product-card__cart:hover { background: var(--green-dark); transform: scale(1.04); }
.product-card__cart:disabled { background: #d3d3d7; cursor: not-allowed; transform: none; }
.product-card__cart svg { width: 18px; }
.empty-state { padding: 38px; border-radius: var(--radius); background: var(--soft); color: var(--muted); text-align: center; }

/* Catalog and product pages */
.inner-page { padding-top: 26px; }
.breadcrumbs {
    margin-bottom: 28px; display: flex; align-items: center; gap: 8px;
    overflow: hidden; color: var(--muted); font-size: 12px; white-space: nowrap;
}
.breadcrumbs a:hover { color: var(--rose); }
.breadcrumbs span:last-child { overflow: hidden; color: var(--ink); text-overflow: ellipsis; }
.catalog-page { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 38px; align-items: start; }
.catalog-sidebar {
    position: sticky; top: 104px;
    max-height: calc(100vh - 130px); overflow-y: auto;
    padding: 20px;
    border: 1px solid var(--line); border-radius: var(--radius);
}
.catalog-sidebar h2 { margin: 0 0 13px; font-size: 18px; }
.catalog-sidebar a { display: block; padding: 8px 10px; border-radius: 8px; color: var(--muted); font-size: 13px; }
.catalog-sidebar a:hover, .catalog-sidebar a.active { background: var(--rose-soft); color: var(--rose-dark); }
.catalog-sidebar__group { margin-top: 3px; }
.catalog-sidebar__group > a:first-child { color: var(--ink); font-weight: 650; }
.catalog-sidebar__child { padding-left: 20px !important; font-size: 12px !important; }
.catalog-results { min-width: 0; }
.catalog-results__heading { margin-bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.catalog-results__heading h1 { margin: 4px 0 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.catalog-results__heading > span { color: var(--muted); font-size: 12px; white-space: nowrap; }
.catalog-filters {
    margin-bottom: 28px; padding: 18px;
    border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft);
}
.catalog-filters__top { display: grid; grid-template-columns: 1.4fr repeat(4, minmax(120px, .8fr)); gap: 12px; }
.catalog-filters label { min-width: 0; color: var(--muted); font-size: 12px; }
.catalog-filters label > span, .catalog-filters label > strong { display: block; margin-bottom: 5px; color: var(--ink); }
.catalog-filters input[type="search"],
.catalog-filters input[type="number"],
.catalog-filters select,
.product-options select {
    width: 100%; min-height: 40px; padding: 0 10px;
    border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink);
}
.catalog-filters__groups { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-filters details { position: relative; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.catalog-filters summary { padding: 9px 12px; cursor: pointer; font-size: 12px; font-weight: 650; }
.catalog-filters__choices {
    position: absolute; z-index: 10; top: calc(100% + 5px); left: 0;
    width: max-content; min-width: 210px; max-width: 320px; max-height: 280px; overflow-y: auto;
    padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--shadow);
}
.catalog-filters__choices label { padding: 6px; display: flex; align-items: center; gap: 8px; }
.catalog-filters__actions { margin-top: 15px; display: flex; align-items: center; gap: 14px; }
.catalog-filters__actions button {
    min-height: 40px; padding: 0 17px; border: 0; border-radius: 8px;
    background: var(--green); color: #fff; cursor: pointer; font-weight: 650;
}
.catalog-filters__actions a { color: var(--muted); font-size: 12px; }
.product-grid--catalog { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pagination { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.pagination a, .pagination span {
    width: 42px; height: 42px; display: grid; place-items: center;
    border: 1px solid var(--line); border-radius: 10px;
}
.pagination a:hover { border-color: var(--rose); color: var(--rose); }
.pagination span { color: #bbb; }

.product-page { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.product-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}
.product-layout__main { min-width: 0; }
.product-layout .catalog-sidebar { position: sticky; top: 104px; }
.product-gallery { min-width: 0; display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 14px; }
.product-gallery__main {
    position: relative;
    grid-column: 2;
    min-height: 560px; display: grid; place-items: center;
    border-radius: var(--radius-lg); background: var(--soft);
}
.product-gallery__main > img,
.product-gallery__zoom img { width: 90%; height: 520px; object-fit: contain; mix-blend-mode: multiply; }
.product-gallery__badge {
    position: absolute; top: 14px; left: 14px; z-index: 1;
    padding: 6px 10px; border-radius: 999px; background: var(--rose); color: #fff; font-size: 13px; font-weight: 700;
}
.product-gallery__zoom { display: grid; place-items: center; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.product-gallery__thumbs { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; gap: 10px; }
.product-gallery__thumbs button {
    width: 76px; height: 76px; padding: 4px;
    border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer;
}
.product-gallery__thumbs button.active { border-color: var(--rose); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.product-info { position: sticky; top: 104px; padding-top: 12px; }
.product-info__brand { display: inline-block; margin: 0 0 10px; color: var(--rose); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.product-info__discount { display: inline-flex; align-items: center; margin-left: 4px; padding: 4px 8px; border-radius: 999px; background: #ffe4ea; color: var(--rose); font-size: 13px; font-weight: 700; }
.product-buy { display: grid; gap: 14px; margin-top: 18px; }
.product-buy__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-entered-price { display: grid; gap: 7px; }
.product-entered-price input {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 14px;
    font: inherit;
}
.product-entered-price small { color: var(--muted); }
.product-qty { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.product-qty__label { font-weight: 600; }
.product-qty__controls { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.product-qty__controls button { width: 40px; height: 40px; border: 0; background: #f6f6f7; font-size: 18px; cursor: pointer; }
.product-qty__controls input { width: 56px; height: 40px; border: 0; text-align: center; font: inherit; }
.product-secondary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.product-secondary-actions form { margin: 0; }
.product-secondary-actions__btn {
    width: 100%; min-height: 44px; padding: 0 14px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 11px;
    background: #fff; color: var(--ink); font: inherit; font-weight: 600; cursor: pointer;
    text-decoration: none;
}
.product-secondary-actions__btn:hover { border-color: var(--rose); color: var(--rose); }
.product-share { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 16px; color: var(--muted); font-size: 14px; }
.product-share a, .product-share button { border: 0; background: transparent; color: var(--ink); text-decoration: underline; cursor: pointer; font: inherit; }
.product-callback { margin-top: 18px; }
.product-tabs { margin-top: var(--section-gap); padding-top: 28px; border-top: 1px solid var(--line); }
.product-tabs__nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.product-tabs__nav button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font: inherit; }
.product-tabs__nav button[aria-selected="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.product-tabs__panel h3 { margin: 0 0 12px; font-size: 20px; }
.product-tabs__panel p { margin: 0 0 16px; color: var(--muted); line-height: 1.75; }
.product-assets__videos { display: grid; gap: 16px; }
.product-assets__videos iframe { width: 100%; min-height: 320px; border: 0; border-radius: 16px; }
.product-lightbox { border: 0; padding: 0; max-width: min(92vw, 960px); background: transparent; }
.product-lightbox::backdrop { background: rgba(0,0,0,.72); }
.product-lightbox img { display: block; width: 100%; height: auto; border-radius: 16px; }
.product-lightbox button { position: absolute; top: 8px; right: 8px; width: 40px; height: 40px; border: 0; border-radius: 999px; background: #fff; font-size: 24px; cursor: pointer; }
.product-info__stickers { margin-bottom: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.product-info__stickers span { padding: 5px 8px; border-radius: 6px; font-size: 10px; font-weight: 700; }
.product-info h1 { margin: 0; font-size: clamp(30px, 3.5vw, 48px); line-height: 1.08; letter-spacing: -.035em; }
.product-info__meta { margin-top: 15px; display: flex; gap: 18px; color: var(--muted); font-size: 12px; }
.product-info__lead { margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.product-info__price { margin-top: 28px; display: flex; align-items: baseline; gap: 13px; }
.product-info__price strong { font-size: 32px; }
.product-info__price del { color: var(--muted); font-size: 16px; }
.stock-status { margin: 13px 0; color: var(--rose-dark); font-size: 13px; font-weight: 650; }
.stock-status.in-stock { color: var(--green-dark); }
.product-info__cart {
    min-height: 52px; padding: 0 18px;
    border: 0; border-radius: 11px;
    background: var(--green); color: #fff; font: inherit; font-weight: 700; cursor: pointer;
}
.product-info__cart:hover { background: var(--green-dark); }
.product-info__cart:disabled { background: #d2d2d6; cursor: not-allowed; }
.product-info__oneclick {
    min-height: 52px; padding: 0 18px;
    border: 1px solid var(--line); border-radius: 11px;
    background: #fff; color: var(--ink); font: inherit; font-weight: 700; cursor: pointer;
}
.product-info__oneclick:hover { border-color: var(--ink); }
.product-options { margin-top: 24px; padding-top: 21px; border-top: 1px solid var(--line); }
.product-options > label { display: block; }
.product-options > label + label { margin-top: 17px; }
.product-options strong { display: block; margin-bottom: 8px; }
.product-options__error { margin: 10px 0 0; color: var(--rose-dark); font-size: 12px; }
.product-info__tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.product-info__tags a { padding: 5px 8px; border-radius: 99px; background: var(--rose-soft); color: var(--rose-dark); font-size: 11px; }
.product-description { margin-top: var(--section-gap); display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; padding-top: 42px; border-top: 1px solid var(--line); }
.product-description h2 { margin: 0 0 16px; font-size: 25px; }
.product-description p { margin: 0; color: var(--muted); line-height: 1.75; }
.product-features { margin: 0; }
.product-features div { padding: 9px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; border-bottom: 1px solid var(--line); }
.product-features dt { color: var(--muted); }
.product-features dd { margin: 0; font-weight: 600; }
.product-assets { margin-top: 40px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.product-assets h2 { margin: 0 0 14px; }
.product-assets__links { display: flex; flex-direction: column; gap: 8px; }
.product-assets__links a { padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px; }
.product-assets__links a:hover { border-color: var(--rose); color: var(--rose); }
.product-assets__links small { margin-left: 6px; color: var(--muted); }
.product-about { margin-top: var(--section-gap); padding-top: 28px; border-top: 1px solid var(--line); }
.product-about h2 { margin: 0 0 14px; font-size: 22px; letter-spacing: -.02em; }
.product-about__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.product-about__tabs button {
    padding: 8px 18px; border: 1px solid var(--line); border-radius: 999px; background: #fff;
    color: var(--ink); font: inherit; font-size: 15px; font-weight: 500; cursor: pointer;
}
.product-about__tabs button[aria-selected="true"] {
    background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 600;
}
.product-about__body { color: var(--muted); font-size: 14px; line-height: 1.65; word-break: break-word; }
.abc-composition__text { margin: 0; }
.abc-components { margin: 28px 0 8px; padding-top: 20px; border-top: 1px solid var(--line); }
.abc-components__title { margin: 0 0 14px; font-size: 18px; font-weight: 700; }
.abc-components__list { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; margin: 0; padding: 0; }
.abc-components__item { flex: 0 0 auto; }
.abc-components__link {
    display: flex; flex-direction: column; align-items: center; width: 88px;
    text-decoration: none; color: var(--ink);
}
.abc-components__link:hover { opacity: .85; }
.abc-components__link img {
    width: 72px; height: 72px; padding: 8px; box-sizing: border-box;
    object-fit: contain; object-position: center; border-radius: 12px; background: #f4f6f9;
}
.abc-components__placeholder {
    display: block; width: 72px; height: 72px; border-radius: 12px;
    background: linear-gradient(135deg, #f4f6f9 0%, #e8ecf1 100%);
}
.abc-components__label {
    margin-top: 6px; font-size: 11px; line-height: 1.25; text-align: center;
    max-width: 88px; word-break: break-word;
}
.product-tabs--secondary { margin-top: 28px; }
.product-components { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.product-components__item {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: inherit;
}
.product-components__item:hover { border-color: var(--rose); color: var(--rose); }
.product-components__icon {
    flex: 0 0 auto; width: 44px; height: 44px; overflow: hidden;
    display: grid; place-items: center; border-radius: 10px; background: var(--soft); font-weight: 700;
}
.product-components__icon img { width: 100%; height: 100%; object-fit: contain; padding: 4px; box-sizing: border-box; }
.components-hero { margin-bottom: 28px; max-width: 720px; }
.components-hero h1 { margin: 8px 0 12px; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.03em; }
.components-hero p { margin: 0; color: var(--muted); line-height: 1.6; }
.components-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.component-card {
    display: grid; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 16px;
    text-decoration: none; color: inherit; background: #fff;
}
.component-card:hover { border-color: var(--rose); }
.component-card__visual {
    aspect-ratio: 1; display: grid; place-items: center; overflow: hidden;
    border-radius: 12px; background: var(--soft);
}
.component-card__visual img { width: 78%; height: 78%; object-fit: contain; }
.component-card__placeholder {
    display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
    background: var(--rose-soft); color: var(--rose); font-weight: 700;
}
.component-card__placeholder--lg { width: 96px; height: 96px; font-size: 36px; }
.component-card__body { display: grid; gap: 4px; }
.component-card__body strong { font-size: 14px; line-height: 1.35; }
.component-card__body small { color: var(--muted); font-size: 12px; }
.component-page {
    display: grid; grid-template-columns: minmax(180px, 280px) minmax(0, 1fr); gap: clamp(24px, 5vw, 56px);
    align-items: start; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.component-page__visual {
    aspect-ratio: 1; display: grid; place-items: center; overflow: hidden;
    border-radius: 20px; background: var(--soft);
}
.component-page__visual img { width: 100%; height: 100%; object-fit: cover; }
.component-page__info h1 { margin: 8px 0 16px; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.03em; }
.component-page__description { margin: 0 0 18px; color: var(--muted); line-height: 1.75; }
.component-page__meta { margin: 0 0 18px; font-weight: 600; }

/* Deal */
.deal-section {
    min-height: 430px; margin-top: var(--section-gap); overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg); background: linear-gradient(135deg, #f8e4ec, #f9f3ef);
}
.deal-section__content { padding: clamp(34px, 6vw, 78px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.deal-section__content > p { max-width: 500px; margin: 16px 0; color: var(--muted); font-size: 16px; }
.deal-section__name { max-width: 520px; font-size: 17px; }
.deal-section__price { margin-top: 12px; display: flex; align-items: baseline; gap: 11px; font-size: 25px; font-weight: 750; }
.deal-section__price del { color: var(--muted); font-size: 15px; font-weight: 500; }
.deal-section__visual { position: relative; display: grid; place-items: center; padding: 35px; }
.deal-section__visual img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 25px 32px rgba(70,35,48,.17)); }
.deal-section__discount { position: absolute; z-index: 2; top: 36px; right: 42px; width: 78px; height: 78px; display: grid; place-items: center; border-radius: 50%; background: var(--rose); color: #fff; font-size: 20px; font-weight: 750; transform: rotate(8deg); }

/* Benefits / about */
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.benefit-card { display: flex; align-items: flex-start; gap: 14px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.benefit-card__icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--rose-soft); color: var(--rose); font-size: 18px; font-weight: 700; }
.benefit-card h3 { margin: 1px 0 5px; font-size: 14px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.about-section {
    margin-top: var(--section-gap);
    padding: clamp(8px, 2vw, 16px) 0;
    display: grid;
    gap: 28px;
}
.about-section__lead .section-heading__eyebrow { color: var(--accent); }
.about-section__lead h2 { margin: 0 0 10px; font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -.03em; }
.about-section__subtitle { margin: 0; font-size: clamp(18px, 2vw, 24px); font-weight: 650; line-height: 1.3; }
.about-section__body { max-width: 920px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.about-section__body h3 { margin: 28px 0 10px; color: var(--ink); font-size: 20px; }
.about-section__brands { margin: 12px 0 0; padding-left: 18px; display: grid; gap: 10px; }
.about-section__brands strong { color: var(--ink); }
.about-section__benefits { margin-top: 18px; }
.about-section__closing { margin: 28px 0 0; color: var(--ink); font-weight: 600; }

/* Footer */
.footer { margin-top: var(--section-gap); padding: 58px 0 26px; background: var(--soft); border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 44px; }
.footer__brand { display: inline-block; max-width: 220px; }
.footer__brand img { display: block; width: 100%; height: auto; max-height: 48px; object-fit: contain; object-position: left center; }
.footer__tagline { max-width: 330px; margin: 12px 0 18px; color: var(--muted); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { padding: 8px 11px; border: 1px solid var(--line); border-radius: 8px; font-size: 12px; font-weight: 600; }
.footer__heading { margin: 0 0 15px; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 13px; }
.footer a:hover { color: var(--rose); }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 11px; }

/* Storefront commerce */
.commerce-page { padding-top: 44px; }
.commerce-page h1 { margin: 0 0 26px; font-size: clamp(28px, 4vw, 44px); }
.commerce-page h2 { margin: 28px 0 16px; }
.commerce-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 44px; align-items: start; }
.cart-line, .order-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto auto; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line small { display: block; margin-top: 5px; color: var(--muted); }
.cart-line form { display: flex; gap: 8px; }
.cart-line input { width: 72px; }
.commerce-summary, .panel, .result-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.commerce-summary { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.commerce-summary strong { font-size: 22px; }
.commerce-summary [data-quote-lines] { display: grid; gap: 10px; }
.commerce-summary [data-quote-lines] > span { display: grid; gap: 6px; }
.gift-option { display: grid; gap: 4px; color: var(--muted); font-size: 13px; }
.gift-option select { width: 100%; }
.button { display: inline-flex; min-height: 42px; padding: 10px 18px; align-items: center; justify-content: center; border: 0; border-radius: 10px; background: var(--rose); color: #fff; cursor: pointer; font-weight: 650; }
.button--muted { background: var(--soft); color: var(--ink); border: 1px solid var(--line); }
.button-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 14px; }
.link-danger { padding: 0; border: 0; background: transparent; color: #b42318; cursor: pointer; }
.commerce-form { display: grid; gap: 15px; }
.commerce-form label { display: grid; gap: 6px; font-weight: 600; }
.commerce-form input, .commerce-form select, .commerce-form textarea, .cart-line input { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.commerce-form .check { display: flex; align-items: center; gap: 8px; }
.commerce-form .check input { width: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth-card { max-width: 560px; }
.notice, .error { padding: 12px 14px; border-radius: 9px; background: #ecfdf3; color: #067647; }
.error { background: #fef3f2; color: #b42318; }
.empty-state { padding: 50px 24px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; color: var(--muted); }
.account-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 44px; }
.account-nav { display: flex; flex-direction: column; gap: 4px; }
.account-nav a, .account-nav button { width: 100%; padding: 11px 12px; border: 0; border-radius: 8px; background: transparent; text-align: left; cursor: pointer; }
.account-nav a:hover, .account-nav button:hover { background: var(--soft); color: var(--rose); }
.address-list, .commerce-products, .compare-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; }
.compare-table th, .compare-table td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table thead th { min-width: 180px; background: var(--soft); }
.compare-table tbody th { width: 160px; background: var(--soft); font-weight: 650; }
.compare-table__image { display: block; width: 96px; height: 96px; margin-bottom: 10px; border-radius: 14px; object-fit: cover; }
.compare-differences-toggle { width: max-content; margin: 0 0 14px; }
.compare-table--differences-only tr[data-differs="false"] { display: none; }
.product-reviews { margin-top: 48px; display: grid; gap: 18px; }
.product-reviews__list { display: grid; gap: 12px; }
.product-reviews__item header { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 8px; }
.product-reviews__verified { color: #067647; font-size: 13px; font-weight: 650; }
.product-reviews__form { margin-top: 8px; max-width: 560px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.result-card { max-width: 680px; margin: 30px auto; padding: 50px; text-align: center; }
.result-card--success { background: #ecfdf3; border-color: #abefc6; }

@media (max-width: 1180px) {
    .site-header__main { grid-template-columns: auto auto 1fr; }
    .header-actions { display: none; }
    .hero { grid-template-columns: minmax(0, 1.7fr) minmax(260px, .8fr); }
    .hero__main { min-height: 0; }
    .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    :root { --section-gap: 52px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .commerce-grid, .account-grid { grid-template-columns: 1fr; }
    .account-nav { flex-direction: row; overflow-x: auto; }
    .cart-line, .order-row { grid-template-columns: 1fr auto; }
    .address-list, .commerce-products, .compare-grid { grid-template-columns: 1fr 1fr; }
    .announcement { display: none; }
    .site-header__main { min-height: 64px; grid-template-columns: auto 1fr auto; gap: 8px; }
    .mobile-menu-button { display: grid; place-items: center; }
    .mobile-cart-link {
        width: 42px; height: 42px; display: grid; place-items: center;
        color: var(--ink); border: 1px solid var(--line); border-radius: 10px;
    }
    .mobile-cart-link svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
    .brand { min-width: 0; max-width: 160px; justify-self: center; }
    .brand__logo { max-height: 36px; }
    .catalog-button { display: none; }
    .header-search { display: none; }
    .header-nav-wrap {
        position: fixed; inset: 64px 0 0;
        width: 100%; padding: 20px;
        display: none; align-items: stretch; flex-direction: column; justify-content: flex-start;
        background: #fff;
    }
    .menu-open .header-nav-wrap { display: flex; }
    .header-nav { flex-direction: column; align-items: stretch; }
    .header-nav a { padding: 13px; font-size: 16px; }
    .lang-switch { align-self: flex-start; }
    .hero { grid-template-columns: 1fr; }
    .hero__main { min-height: 0; }
    .hero__aside { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .promo-card { min-height: 200px; }
    .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .promo-strip__grid, .news-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-section__inner { grid-template-columns: 1fr; }
    .deal-section { grid-template-columns: 1fr; }
    .deal-section__visual { min-height: 320px; order: -1; }
    .about-section { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-page, .product-layout { grid-template-columns: 1fr; }
    .catalog-sidebar { display: none; }
    .catalog-filters__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-page { grid-template-columns: 1fr; }
    .product-buy__actions,
    .product-secondary-actions { grid-template-columns: 1fr; }
    .component-page { grid-template-columns: 1fr; }
    .product-gallery__main { min-height: 430px; }
    .product-gallery__main > img,
    .product-gallery__zoom img { height: 390px; }
    .product-info { position: static; }
    .product-info__cart,
    .product-info__oneclick { width: 100%; }
    .product-description { grid-template-columns: 1fr; gap: 34px; }
    .product-assets { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    :root { --section-gap: 42px; }
    .container { width: min(calc(100% - 20px), var(--container)); }
    .brand { max-width: 140px; }
    .brand__logo { max-height: 32px; }
    .hero__main { min-height: 0; }
    .hero__controls { right: 12px; bottom: 10px; left: auto; transform: none; }
    .hero__cta { left: 12px; bottom: 10px; padding: 0 14px; }
    .hero__content { width: 94%; padding: 26px; }
    .hero__title { font-size: 35px; }
    .hero__aside { grid-template-columns: 1fr; }
    .promo-card { min-height: 180px; }
    .section-heading { align-items: center; }
    .section-heading h2 { font-size: 28px; }
    .category-grid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
    .category-card { flex: 0 0 132px; scroll-snap-align: start; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
    .product-grid--scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 2px 18px; }
    .product-grid--scroll .product-card { flex: 0 0 76vw; scroll-snap-align: start; }
    .product-card__body { padding: 7px 11px 12px; }
    .product-card__name { font-size: 13px; }
    .product-card__price { font-size: 15px; }
    .deal-section__visual { min-height: 250px; }
    .deal-section__content { padding: 28px; }
    .benefit-grid { grid-template-columns: 1fr; }
    .about-section { padding: 0; }
    .promo-strip__grid, .news-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .footer__bottom { flex-direction: column; }
    .catalog-drawer__children { grid-template-columns: 1fr; }
    .catalog-results__heading { align-items: flex-start; flex-direction: column; }
    .catalog-filters__top { grid-template-columns: 1fr; }
    .product-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-gallery { grid-template-columns: 1fr; }
    .product-gallery__main { grid-column: 1; min-height: 340px; }
    .product-gallery__main > img,
    .product-gallery__zoom img { height: 310px; }
    .product-gallery__thumbs { grid-column: 1; grid-row: auto; flex-direction: row; overflow-x: auto; }
    .product-info h1 { font-size: 29px; }
}

/* Storefront parity: brands/promotions/contacts/checkout extras */
.header-callback {
    border: 1px solid color-mix(in srgb, var(--rose) 35%, transparent);
    background: #fff;
    color: var(--rose);
    border-radius: 999px;
    padding: 8px 14px;
    font: inherit;
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
    white-space: nowrap;
}
.header-callback:hover { background: color-mix(in srgb, var(--rose) 8%, #fff); }
.promotion-list { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.promotion-card {
    border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
    border-radius: 18px;
    padding: 22px;
    background: #fff;
    display: grid;
    gap: 10px;
}
.promotion-card__badge {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--rose) 12%, #fff);
    color: var(--rose);
    font-size: 13px;
    font-weight: 700;
}
.promotion-card__meta { margin: 0; color: var(--muted); font-size: 13px; }
.promotion-card__image { display: block; margin: -22px -22px 14px; overflow: hidden; border-radius: 20px 20px 0 0; }
.promotion-card__image img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.promotion-card h2 a { color: inherit; text-decoration: none; }
.promotion-detail__hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 440px); gap: 32px; align-items: center; margin: 24px 0; }
.promotion-detail__hero img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 24px; }
.promotion-detail__lead { max-width: 720px; color: var(--muted); font-size: 18px; }
.promotion-detail__discount { color: var(--primary); font-size: clamp(28px, 5vw, 52px); font-weight: 800; margin: 16px 0; }
.promotion-detail__content { margin: 30px 0; max-width: 900px; }
@media (max-width: 760px) { .promotion-detail__hero { grid-template-columns: 1fr; } }
.gift-form, .contacts-grid { max-width: 720px; }
.gift-certificate-preview { position: relative; overflow: hidden; margin: 8px 0 20px; padding: clamp(24px, 5vw, 46px); border-radius: 26px; color: #fff; background: linear-gradient(135deg, #74295f, #bd5f8c 60%, #e3a45f); box-shadow: 0 20px 45px rgba(116, 41, 95, .2); }
.gift-certificate-preview::after { content: ''; position: absolute; width: 180px; height: 180px; right: -45px; top: -70px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; }
.gift-certificate-preview__eyebrow { margin: 0 0 26px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.gift-certificate-preview strong { display: block; font-size: clamp(32px, 7vw, 58px); line-height: 1; }
.gift-certificate-preview blockquote { min-height: 48px; margin: 22px 0; font-size: 18px; font-style: italic; }
.contacts-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; }
.contacts-card {
    border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
    border-radius: 18px;
    padding: 22px;
    background: #fff;
}
.contacts-map { margin-top: 14px; border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; }
.contacts-map iframe { width: 100%; height: 100%; border: 0; }
.loyalty-panel { margin-bottom: 24px; }
.loyalty-history { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.loyalty-history li { display: grid; grid-template-columns: 90px 1fr auto; gap: 10px; font-size: 13px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.inline-field { display: flex; gap: 8px; align-items: center; }
.inline-field input { flex: 1; }
.payment-instructions { margin: 0 0 12px; padding: 12px 14px; border-radius: 12px; background: color-mix(in srgb, var(--rose) 8%, #fff); font-size: 13px; }
.button--danger { background: #b42318; border-color: #b42318; }
.category-banners__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.category-banners__item {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    min-height: 120px;
    background: #f3f1ef;
}
.category-banners__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.category-banners__item span {
    position: absolute; left: 12px; bottom: 12px;
    color: #fff; font-weight: 700; text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.callback-modal[hidden] { display: none !important; }
.callback-modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; }
.callback-modal__backdrop { position: absolute; inset: 0; background: rgba(20, 16, 14, .45); }
.callback-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(420px, calc(100% - 28px));
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.callback-modal__close {
    position: absolute; top: 10px; right: 12px;
    border: 0; background: transparent; font-size: 24px; cursor: pointer; line-height: 1;
}
body.modal-open { overflow: hidden; }
.cookie-notice {
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 20px;
    width: min(520px, calc(100% - 32px));
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(24, 18, 16, .16);
}
.cookie-notice[hidden] { display: none !important; }
.cookie-notice p { margin: 0; font-size: 13px; line-height: 1.5; }
.cookie-notice a { color: var(--rose); text-decoration: underline; }
.cookie-notice .button { flex: 0 0 auto; white-space: nowrap; }
.cookie-notice__actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.footer__link-button {
    appearance: none;
    border: 0;
    padding: 0;
    color: inherit;
    background: none;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}
.cookie-preferences[hidden] { display: none !important; }
.cookie-preferences {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
}
.cookie-preferences__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 16, 14, .52);
}
.cookie-preferences__dialog {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow: auto;
    border-radius: 20px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(32, 22, 19, .22);
}
.cookie-preferences__dialog h2 { margin: 0 36px 8px 0; }
.cookie-preferences__dialog > p { margin: 0 0 20px; color: var(--muted); line-height: 1.55; }
.cookie-preferences__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.cookie-preferences__categories { display: grid; gap: 10px; }
.cookie-preferences__category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
}
.cookie-preferences__category span { display: grid; gap: 4px; }
.cookie-preferences__category small { color: var(--muted); line-height: 1.4; }
.cookie-preferences__category input { width: 20px; height: 20px; accent-color: var(--rose); }
.cookie-preferences__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}
.home-layout { display: grid; gap: 0; }
.home-layout__block:empty { display: none; }
.cms-hero {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 28px;
    background: var(--surface, #f7f2ef);
}
.cms-hero__link { display: block; color: inherit; }
.cms-hero picture,
.cms-hero img { display: block; width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.cms-hero__content {
    position: absolute;
    left: clamp(22px, 5vw, 72px);
    bottom: clamp(22px, 5vw, 58px);
    display: grid;
    max-width: min(520px, calc(100% - 44px));
    gap: 8px;
    border-radius: 18px;
    padding: 18px 22px;
    color: #211916;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(8px);
}
.cms-hero__content strong { font-size: clamp(24px, 4vw, 46px); line-height: 1.05; }
.home-content-block,
.home-media-block,
.home-callback-block { margin-block: 40px; }
.home-content-block__text,
.home-media-block p { max-width: 780px; color: var(--muted); line-height: 1.7; }
.home-media-block picture,
.home-media-block img,
.home-media-block video { display: block; width: 100%; max-height: 640px; border-radius: 22px; object-fit: cover; }
.home-callback-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 22px;
    padding: clamp(22px, 4vw, 42px);
    background: var(--surface, #f7f2ef);
}
.home-callback-block h2,
.home-callback-block p { margin: 0; }
.home-callback-block div { display: grid; gap: 8px; }
.home-review-list__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
@media (max-width: 900px) {
    .contacts-grid { grid-template-columns: 1fr; }
    .header-callback { display: none; }
    .cookie-notice { right: 16px; bottom: 16px; align-items: stretch; flex-direction: column; }
    .cookie-notice__actions,
    .cookie-preferences__actions { align-items: stretch; flex-direction: column; }
    .cookie-notice__actions .button,
    .cookie-preferences__actions .button { width: 100%; }
    .cookie-preferences { padding: 12px; }
    .cookie-preferences__dialog { max-height: calc(100vh - 24px); padding: 22px 18px; }
    .home-review-list__grid { grid-template-columns: 1fr; }
    .home-callback-block { align-items: stretch; flex-direction: column; }
    .cms-hero,
    .cms-hero picture,
    .cms-hero img { min-height: 220px; }
}
/* Keep a semantic page heading available to assistive technology. */
.storefront-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
