/* ===================================================
   LUXNAIL — Premium Nail E-Commerce
   Luxury Beauty Commerce Design System
   =================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Palette — premium neutral with subtle warm accents */
    --white: #FFFFFF;
    --milk: #FAFAF8;
    --cream: #F5F3F0;
    --nude: #EDE7E0;
    --sand: #B09080;
    --sand-dark: #96776A;
    --sand-light: rgba(176,144,128,.06);
    --brand: #E0157A;
    --brand-soft: rgba(224,21,122,.06);
    --graphite: #1A1A1A;
    --graphite-mid: #363636;
    --graphite-hover: #0D0D0D;
    --text: #222222;
    --text-2: #666666;
    --text-3: #999999;
    --border: #EAE6E2;
    --border-light: #F2EFEB;
    --danger: #B84040;
    --sale: #8B4513;
    --success: #2D6B3F;

    /* Type */
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --fs-xs: 11px;
    --fs-sm: 12.5px;
    --fs-base: 14px;
    --fs-md: 15px;
    --fs-lg: 18px;
    --fs-xl: 22px;
    --fs-2xl: 28px;
    --fs-3xl: 36px;

    /* Spacing — tighter for practical e-commerce */
    --sp-xs: 4px;
    --sp-sm: 8px;
    --sp-md: 16px;
    --sp-lg: 24px;
    --sp-xl: 32px;
    --sp-2xl: 40px;
    --sp-3xl: 56px;
    --sp-section: 48px;

    /* Radius */
    --r-xs: 6px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-pill: 100px;

    /* Shadows — refined for premium feel */
    --sh-xs: 0 1px 3px rgba(0,0,0,.03);
    --sh-sm: 0 2px 8px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02);
    --sh-md: 0 4px 20px rgba(0,0,0,.05), 0 1px 4px rgba(0,0,0,.03);
    --sh-lg: 0 8px 36px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.03);
    --sh-xl: 0 20px 60px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.03);
    --sh-card-hover: 0 12px 44px rgba(0,0,0,.08), 0 4px 14px rgba(0,0,0,.04);

    /* Motion */
    --ease: cubic-bezier(.22,.61,.36,1);
    --t: .28s var(--ease);
    --t-slow: .45s var(--ease);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--sans); font-size: var(--fs-base); line-height: 1.6; color: var(--text); background: var(--milk); letter-spacing: -.01em; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ====== BENEFITS BAR ====== */
.benefits-bar {
    background: var(--white); border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
}
.benefits-bar__inner {
    display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.benefits-bar__item {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; color: var(--text-2); white-space: nowrap;
}
.benefits-bar__item svg { color: var(--sand); flex-shrink: 0; }

@media (max-width: 768px) {
    .benefits-bar__inner { gap: 12px 20px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
    .benefits-bar__item { font-size: 11px; }
}

/* ====== ANNOUNCEMENT BAR ====== */
.announcement-bar {
    background: var(--graphite);
    color: rgba(255,255,255,.75);
    font-size: 11.5px;
    letter-spacing: .06em;
    padding: 9px 0;
    text-align: center;
}
.announcement-bar__inner { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.announcement-bar__dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.25); }

/* ====== HEADER ====== */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0,0,0,.04);
    transition: box-shadow var(--t);
}
.header--scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.06); }

.header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; gap: 40px;
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.header__logo-img {
    height: 30px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.header__nav { display: flex; gap: 32px; }
.header__nav-link {
    font-size: 13.5px; font-weight: 500; color: var(--text-2);
    position: relative; padding: 4px 0; transition: color var(--t);
}
.header__nav-link::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 0; height: 1.5px; background: var(--sand); transition: width var(--t);
}
.header__nav-link:hover { color: var(--graphite); }
.header__nav-link:hover::after { width: 100%; }

.header__right { display: flex; align-items: center; gap: 18px; }
.header__search-btn, .header__icon {
    color: var(--text-2); display: flex; align-items: center;
    transition: color var(--t); cursor: pointer;
}
.header__search-btn:hover, .header__icon:hover { color: var(--graphite); }

.header__cart { position: relative; }
.header__cart-badge {
    position: absolute; top: -5px; right: -7px;
    width: 17px; height: 17px; border-radius: 50%;
    background: var(--sand); color: #fff;
    font-size: 10px; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
}
.header__fav-badge {
    position: absolute; top: -5px; right: -7px;
    width: 17px; height: 17px; border-radius: 50%;
    background: var(--danger); color: #fff;
    font-size: 10px; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
}
.header__fav { position: relative; }

.header__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.header__burger span { width: 20px; height: 1.5px; background: var(--graphite); transition: var(--t); display: block; }

/* Search Panel */
.search-panel {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 20px 0 24px;
    box-shadow: var(--sh-lg); border-top: 1px solid var(--border);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all var(--t);
}
.search-panel--active { opacity: 1; visibility: visible; transform: translateY(0); }
.search-panel__bar {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.search-panel__input {
    flex: 1; border: none; outline: none; font-size: 17px;
    font-family: var(--sans); color: var(--text); background: transparent;
}
.search-panel__input::placeholder { color: #c0c0c0; }
.search-panel__close { color: var(--text-3); display: flex; padding: 8px; min-width: 36px; min-height: 36px; align-items: center; justify-content: center; transition: color var(--t); }
.search-panel__close:hover { color: var(--text); }
.search-panel__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.search-panel__tag {
    font-size: 12.5px; padding: 6px 16px; background: var(--cream);
    border-radius: 20px; color: var(--text-2); cursor: pointer; transition: all var(--t);
}
.search-panel__tag:hover { background: var(--nude); color: var(--text); }

/* Search Results */
.search-results { margin-top: 16px; }
.search-results__title { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.search-results__empty { font-size: 14px; color: var(--text-3); padding: 16px 0; }
.search-results__item {
    display: flex; align-items: center; gap: 12px; padding: 10px 0;
    border-bottom: 1px solid var(--border-light); transition: all var(--t);
}
.search-results__item:last-of-type { border-bottom: none; }
.search-results__item:hover { padding-left: 4px; }
.search-results__img {
    width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.search-results__bottle { width: 12px; height: 28px; border-radius: 3px; box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.search-results__bottle--wide { width: 24px; height: 16px; border-radius: 3px; }
.search-results__info { flex: 1; min-width: 0; }
.search-results__brand { display: block; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--sand); }
.search-results__name { display: block; font-size: 14px; font-weight: 500; color: var(--graphite); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-results__price { font-size: 14px; font-weight: 600; color: var(--graphite); flex-shrink: 0; }
.search-results__all {
    display: block; text-align: center; padding: 12px; margin-top: 8px;
    font-size: 13px; font-weight: 500; color: var(--sand); border-radius: var(--r-sm);
    background: var(--cream); transition: all var(--t);
}
.search-results__all:hover { background: var(--nude); }

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 30px; font-size: var(--fs-base); font-weight: 600;
    border-radius: var(--r-sm); transition: all var(--t); letter-spacing: .01em;
    white-space: nowrap; cursor: pointer;
}
.btn--lg { padding: 15px 38px; }
.btn--primary { background: var(--graphite); color: #fff; }
.btn--primary:hover { background: var(--graphite-hover); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn--glass {
    background: rgba(255,255,255,.65); backdrop-filter: blur(16px);
    color: var(--graphite); border: 1px solid rgba(0,0,0,.07);
}
.btn--glass:hover { background: rgba(255,255,255,.95); transform: translateY(-1px); box-shadow: var(--sh-sm); }

/* ====== HERO ====== */
.hero { padding: 16px 0 0; background: linear-gradient(180deg, #fff 0%, var(--milk) 100%); }

.hero-search {
    display: flex; align-items: center; gap: 12px;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 56px; padding: 5px 5px 5px 20px;
    margin-bottom: 16px; transition: border-color var(--t);
    max-width: 600px;
}
.hero-search:focus-within { border-color: var(--sand); }
.hero-search input {
    flex: 1; border: none; outline: none; font-size: 14px;
    font-family: var(--sans); color: var(--text); background: transparent;
}
.hero-search input::placeholder { color: #b8b8b8; }
.hero-search__btn {
    padding: 10px 24px; background: var(--graphite); color: #fff;
    border: none; border-radius: 48px; font-size: 13px; font-weight: 600;
    font-family: var(--sans); cursor: pointer; transition: all var(--t);
}
.hero-search__btn:hover { background: #111; }

.hero__grid { display: flex; flex-direction: column; gap: 14px; }

/* ====== HERO CAROUSEL ====== */
.hero-carousel {
    position: relative; border-radius: 24px; overflow: hidden;
    user-select: none;
}
.hero-slides { position: relative; min-height: 720px; }
.hero-slide {
    position: absolute; inset: 0; min-height: 720px;
    display: flex; align-items: stretch;
    opacity: 0; transition: opacity .85s cubic-bezier(.4,0,.2,1);
    pointer-events: none; will-change: opacity;
}
.hero-slide--active { opacity: 1; pointer-events: auto; }

.hero-slide__bg { position: absolute; inset: 0; z-index: 0; }

/* Slide 0 — Grand Entrance: deep plum luxury */
.hero-slide--0 .hero-slide__bg {
    background: linear-gradient(135deg, #0d0818 0%, #200e38 48%, #120d26 100%);
}
.hero-slide--0 .hero-slide__bg::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 68% 80% at 82% 54%, rgba(224,21,122,.28) 0%, transparent 56%),
        radial-gradient(ellipse 30% 50% at 50% 100%, rgba(120,20,100,.18) 0%, transparent 55%);
}
.hero-slide--0 .hero-slide__bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 46% 58% at 14% 36%, rgba(255,240,210,.09) 0%, transparent 52%);
}

/* Slide 1 — Professional: deep navy-cobalt */
.hero-slide--1 .hero-slide__bg {
    background: linear-gradient(145deg, #04060f 0%, #0b1040 52%, #070a1e 100%);
}
.hero-slide--1 .hero-slide__bg::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 58% 72% at 80% 52%, rgba(70,45,230,.32) 0%, transparent 54%),
        radial-gradient(ellipse 28% 44% at 50% 100%, rgba(60,30,180,.15) 0%, transparent 55%);
}
.hero-slide--1 .hero-slide__bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 36% 38% at 12% 18%, rgba(150,110,255,.07) 0%, transparent 48%);
}

/* Slide 2 — Collection: warm champagne (light relief) */
.hero-slide--2 .hero-slide__bg {
    background: linear-gradient(130deg, #faf6ee 0%, #f2e4ca 45%, #e8d4b0 100%);
}
.hero-slide--2 .hero-slide__bg::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 66% 60% at 10% 46%, rgba(255,252,244,.92) 0%, transparent 56%);
}
.hero-slide--2 .hero-slide__bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 44% 44% at 88% 18%, rgba(224,21,122,.16) 0%, transparent 52%);
}

/* Subtle grain texture overlay on dark slides */
.hero-slide--dark::before {
    content: '';
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 160px 160px;
}

.hero-slide__content {
    position: relative; z-index: 2;
    flex: 0 0 52%; padding: 88px 56px 88px 80px;
    display: flex; flex-direction: column; justify-content: center;
}

/* Label — elegant editorial tag */
.hero-slide__label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 9.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    padding: 6px 16px 6px 10px; border-radius: 100px; margin-bottom: 22px; width: fit-content;
    color: var(--brand); background: rgba(224,21,122,.1); border: 1px solid rgba(224,21,122,.2);
}
.hero-slide__label::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--brand); flex-shrink: 0;
}
/* Dark slide label */
.hero-slide--dark .hero-slide__label {
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
    border-color: rgba(255,255,255,.16);
}
.hero-slide--dark .hero-slide__label::before { background: rgba(255,255,255,.55); }
/* Light slide 2 label */
.hero-slide--2 .hero-slide__label {
    background: rgba(224,21,122,.08); color: var(--brand);
    border-color: rgba(224,21,122,.2);
}
.hero-slide--2 .hero-slide__label::before { background: var(--brand); }

/* Title — full editorial serif, the visual anchor */
.hero-slide__title {
    font-family: var(--serif); font-size: 76px; font-weight: 500;
    line-height: 1.0; letter-spacing: -.025em; color: #fff;
    margin-bottom: 20px; font-style: normal;
}
.hero-slide--2 .hero-slide__title { color: var(--graphite); }

/* Italic accent word inside title */
.hero-title__serif {
    font-style: italic; color: rgba(255,180,215,.88);
}
.hero-slide--2 .hero-title__serif { color: var(--brand); }

/* Description */
.hero-slide__desc {
    font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,.68);
    margin-bottom: 18px; max-width: 400px;
}
.hero-slide--2 .hero-slide__desc { color: var(--text-2); }

/* Trust strip — stars + rating + inline pill tags */
.hero-slide__trust {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-slide__trust-stars {
    color: #f6cc48; font-size: 14px; letter-spacing: .06em; line-height: 1; flex-shrink: 0;
}
.hero-slide__trust-rating {
    font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -.01em; flex-shrink: 0;
}
.hero-slide__trust-sep {
    font-size: 11px; color: rgba(255,255,255,.2); font-weight: 300; flex-shrink: 0;
}
.hero-slide__trust-pill {
    font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,.52);
    letter-spacing: .01em;
}
/* Light slide */
.hero-slide--2 .hero-slide__trust-rating { color: var(--graphite); }
.hero-slide--2 .hero-slide__trust-sep { color: rgba(0,0,0,.18); }
.hero-slide--2 .hero-slide__trust-pill { color: var(--text-3); }

/* Category strip — hidden (clean focus on headline + CTA) */
.hero-slide__cats { display: none; }

/* Actions */
.hero-slide__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }

/* Primary CTA — dominant */
.hero-slide__actions .btn--primary {
    background: var(--brand); color: #fff;
    padding: 17px 44px; font-size: 15px; font-weight: 700;
    box-shadow: 0 6px 28px rgba(224,21,122,.42);
    letter-spacing: .02em; border-radius: var(--r-sm);
}
.hero-slide__actions .btn--primary:hover {
    background: #c4106b; transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(224,21,122,.52);
}
/* Secondary CTA */
.hero-slide__actions .btn--glass {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.34); color: rgba(255,255,255,.82);
    padding: 15px 28px; font-size: 14px; font-weight: 600;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-slide__actions .btn--glass:hover {
    background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.55);
    color: #fff; transform: translateY(-1px);
}
/* Light slide 2 secondary */
.hero-slide--2 .hero-slide__actions .btn--glass {
    border-color: rgba(0,0,0,.2); color: var(--graphite);
}
.hero-slide--2 .hero-slide__actions .btn--glass:hover {
    background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.35); color: var(--graphite);
}

/* Stats — only 2 items, spacious */
.hero-slide__stats {
    display: flex; gap: 0;
    padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-slide--2 .hero-slide__stats { border-top-color: rgba(0,0,0,.08); }

.hero-slide__stat {
    display: flex; flex-direction: column; align-items: flex-start;
    padding-right: 32px; margin-right: 32px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.hero-slide__stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-slide--2 .hero-slide__stat { border-right-color: rgba(0,0,0,.08); }

.hero-slide__stat-icon {
    color: rgba(255,255,255,.45); margin-bottom: 6px;
    display: flex; align-items: center;
}
.hero-slide--2 .hero-slide__stat-icon { color: var(--brand); opacity: .7; }

.hero-slide__stat-num {
    display: block; font-family: var(--serif); font-size: 36px; font-weight: 500;
    font-style: italic; color: #fff; letter-spacing: -.02em; line-height: 1;
    margin-bottom: 5px;
}
.hero-slide--2 .hero-slide__stat-num { color: var(--graphite); }
.hero-slide__stat-txt {
    font-size: 10px; color: rgba(255,255,255,.42);
    text-transform: uppercase; letter-spacing: .1em; line-height: 1.3;
}
.hero-slide--2 .hero-slide__stat-txt { color: var(--text-3); }

/* Visual zone */
.hero-slide__visual {
    flex: 0 0 48%; position: relative; z-index: 1;
    overflow: hidden; display: flex; align-items: center;
    justify-content: center; padding: 36px 36px 36px 0;
}
/* Concentric circle accents behind cards — premium depth */
.hero-slide--dark .hero-slide__visual::before {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    border: 1px solid rgba(224,21,122,.13);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 0; pointer-events: none;
}
.hero-slide--dark .hero-slide__visual::after {
    content: ''; position: absolute;
    width: 340px; height: 340px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.05);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 0; pointer-events: none;
}
.hero-slide__blob {
    position: absolute; width: 560px; height: 560px; border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 0; pointer-events: none;
}
/* Dark slides: soft brand glow behind cards */
.hero-slide--dark .hero-slide__blob { background: radial-gradient(circle, rgba(224,21,122,.2) 0%, transparent 58%); }
/* Light slide 2: warm golden glow */
.hero-slide--2 .hero-slide__blob { background: radial-gradient(circle, rgba(196,155,88,.22) 0%, transparent 58%); }

/* Premium product showcase grid */
.hero-prod-comp {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 210px 172px;
    grid-template-rows: auto auto;
    gap: 12px;
}

/* Cards — clean glass on dark, white on light */
.hero-prod-comp__card {
    background: rgba(255,255,255,.1); backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-radius: 18px; padding: 16px 14px 15px;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 24px 60px rgba(0,0,0,.28), 0 1px 0 rgba(255,255,255,.08) inset;
    text-decoration: none; color: inherit; display: flex;
    flex-direction: column; position: relative; overflow: hidden;
    transition: transform .32s ease, box-shadow .32s ease;
}
.hero-prod-comp__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 80px rgba(0,0,0,.38), 0 1px 0 rgba(255,255,255,.1) inset;
}
/* Light slide cards */
.hero-slide--2 .hero-prod-comp__card {
    background: rgba(255,255,255,.95);
    border-color: rgba(0,0,0,.06);
    box-shadow: 0 20px 52px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.04);
}
.hero-slide--2 .hero-prod-comp__card:hover {
    box-shadow: 0 30px 70px rgba(0,0,0,.14);
}

/* Hover reveal — "Смотреть →" */
.hero-prod-comp__card::after {
    content: 'Смотреть →';
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(224,21,122,.88) 0%, transparent 100%);
    color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 32px 14px 12px;
    opacity: 0; transform: translateY(6px);
    transition: opacity .22s ease, transform .22s ease;
    pointer-events: none; border-radius: 0 0 18px 18px;
}
.hero-prod-comp__card:hover::after { opacity: 1; transform: translateY(0); }

/* Big card spans both rows */
.hero-prod-comp__card--big { grid-row: 1 / 3; }

.hero-prod-comp__img {
    width: 100%; height: 144px; border-radius: 12px;
    margin-bottom: 11px; object-fit: cover; display: block; flex-shrink: 0;
}
.hero-prod-comp__card--big .hero-prod-comp__img { height: 334px; border-radius: 14px; }

.hero-prod-comp__visual {
    width: 100%; height: 144px; border-radius: 12px;
    margin-bottom: 11px; display: flex; align-items: center;
    justify-content: center; position: relative; overflow: hidden; flex-shrink: 0;
}
.hero-prod-comp__card--big .hero-prod-comp__visual { height: 334px; border-radius: 14px; }

.hero-prod-comp__bottle {
    width: 32px; height: 64px; border-radius: 9px 9px 5px 5px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18); position: relative;
}
.hero-prod-comp__card--big .hero-prod-comp__bottle { width: 54px; height: 112px; border-radius: 14px 14px 7px 7px; }
.hero-prod-comp__bottle::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 30%;
    background: rgba(255,255,255,.3); border-radius: inherit;
}
.hero-prod-comp__badge {
    position: absolute; top: 7px; right: 7px;
    font-size: 8px; font-weight: 700; padding: 3px 8px;
    border-radius: 5px; letter-spacing: .04em; color: #fff;
}
.hero-prod-comp__badge--hit { background: var(--sand); }
.hero-prod-comp__badge--sale { background: var(--sale); }
.hero-prod-comp__badge--new { background: #4caf50; }

/* Brand label — removed (cleaner) */
.hero-prod-comp__brand { display: none; }

/* Name — clean, white on dark */
.hero-prod-comp__name {
    display: block; font-size: 11.5px; font-weight: 600;
    color: rgba(255,255,255,.88);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 5px; line-height: 1.35;
}
.hero-prod-comp__card--big .hero-prod-comp__name { font-size: 13px; margin-bottom: 7px; }
.hero-slide--2 .hero-prod-comp__name { color: var(--graphite); }

/* Price — brand color, prominent */
.hero-prod-comp__price {
    display: block; font-size: 12.5px; font-weight: 800;
    color: rgba(255,150,200,.95); letter-spacing: -.01em;
}
.hero-prod-comp__card--big .hero-prod-comp__price { font-size: 14.5px; }
.hero-slide--2 .hero-prod-comp__price { color: var(--brand); }

/* Controls */
.hero-carousel__nav {
    position: absolute; bottom: 28px; left: 64px;
    z-index: 30; display: flex; align-items: center; gap: 7px;
}
/* Default: dark state (slides 0+1 dark) */
.hero-carousel__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,.25); cursor: pointer;
    transition: all .38s cubic-bezier(.4,0,.2,1);
    border: none; padding: 0; flex-shrink: 0;
}
.hero-carousel__dot--active { width: 24px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.88); }
/* Light state for slide 2 */
.hero-carousel--light .hero-carousel__dot { background: rgba(0,0,0,.18); }
.hero-carousel--light .hero-carousel__dot--active { background: var(--brand); }

.hero-carousel__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 30; width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.22); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .22s; color: rgba(255,255,255,.88);
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero-carousel__arrow:hover {
    background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4);
    transform: translateY(calc(-50% - 1px));
}
/* Light slide arrows */
.hero-carousel--light .hero-carousel__arrow {
    background: rgba(255,255,255,.88); color: var(--graphite);
    border-color: rgba(255,255,255,.6);
}
.hero-carousel--light .hero-carousel__arrow:hover { background: #fff; }
.hero-carousel__arrow--prev { left: 18px; }
.hero-carousel__arrow--next { right: 18px; }

.hero-carousel__bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: rgba(0,0,0,.05); z-index: 30;
}
.hero-carousel__bar-fill {
    height: 100%; background: var(--brand);
    width: 0%; transition: width linear;
}

/* Promo strip under carousel */
.hero-promo-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.hero-promo-card {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    padding: 22px 20px 18px; text-decoration: none; display: flex;
    flex-direction: column; min-height: 110px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.hero-promo-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.hero-promo-card__bg { position: absolute; inset: 0; z-index: 0; }
.hero-promo-card__inner { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }
.hero-promo-card__tag {
    font-size: 9.5px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--brand); margin-bottom: 6px;
}
.hero-promo-card--dark .hero-promo-card__tag { color: var(--brand); }
.hero-promo-card__title {
    font-size: 16px; font-weight: 700; color: var(--graphite);
    line-height: 1.25; margin-bottom: auto;
}
.hero-promo-card--dark .hero-promo-card__title { color: #fff; }
.hero-promo-card__link {
    font-size: 12px; color: var(--text-3); margin-top: 12px; display: block;
}
.hero-promo-card:hover .hero-promo-card__link { color: var(--sand); }
.hero-promo-card--dark .hero-promo-card__link { color: rgba(255,255,255,.5); }

/* ====== SECTION HEAD ====== */
.section-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: var(--sp-xl); flex-wrap: wrap; gap: var(--sp-md);
}
.section-head__title {
    font-family: var(--sans); font-size: var(--fs-xl); font-weight: 700;
    color: var(--graphite); letter-spacing: -.02em;
}
.section-head__link {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: var(--sand); transition: all var(--t);
}
.section-head__link:hover { color: var(--sand-dark); gap: 10px; }
.section-head__tabs { display: flex; gap: 6px; }

.tab {
    font-size: 12.5px; font-weight: 500; padding: 7px 18px;
    border-radius: 24px; color: var(--text-2); background: transparent;
    border: 1px solid var(--border); transition: all var(--t);
}
.tab:hover { border-color: var(--sand); color: var(--text); }
.tab--active { background: var(--graphite); color: #fff; border-color: var(--graphite); }

/* ====== CATEGORIES ====== */
.categories { padding: 28px 0 40px; }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.cat-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 24px 12px 20px; background: var(--white);
    border-radius: var(--r-md); border: 1px solid var(--border-light);
    text-decoration: none; color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.cat-card:hover {
    border-color: rgba(196,155,88,.45);
    box-shadow: 0 6px 22px rgba(0,0,0,.09);
    transform: translateY(-4px);
}
.cat-card__icon {
    width: 72px; height: 72px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px; flex-shrink: 0;
    transition: transform .25s ease;
}
.cat-card:hover .cat-card__icon { transform: scale(1.06); }
.cat-card__text { display: flex; flex-direction: column; align-items: center; }
.cat-card__name {
    font-size: 13.5px; font-weight: 650; color: var(--graphite);
    line-height: 1.3; letter-spacing: -.01em;
}
.cat-card__count {
    font-size: 11px; color: var(--text-3); margin-top: 3px;
    font-weight: 400; letter-spacing: .01em;
}

/* Cat card photo mode */
.cat-card__icon--photo { padding: 0; overflow: hidden; }
.cat-card__photo { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }

/* ====== PRODUCT CARDS ====== */
.hits { padding: 40px 0; background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.p-card {
    background: var(--white); border-radius: var(--r-md);
    overflow: hidden; border: 1px solid var(--border-light);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.p-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); border-color: rgba(0,0,0,.07); }

.p-card__media { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; }

/* Layer 1: gradient + bottle — always visible as base */
.p-card__img {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

/* Layer 2: real photo — sits on top of base layer */
/* onerror hides this layer, revealing neutral base beneath */
.p-card__img--photo {
    background: #f8f6f3;
    z-index: 1;
}
.p-card__img--photo img {
    width: 100%; height: 100%;
    object-fit: var(--img-fit, cover);
    object-position: var(--img-ox, 50%) var(--img-oy, 50%);
    padding: 0; display: block;
    transform: scale(var(--img-z, 1));
    transform-origin: var(--img-ox, 50%) var(--img-oy, 50%);
    transition: transform .35s ease;
}
.p-card:hover .p-card__img--photo img { transform: scale(calc(var(--img-z, 1) * 1.04)); }

/* Product container with cap + bottle + label */
.p-card__product {
    display: flex; flex-direction: column; align-items: center; position: relative;
    transform: scale(2); transform-origin: center center;
    transition: transform .35s ease;
}
.p-card:hover .p-card__product { transform: scale(2) translateY(-4px); }
.p-card__cap {
    width: 26px; height: 17px; background: rgba(0,0,0,.12);
    border-radius: 5px 5px 2px 2px; margin-bottom: -2px; z-index: 2;
}
.p-card__cap--wide { display: none; }
.p-card__bottle {
    width: 60px; height: 160px; border-radius: 10px 10px 5px 5px;
    box-shadow: 0 12px 36px rgba(0,0,0,.13); position: relative;
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 10px; overflow: hidden;
}
.p-card__bottle::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 30%; background: rgba(255,255,255,.28); border-radius: 10px 10px 0 0;
}
.p-card__label {
    position: relative; z-index: 1; font-size: 8px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7);
    text-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.p-card__bottle--wide {
    width: 100px; height: 70px; border-radius: var(--r-sm);
    padding-bottom: 8px;
}
.p-card__product--wide .p-card__cap { display: none; }

.p-card__badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 10px; font-weight: 700; padding: 4px 9px;
    border-radius: 6px; letter-spacing: .04em; text-transform: uppercase;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    line-height: 1.3;
}
.p-card__badge--hit { background: rgba(176,144,128,.92); color: #fff; }
.p-card__badge--new { background: rgba(26,26,26,.88); color: #fff; }
.p-card__badge--sale { background: rgba(192,50,50,.9); color: #fff; }

.p-card__fav {
    position: absolute; top: 10px; right: 10px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-3); opacity: 0;
    transition: opacity .25s ease, background .2s ease, transform .2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.p-card:hover .p-card__fav,
.p-card__fav.active { opacity: 1; }
.p-card__fav:hover { color: var(--danger); background: #fff; transform: scale(1.1); }
@media (hover: none) { .p-card__fav { opacity: 1; } }

.p-card__body { padding: 16px; }
.p-card__brand {
    font-size: 10.5px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--sand); display: block; margin-bottom: 4px;
}
.p-card__name {
    font-size: 14px; font-weight: 500; color: var(--graphite);
    line-height: 1.4; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Star rating — unicode stars, no progress bar */
.p-card__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.p-card__stars {
    font-size: 13px; letter-spacing: 1.5px; line-height: 1;
    position: static; width: auto; height: auto;
    background: none; overflow: visible; border-radius: 0;
}
.p-card__stars::before { display: none; }
.p-card__stars span { position: static; background: none; width: auto; }
.p-card__stars span::before { display: none; }
.p-card__stars-filled { color: var(--sand); }
.p-card__stars-empty { color: var(--border); }
.p-card__reviews { font-size: 11px; color: var(--text-3); }

.p-card__bottom { display: flex; align-items: center; justify-content: space-between; }
.p-card__price { font-size: 18px; font-weight: 700; color: var(--graphite); }
.p-card__price--sale { color: var(--sale); }
.p-card__price-group { display: flex; flex-direction: column; }
.p-card__price-old { font-size: 12px; color: var(--text-3); text-decoration: line-through; order: -1; }

.p-card__cart {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--graphite); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    flex-shrink: 0;
}
.p-card__cart:hover { background: var(--brand); transform: scale(1.07); box-shadow: 0 4px 12px rgba(224,21,122,.3); }
/* Out of stock: single clean approach */
.p-card.p-card--out { opacity: .65; }
.p-card--out .p-card__cart { display: none; }
.p-card--out .p-card__media::after {
    content: 'Нет в наличии';
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    background: rgba(26,26,26,.75); color: #fff;
    font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 5px; white-space: nowrap; z-index: 2;
}

/* Empty state */
.empty-state {
    text-align: center; padding: 48px 24px;
    color: var(--text-3);
}
.empty-state__icon {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: var(--cream); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-3);
}
.empty-state__title {
    font-size: 16px; font-weight: 600; color: var(--text-2);
    margin-bottom: 6px;
}
.empty-state__text {
    font-size: 13px; color: var(--text-3); line-height: 1.5;
}

/* ====== COLLECTIONS ====== */
.collections { padding: 40px 0; }
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.coll-card {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    padding: 24px; min-height: 240px;
    display: flex; flex-direction: column; justify-content: flex-end;
    transition: all var(--t); border: 1px solid var(--border-light);
}
.coll-card:hover { transform: translateY(-2px); box-shadow: var(--sh-card-hover); border-color: var(--border); }
.coll-card__bg { position: absolute; inset: 0; z-index: 0; }
.coll-card__inner { position: relative; z-index: 1; }

.coll-card__tag {
    font-size: 10.5px; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--sand); display: block; margin-bottom: 8px;
}
.coll-card__title {
    font-family: var(--sans); font-size: 20px; font-weight: 700;
    color: var(--graphite); line-height: 1.25; margin-bottom: 8px;
}
.coll-card__desc { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }

.coll-card__footer { display: flex; align-items: center; justify-content: space-between; }
.coll-card__price {
    font-size: 13px; font-weight: 600; color: var(--sand);
    background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
    padding: 5px 14px; border-radius: 20px;
}
.coll-card__arrow {
    font-size: 20px; color: var(--text-3); transition: all var(--t);
}
.coll-card:hover .coll-card__arrow { color: var(--sand); transform: translateX(4px); }

/* ====== AI SECTION ====== */
.ai {
    padding: 72px 0; background: var(--white);
    border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.ai__inner {
    display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center;
}

/* Orb */
.ai__left { display: flex; justify-content: center; align-items: center; }
.ai__orb {
    position: relative; width: 240px; height: 240px;
    display: flex; align-items: center; justify-content: center;
}
.ai__orb-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(176,144,128,.12);
}
.ai__orb-ring--1 { width: 100%; height: 100%; animation: spin 25s linear infinite; }
.ai__orb-ring--2 { width: 72%; height: 72%; animation: spin 18s linear infinite reverse; border-color: rgba(176,144,128,.18); }
.ai__orb-ring--3 { width: 48%; height: 48%; animation: spin 12s linear infinite; border-color: rgba(176,144,128,.24); }
@keyframes spin { to { transform: rotate(360deg); } }

.ai__orb-core {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sand), var(--sand-dark));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 40px rgba(176,144,128,.35);
    animation: pulse 3.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 40px rgba(176,144,128,.35); }
    50% { box-shadow: 0 8px 56px rgba(176,144,128,.55); }
}

.ai__right {}
.ai__label {
    font-size: 11px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--sand); margin-bottom: 12px; display: block;
}
.ai__title {
    font-family: var(--sans); font-size: var(--fs-xl); font-weight: 700;
    color: var(--graphite); margin-bottom: 10px;
}
.ai__desc { font-size: 14.5px; color: var(--text-2); line-height: 1.65; margin-bottom: 24px; max-width: 480px; }

.ai__chat {
    background: var(--milk); border-radius: var(--r-lg);
    border: 1px solid var(--border); overflow: hidden;
}
.ai__messages { padding: 18px; display: flex; flex-direction: column; gap: 12px; max-height: 260px; overflow-y: auto; }
.ai__msg { display: flex; gap: 10px; max-width: 88%; }
.ai__msg--user { align-self: flex-end; flex-direction: row-reverse; }
.ai__msg-avatar {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--sand), var(--sand-dark));
    color: #fff; font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.ai__msg-bubble {
    padding: 10px 14px; border-radius: var(--r-md);
    font-size: 13px; line-height: 1.55;
}
.ai__msg--bot .ai__msg-bubble { background: var(--white); border: 1px solid var(--border); color: var(--text); }
.ai__msg--user .ai__msg-bubble { background: var(--graphite); color: #fff; }

.ai__input-row {
    display: flex; gap: 8px; padding: 12px 14px;
    border-top: 1px solid var(--border); background: var(--white);
}
.ai__input {
    flex: 1; border: 1px solid var(--border); border-radius: var(--r-sm);
    padding: 10px 14px; font-size: 13px; font-family: var(--sans);
    outline: none; background: var(--milk); transition: border-color var(--t);
}
.ai__input:focus { border-color: var(--sand); }
.ai__input::placeholder { color: #bbb; }
.ai__send {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--graphite); border-radius: var(--r-sm);
    color: #fff; display: flex; align-items: center; justify-content: center;
    transition: all var(--t);
}
.ai__send:hover { background: var(--sand); }

/* ====== BOUGHT TOGETHER ====== */
.together { padding: 40px 0; }
.together__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.together__set {
    background: var(--white); border-radius: var(--r-lg);
    border: 1px solid var(--border-light); padding: var(--sp-lg); transition: all var(--t);
}
.together__set:hover { box-shadow: var(--sh-md); border-color: var(--border); }
.together__items { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.together__item { text-align: center; flex: 1; }
.together__item-img {
    width: 76px; height: 76px; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 6px;
}
.together__item-bottle { width: 18px; height: 46px; border-radius: 4px 4px 2px 2px; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.together__item-bottle--wide { width: 40px; height: 28px; border-radius: 4px; }
.together__item-name { font-size: 12px; font-weight: 500; color: var(--graphite); display: block; margin-bottom: 2px; }
.together__item-price { font-size: 11.5px; color: var(--text-3); }
.together__plus { font-size: 18px; color: var(--text-3); font-weight: 300; flex-shrink: 0; }

.together__bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--border); gap: 16px;
}
.together__label { font-size: 11.5px; color: var(--text-3); display: block; margin-bottom: 2px; }
.together__prices { display: flex; align-items: center; gap: 8px; }
.together__old { font-size: 13px; color: var(--text-3); text-decoration: line-through; }
.together__new { font-size: 19px; font-weight: 700; color: var(--graphite); }

/* ====== ARTICLES ====== */
.articles { padding: 40px 0; background: var(--white); }
.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.art-card {
    border-radius: var(--r-md); overflow: hidden;
    background: var(--milk); border: 1px solid var(--border-light); transition: all var(--t);
}
.art-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.art-card__img {
    aspect-ratio: 16/9; position: relative;
    display: flex; align-items: flex-end; padding: 14px;
}
.art-card__tag {
    font-size: 10.5px; font-weight: 600; padding: 4px 12px;
    background: rgba(255,255,255,.88); backdrop-filter: blur(8px);
    border-radius: 20px; color: var(--graphite);
}
.art-card__body { padding: 18px; }
.art-card__date { font-size: 11.5px; color: var(--text-3); display: block; margin-bottom: 6px; }
.art-card__title { font-size: 15.5px; font-weight: 600; color: var(--graphite); line-height: 1.4; margin-bottom: 6px; }
.art-card__text { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ====== TRUST ====== */
.trust { padding: 48px 0; border-top: 1px solid var(--border-light); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust__item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px; background: var(--white);
    border-radius: var(--r-md); border: 1px solid var(--border-light);
    transition: all var(--t);
}
.trust__item:hover { border-color: var(--border); box-shadow: var(--sh-sm); }
.trust__item svg { color: var(--sand); flex-shrink: 0; margin-top: 2px; }
.trust__item strong { font-size: 13.5px; font-weight: 600; color: var(--graphite); display: block; margin-bottom: 1px; }
.trust__item span { font-size: 12px; color: var(--text-3); }

/* ====== FOOTER ====== */
.footer { background: var(--graphite); color: rgba(255,255,255,.65); padding: 52px 0 0; }
.footer__top {
    display: grid; grid-template-columns: 280px 1fr; gap: 60px;
    padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__logo { display: inline-block; margin-bottom: 14px; }
.footer__logo-img { height: 24px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer__about { font-size: 13px; line-height: 1.65; margin-bottom: 18px; }
.footer__socials { display: flex; gap: 8px; }
.footer__soc {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); transition: all var(--t);
}
.footer__soc:hover { border-color: var(--sand); color: var(--sand); background: rgba(176,144,128,.08); }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__col h4 {
    font-size: 12.5px; font-weight: 600; color: #fff;
    letter-spacing: .04em; margin-bottom: 14px;
}
.footer__col a {
    display: block; font-size: 13px; color: rgba(255,255,255,.45);
    margin-bottom: 9px; transition: color var(--t);
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; flex-wrap: wrap; gap: 12px;
}
.footer__bottom > span { font-size: 12px; color: rgba(255,255,255,.3); }
.footer__pay { display: flex; gap: 6px; }
.footer__pay span {
    font-size: 10.5px; padding: 3px 10px; border: 1px solid rgba(255,255,255,.08);
    border-radius: 4px; color: rgba(255,255,255,.35);
}

/* ====== SCROLL ANIMATIONS ====== */
.fade-up {
    opacity: 0; transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up--visible { opacity: 1; transform: translateY(0); }

/* Fallback: if JS hasn't run after 2s, show everything */
@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
    .hero-slides { min-height: 560px; }
    .hero-slide { min-height: 560px; }
    .hero-slide__title { font-size: 48px; }
    .hero-slide__content { padding: 56px 46px; flex: 0 0 54%; }
    .hero-slide__visual { flex: 0 0 46%; }
    .hero-prod-comp { grid-template-columns: 174px 144px; gap: 10px; }
    .hero-prod-comp__img { height: 112px; }
    .hero-prod-comp__card--big .hero-prod-comp__img { height: 244px; }
    .hero-prod-comp__visual { height: 112px; }
    .hero-prod-comp__card--big .hero-prod-comp__visual { height: 244px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .coll-grid { grid-template-columns: repeat(2, 1fr); }
    .ai__inner { grid-template-columns: 1fr; }
    .ai__left { display: none; }
}

/* ====== MOBILE — 768px ====== */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Announcement & Benefits */
    .announcement-bar { font-size: 10px; padding: 6px 0; }
    .announcement-bar__inner { gap: 6px; }

    /* Header */
    .header__nav { display: none; }
    .header__burger { display: flex; }
    .header__inner { height: 52px; gap: 10px; }
    .header__logo-img { height: 24px; }
    .header__right { gap: 14px; }

    /* === HERO CAROUSEL — mobile === */
    .hero { padding: 12px 0 0; }
    .hero-search {
        margin-bottom: 12px; padding: 4px 4px 4px 16px;
        max-width: 100%; border-radius: 48px;
    }
    .hero-search input { font-size: 13px; min-width: 0; }
    .hero-search__btn { padding: 9px 20px; font-size: 12px; }

    .hero__grid { gap: 10px; }
    .hero-carousel { border-radius: var(--r-md); }
    .hero-slides { min-height: 0; }
    .hero-slide {
        position: relative; min-height: 0;
        flex-direction: column; opacity: 0;
        transition: opacity .5s ease;
    }
    .hero-slide--active { opacity: 1; }
    .hero-slide:not(.hero-slide--active) { display: none; }
    .hero-slide__content {
        flex: none; padding: 28px 24px 24px;
    }
    .hero-slide__label { font-size: 10px; margin-bottom: 16px; }
    .hero-slide__title { font-size: 26px; line-height: 1.2; margin-bottom: 12px; }
    .hero-slide__desc { font-size: 13px; margin-bottom: 18px; }
    .hero-slide__cats { display: none; }
    .hero-slide__actions { flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .hero-slide__actions .btn { width: 100%; justify-content: center; }
    .hero-slide__stats { gap: 20px; padding-top: 16px; }
    .hero-slide__stat-num { font-size: 16px; }
    .hero-slide__visual { display: none; }
    .hero-carousel__nav { left: 24px; bottom: 16px; }
    .hero-carousel__arrow { display: none; }

    .hero-promo-strip { grid-template-columns: 1fr; gap: 8px; }
    .hero-promo-card { min-height: 80px; padding: 16px; }
    .hero-promo-card__title { font-size: 14px; }

    /* === Sections === */
    .section-head__title { font-size: 20px; }
    .section-head { margin-bottom: 16px; }

    /* Categories */
    .categories { padding: 24px 0; }
    .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .cat-card { padding: 16px 8px 14px; border-radius: var(--r-sm); }
    .cat-card__icon { width: 52px; height: 52px; border-radius: 12px; }
    .cat-card__name { font-size: 12px; }
    .cat-card__count { font-size: 10px; }

    /* Product cards */
    .hits { padding: 24px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .p-card { border-radius: var(--r-sm); }
    .p-card__media { aspect-ratio: 3/4; }
    .p-card__body { padding: 10px 12px 12px; }
    .p-card__brand { font-size: 9px; margin-bottom: 3px; }
    .p-card__name { font-size: 12.5px; margin-bottom: 6px; -webkit-line-clamp: 2; }
    .p-card__rating { margin-bottom: 8px; }
    .p-card__price { font-size: 15px; }
    .p-card__price-old { font-size: 11px; }
    .p-card__cart { width: 36px; height: 36px; }
    .p-card__badge { font-size: 10px; padding: 3px 8px; top: 10px; left: 10px; }
    .p-card__fav { width: 30px; height: 30px; top: 10px; right: 10px; opacity: 1; }
    .section-head__tabs {
        order: 3; width: 100%; overflow-x: auto;
        flex-wrap: nowrap; -webkit-overflow-scrolling: touch;
        gap: 6px; padding-bottom: 2px;
    }

    /* Collections */
    .collections { padding: 24px 0; }
    .coll-grid { grid-template-columns: 1fr; gap: 10px; }
    .coll-card { min-height: 160px; padding: 18px; border-radius: var(--r-sm); }
    .coll-card__title { font-size: 17px; }

    /* AI */
    .ai { padding: 24px 0; }
    .ai__title { font-size: 20px; }

    /* Together */
    .together { padding: 24px 0; }
    .together__grid { grid-template-columns: 1fr; }
    .together__items { flex-wrap: wrap; }

    /* Articles */
    .articles { padding: 24px 0; }
    .articles__grid { grid-template-columns: 1fr; gap: 12px; }

    /* Trust */
    .trust { padding: 20px 0; }
    .trust__grid { grid-template-columns: 1fr; gap: 8px; }
    .trust__item { padding: 14px; }

    /* Footer */
    .footer { padding: 32px 0 0; }
    .footer__top { grid-template-columns: 1fr; gap: 20px; }
    .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ====== SMALL MOBILE — 480px ====== */
@media (max-width: 480px) {
    .hero-slide__title { font-size: 22px; }
    .hero-slide__actions .btn { padding: 12px 16px; font-size: 13px; }

    .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .cat-card { padding: 14px 6px 12px; }
    .cat-card__icon { width: 46px; height: 46px; border-radius: 10px; }
    .cat-card__name { font-size: 11px; }
    .cat-card__count { display: none; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .p-card__body { padding: 8px 10px 10px; }
    .p-card__name { font-size: 12px; }
    .p-card__price { font-size: 14px; }
    .p-card__cart { width: 34px; height: 34px; }

    .trust__grid { grid-template-columns: 1fr; }
}

/* ====== EXTRA SMALL — 360px ====== */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero-search__btn { padding: 8px 14px; font-size: 11px; }
    .hero-slide__title { font-size: 20px; }
    .hero-slide__actions .btn { padding: 12px 16px; font-size: 13px; }

    .section-head__title { font-size: 18px; }
    .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .cat-card { padding: 12px 4px 10px; }
    .cat-card__icon { width: 40px; height: 40px; border-radius: 8px; }
    .cat-card__name { font-size: 10px; }

    .p-card__name { font-size: 11.5px; }
    .p-card__price { font-size: 13px; }
    .p-card__brand { font-size: 8.5px; }
}

/* ====================================================================
   NEW PAGES: Mini-Cart, Breadcrumbs, Catalog, Product, Cart
   ==================================================================== */

/* ====== BREADCRUMBS ====== */
.breadcrumbs {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 13px; color: var(--text-3); padding: 20px 0 8px;
}
.breadcrumbs a { color: var(--text-2); transition: color var(--t); }
.breadcrumbs a:hover { color: var(--sand); }
.breadcrumbs span { user-select: none; }

/* ====== MINI-CART ====== */
.minicart-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,.35); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: all var(--t);
}
.minicart-overlay--active { opacity: 1; visibility: visible; }

.minicart {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 420px; max-width: 90vw; z-index: 201;
    background: var(--white); box-shadow: -4px 0 24px rgba(0,0,0,.1);
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform var(--t-slow);
}
.minicart--open { transform: translateX(0); }

.minicart__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.minicart__title { font-family: var(--sans); font-size: 18px; font-weight: 700; color: var(--graphite); }
.minicart__close { color: var(--text-3); display: flex; padding: 8px; min-width: 40px; min-height: 40px; align-items: center; justify-content: center; transition: color var(--t); }
.minicart__close:hover { color: var(--text); }

.minicart__empty {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 16px; padding: 40px; text-align: center;
}
.minicart__empty p { font-size: 15px; color: var(--text-2); }

.minicart__items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.minicart__footer {
    padding: 20px 24px; border-top: 1px solid var(--border);
    background: var(--milk);
}
.minicart__total-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
}
.minicart__total-row span:first-child { font-size: 14px; color: var(--text-2); }
.minicart__total { font-size: 22px; font-weight: 700; color: var(--graphite); }
.minicart__btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.minicart__btn:last-child { margin-bottom: 0; }

/* Mini-cart item */
.mc-item {
    display: flex; gap: 12px; padding: 14px 0;
    border-bottom: 1px solid var(--border-light); position: relative;
}
.mc-item:last-child { border-bottom: none; }
.mc-item__img {
    width: 64px; height: 64px; border-radius: var(--r-sm); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.mc-item__bottle { width: 16px; height: 40px; border-radius: 4px 4px 2px 2px; box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.mc-item__bottle--wide { width: 32px; height: 22px; border-radius: 3px; }
.mc-item__info { flex: 1; min-width: 0; }
.mc-item__brand { font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--sand); display: block; }
.mc-item__name { font-size: 13px; font-weight: 500; color: var(--graphite); display: block; margin: 2px 0 8px; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-item__row { display: flex; align-items: center; justify-content: space-between; }
.mc-item__qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.mc-item__qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-2); transition: all var(--t); }
.mc-item__qty-btn:hover { background: var(--cream); color: var(--text); }
.mc-item__qty span { width: 28px; text-align: center; font-size: 13px; font-weight: 600; color: var(--graphite); }
.mc-item__price { font-size: 14px; font-weight: 600; color: var(--graphite); }
.mc-item__remove {
    position: absolute; top: 8px; right: -4px;
    color: var(--text-3); display: flex; padding: 6px;
    min-width: 28px; min-height: 28px; align-items: center; justify-content: center;
    transition: color var(--t);
}
.mc-item__remove:hover { color: var(--danger); }

/* ====== CATALOG PAGE ====== */
.catalog-page { padding: 0 0 56px; }

.catalog-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.catalog-toolbar__active { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.filter-chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; padding: 5px 12px; background: var(--cream);
    border-radius: 20px; color: var(--text-2); cursor: pointer; transition: all var(--t);
}
.filter-chip:hover { background: var(--nude); }
.filter-chip svg { width: 12px; height: 12px; }

.catalog-toolbar__right { display: flex; align-items: center; gap: 12px; }
.catalog-sort {
    font-family: var(--sans); font-size: 13px; padding: 8px 32px 8px 14px;
    border: 1px solid var(--border); border-radius: var(--r-sm);
    background: var(--white); color: var(--text); appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    cursor: pointer; outline: none; transition: border-color var(--t);
}
.catalog-sort:focus { border-color: var(--sand); }

.catalog-toolbar__filter-toggle {
    display: none; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; padding: 8px 16px;
    border: 1px solid var(--border); border-radius: var(--r-sm);
    color: var(--text); background: var(--white); transition: all var(--t);
}
.catalog-toolbar__filter-toggle svg { width: 16px; height: 16px; }

.catalog-layout {
    display: grid; grid-template-columns: 240px 1fr; gap: 32px;
}

/* Filters sidebar */
.catalog-filters {
    position: sticky; top: 84px; align-self: start;
}
.filter-group { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border-light); }
.filter-group:last-of-type { border-bottom: none; margin-bottom: 0; }
.filter-group__title {
    font-size: 13px; font-weight: 600; color: var(--graphite);
    margin-bottom: 12px; display: flex; align-items: center;
    justify-content: space-between; cursor: pointer; user-select: none;
}
.filter-group__body { display: flex; flex-direction: column; gap: 8px; }

.filter-check {
    display: flex; align-items: center; gap: 8px; cursor: pointer;
    font-size: 13px; color: var(--text-2); transition: color var(--t);
}
.filter-check:hover { color: var(--text); }
.filter-check input[type="checkbox"] {
    width: 16px; height: 16px; border-radius: 3px;
    border: 1.5px solid var(--border); appearance: none;
    cursor: pointer; transition: all var(--t); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.filter-check input[type="checkbox"]:checked {
    background: var(--sand); border-color: var(--sand);
}
.filter-check input[type="checkbox"]:checked::after {
    content: ''; width: 8px; height: 5px;
    border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg); margin-top: -1px;
}

.filter-range {
    display: flex; align-items: center; gap: 8px;
}
.filter-range__input {
    width: 100%; padding: 8px 10px; font-size: 13px; font-family: var(--sans);
    border: 1px solid var(--border); border-radius: var(--r-sm);
    outline: none; background: var(--white); transition: border-color var(--t);
}
.filter-range__input:focus { border-color: var(--sand); }
.filter-range__sep { color: var(--text-3); flex-shrink: 0; }

.filter-colors { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-color {
    width: 28px; height: 28px; border-radius: 50%; border: 2px solid transparent;
    cursor: pointer; transition: all var(--t); box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.filter-color--active, .filter-color:hover { border-color: var(--sand); }

.filter-actions { display: flex; gap: 8px; margin-top: 16px; }
.filter-reset {
    font-size: 12.5px; color: var(--text-3); padding: 0; transition: color var(--t);
}
.filter-reset:hover { color: var(--text); }

.catalog-count { font-size: 13px; color: var(--text-3); margin-bottom: 16px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 32px; }
.pagination__btn {
    width: 40px; height: 40px; border-radius: var(--r-sm);
    border: 1px solid var(--border); font-size: 14px; font-weight: 500;
    color: var(--text-2); background: var(--white); display: flex;
    align-items: center; justify-content: center; transition: all var(--t);
}
.pagination__btn:hover { border-color: var(--sand); color: var(--text); }
.pagination__btn--active { background: var(--graphite); color: #fff; border-color: var(--graphite); }

/* ====== PRODUCT PAGE ====== */
.product-page { padding: 0 0 56px; }

.product-top {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    margin-bottom: 48px; padding-top: 8px;
}

/* Gallery */
.product-gallery {}
.product-gallery__main {
    aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden;
    margin-bottom: 12px; display: flex; align-items: center; justify-content: center;
}
.product-gallery__main-img {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; transition: background .3s ease;
}
.product-gallery__main-bottle {
    width: 80px; height: 220px; border-radius: 12px 12px 6px 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,.12); position: relative; transition: background .3s ease;
}
.product-gallery__main-bottle::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 28%; background: rgba(255,255,255,.25); border-radius: 12px 12px 0 0;
}
.product-gallery__main-bottle--wide {
    width: 140px; height: 100px; border-radius: var(--r-md);
}

.product-gallery__thumbs { display: flex; gap: 10px; }
.product-gallery__thumb {
    width: 72px; height: 72px; border-radius: var(--r-sm); overflow: hidden;
    border: 2px solid transparent; cursor: pointer; transition: border-color var(--t);
    display: flex; align-items: center; justify-content: center;
}
.product-gallery__thumb--active, .product-gallery__thumb:hover {
    border-color: var(--sand);
}
.product-gallery__thumb-bottle {
    width: 16px; height: 40px; border-radius: 4px 4px 2px 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

/* Product Info */
.product-info {}
.product-info__brand {
    font-size: 12px; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--sand); display: block; margin-bottom: 6px;
}
.product-info__name {
    font-family: var(--sans); font-size: var(--fs-xl); font-weight: 700;
    color: var(--graphite); line-height: 1.2; margin-bottom: 12px;
    letter-spacing: -.01em;
}
.product-info__rating {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.product-info__rating span { font-size: 13px; color: var(--text-2); }
.product-info__price {
    font-size: 28px; font-weight: 700; color: var(--graphite); margin-bottom: 6px;
}
.product-info__price-old {
    font-size: 16px; color: var(--text-3); text-decoration: line-through; margin-left: 10px; font-weight: 400;
}
.product-info__desc {
    font-size: 14.5px; color: var(--text-2); line-height: 1.65; margin-bottom: 24px;
    padding-bottom: 24px; border-bottom: 1px solid var(--border-light);
}

/* Variants */
.product-variants { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.product-variant__label { font-size: 13px; font-weight: 600; color: var(--graphite); display: block; margin-bottom: 8px; }
.product-variant__options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
    font-size: 13px; font-weight: 500; padding: 8px 20px;
    border-radius: 24px; border: 1px solid var(--border);
    color: var(--text-2); background: var(--white); transition: all var(--t);
}
.variant-btn:hover { border-color: var(--sand); color: var(--text); }
.variant-btn--active { background: var(--graphite); color: #fff; border-color: var(--graphite); }

.variant-color {
    width: 32px; height: 32px; border-radius: 50%; border: 2px solid transparent;
    cursor: pointer; transition: all var(--t); box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.variant-color--active { box-shadow: 0 0 0 2px var(--sand); }

/* Product Actions */
.product-actions { display: flex; gap: 10px; align-items: stretch; margin-bottom: 24px; }
.product-qty {
    display: flex; align-items: center; border: 1px solid var(--border);
    border-radius: var(--r-sm); overflow: hidden;
}
.product-qty__btn {
    width: 40px; height: 48px; display: flex; align-items: center;
    justify-content: center; font-size: 18px; color: var(--text-2); transition: all var(--t);
}
.product-qty__btn:hover { background: var(--cream); color: var(--text); }
.product-qty__value {
    width: 40px; text-align: center; font-size: 15px; font-weight: 600; color: var(--graphite);
}
.product-actions__add { flex: 1; }
.product-actions__buy { white-space: nowrap; }

/* Trust icons */
.product-trust {
    display: flex; gap: 20px; flex-wrap: wrap; padding-top: 20px;
    border-top: 1px solid var(--border-light);
}
.product-trust span {
    display: flex; align-items: center; gap: 6px;
    font-size: 12.5px; color: var(--text-3);
}
.product-trust svg { width: 16px; height: 16px; color: var(--sand); }

/* Product Tabs */
.product-tabs { margin-bottom: 48px; }
.product-tabs__nav {
    display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.product-tabs__btn {
    font-size: 14px; font-weight: 500; padding: 12px 24px;
    color: var(--text-2); border-bottom: 2px solid transparent;
    transition: all var(--t); margin-bottom: -1px;
}
.product-tabs__btn:hover { color: var(--text); }
.product-tabs__btn--active { color: var(--graphite); border-bottom-color: var(--sand); }
.product-tab { font-size: 14.5px; line-height: 1.7; color: var(--text-2); }
.product-tab--hidden { display: none; }
.product-tab p { margin-bottom: 12px; }

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) { background: var(--milk); }
.specs-table td {
    padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--border-light);
}
.specs-table td:first-child { color: var(--text-2); width: 40%; }
.specs-table td:last-child { color: var(--graphite); font-weight: 500; }

/* Reviews */
.reviews-summary {
    display: grid; grid-template-columns: auto 1fr; gap: 32px;
    margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light);
}
.reviews-summary__big { text-align: center; }
.reviews-summary__number { font-size: 48px; font-weight: 700; color: var(--graphite); line-height: 1; }
.reviews-summary__label { font-size: 13px; color: var(--text-3); margin-top: 4px; }
.reviews-summary__bars { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.review-bar { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-3); }
.review-bar__track { flex: 1; height: 6px; background: var(--border-light); border-radius: 3px; overflow: hidden; }
.review-bar__fill { height: 100%; background: var(--sand); border-radius: 3px; }

.review {
    padding: 18px 0; border-bottom: 1px solid var(--border-light);
}
.review:last-child { border-bottom: none; }
.review__header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review__author { font-size: 14px; font-weight: 600; color: var(--graphite); }
.review__date { font-size: 12px; color: var(--text-3); margin-left: auto; }
.review__text { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* Recommendations */
.recommendations { padding-top: 8px; }

/* ====== CART PAGE ====== */
.cart-page { padding: 0 0 56px; }
.cart-page h1 { margin-bottom: 24px; }
.cart-page h1 span { font-family: var(--sans); font-size: 18px; font-weight: 400; color: var(--text-3); }

.cart-layout {
    display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start;
}

.cart-items {}
.cart-item {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 0; border-bottom: 1px solid var(--border-light);
}
.cart-item__img {
    width: 80px; height: 80px; border-radius: var(--r-sm); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.cart-item__bottle { width: 20px; height: 50px; border-radius: 5px 5px 2px 2px; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.cart-item__bottle--wide { width: 40px; height: 28px; border-radius: 4px; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__brand { font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--sand); display: block; }
.cart-item__name { font-size: 14px; font-weight: 500; color: var(--graphite); margin: 2px 0; line-height: 1.3; }
.cart-item__variant { font-size: 12px; color: var(--text-3); }

.cart-item__qty {
    display: flex; align-items: center; border: 1px solid var(--border);
    border-radius: 6px; overflow: hidden;
}
.cart-item__qty-btn {
    width: 32px; height: 32px; display: flex; align-items: center;
    justify-content: center; font-size: 15px; color: var(--text-2); transition: all var(--t);
}
.cart-item__qty-btn:hover { background: var(--cream); color: var(--text); }
.cart-item__qty-val {
    width: 32px; text-align: center; font-size: 14px; font-weight: 600; color: var(--graphite);
}
.cart-item__price { font-size: 16px; font-weight: 700; color: var(--graphite); white-space: nowrap; min-width: 80px; text-align: right; }
.cart-item__remove { color: var(--text-3); display: flex; transition: color var(--t); flex-shrink: 0; }
.cart-item__remove:hover { color: var(--danger); }

/* Cart Summary */
.cart-summary {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 28px; position: sticky; top: 84px;
}
.cart-summary__title {
    font-family: var(--sans); font-size: 18px; font-weight: 700;
    color: var(--graphite); margin-bottom: 18px;
}
.cart-summary__row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; font-size: 14px; color: var(--text-2);
    border-bottom: 1px dashed var(--border-light);
}
.cart-summary__row--total {
    border-bottom: none; padding-top: 16px; margin-top: 4px;
    font-size: 18px; font-weight: 700; color: var(--graphite);
}
.cart-summary__discount { color: var(--sale); }
.cart-summary__checkout { width: 100%; justify-content: center; margin-top: 18px; }
.cart-summary__note { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 12px; }

.cart-empty {
    text-align: center; padding: 64px 0; display: flex; flex-direction: column;
    align-items: center; gap: 16px;
}
.cart-empty svg { color: var(--text-3); }
.cart-empty p { font-size: 16px; color: var(--text-2); }

/* ====== NEW PAGES RESPONSIVE ====== */
@media (max-width: 1100px) {
    .product-top { gap: 32px; }
    .cart-layout { grid-template-columns: 1fr 300px; }
}

@media (max-width: 768px) {
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-filters {
        position: fixed; top: 0; left: 0; bottom: 0;
        width: 300px; max-width: 85vw; z-index: 201;
        background: var(--white); box-shadow: 4px 0 24px rgba(0,0,0,.1);
        transform: translateX(-100%); transition: transform var(--t-slow);
        overflow-y: auto; padding: 24px;
    }
    .catalog-filters--open { transform: translateX(0); }
    .catalog-toolbar__filter-toggle { display: flex; }

    .product-top { grid-template-columns: 1fr; gap: 24px; }
    .product-info__name { font-size: 26px; }
    .product-info__price { font-size: 24px; }
    .product-actions { flex-wrap: wrap; }
    .product-actions__add { order: 1; flex: 1; min-width: 200px; }
    .product-actions__buy { order: 2; flex: 1; min-width: 200px; }
    .product-qty { order: 0; }

    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .cart-item {
        display: grid; grid-template-columns: 64px 1fr auto; grid-template-rows: auto auto;
        gap: 8px 12px; align-items: start;
    }
    .cart-item__img { grid-row: 1 / 3; width: 64px; height: 64px; }
    .cart-item__info { grid-column: 2 / 4; }
    .cart-item__qty { grid-column: 2; }
    .cart-item__price { grid-column: 3; align-self: center; font-size: 15px; }
    .cart-item__remove { position: absolute; top: 12px; right: 0; }
    .cart-item { position: relative; padding-right: 28px; }

    /* Mobile nav overlay */
    .header__nav--open {
        display: flex; flex-direction: column; gap: 0;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white); z-index: 300; padding: 80px 24px 24px;
    }
    .header__nav--open .header__nav-link {
        font-size: 18px; padding: 14px 0;
        border-bottom: 1px solid var(--border-light);
    }
    .header__burger--active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
    .header__burger--active span:nth-child(2) { opacity: 0; }
    .header__burger--active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
}

@media (max-width: 480px) {
    .product-gallery__thumbs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { width: 100%; justify-content: center; }
    .product-tabs__btn { padding: 10px 14px; font-size: 13px; }
    .cart-item__img { width: 56px; height: 56px; }
}

/* ====== CHECKOUT ====== */
.checkout-page { padding: 0 0 56px; }
.checkout-page h1 { margin-bottom: 24px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.checkout-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; }
.checkout-form h2 { font-size: 17px; font-weight: 600; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.checkout-field { margin-bottom: 16px; }
.checkout-field label { display: block; font-size: 13px; font-weight: 500; color: var(--text-2); margin-bottom: 5px; }
.checkout-field label .req { color: var(--danger); }
.checkout-field input, .checkout-field select, .checkout-field textarea {
    width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--r-sm);
    font-family: var(--sans); font-size: 14px; color: var(--text); outline: none; transition: border-color var(--t);
}
.checkout-field input:focus, .checkout-field select:focus, .checkout-field textarea:focus { border-color: var(--sand); }
.checkout-field textarea { min-height: 70px; resize: vertical; }
.checkout-field--error input, .checkout-field--error select, .checkout-field--error textarea { border-color: var(--danger); }
.checkout-field__error { font-size: 12px; color: var(--danger); margin-top: 4px; display: none; }
.checkout-field--error .checkout-field__error { display: block; }
.checkout-radio-group { display: flex; flex-direction: column; gap: 8px; }
.checkout-radio { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--r-sm); cursor: pointer; transition: all var(--t); }
.checkout-radio:hover { border-color: var(--sand); }
.checkout-radio input[type="radio"] { width: 18px; height: 18px; accent-color: var(--sand); flex-shrink: 0; }
.checkout-radio input[type="radio"]:checked ~ span { font-weight: 600; }
.checkout-radio span { font-size: 14px; }
.checkout-summary { position: sticky; top: 80px; }
.checkout-summary__card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.checkout-summary__title { font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.checkout-summary__items { max-height: 240px; overflow-y: auto; margin-bottom: 16px; border-bottom: 1px solid var(--border-light); padding-bottom: 12px; }
.checkout-summary__item { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.checkout-summary__item-img { width: 40px; height: 40px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.checkout-summary__item-bottle { width: 12px; height: 28px; border-radius: 3px; }
.checkout-summary__item-bottle--wide { width: 24px; height: 16px; border-radius: 3px; }
.checkout-summary__item-info { flex: 1; min-width: 0; }
.checkout-summary__item-name { font-size: 13px; font-weight: 500; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.checkout-summary__item-qty { font-size: 12px; color: var(--text-3); }
.checkout-summary__item-price { font-size: 13px; font-weight: 600; flex-shrink: 0; }
.checkout-summary__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--text-2); }
.checkout-summary__row--total { font-size: 17px; font-weight: 700; color: var(--graphite); padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--border); }
.checkout-submit { width: 100%; margin-top: 16px; }
.checkout-submit:disabled { opacity: .5; cursor: not-allowed; }
.checkout-legal { font-size: 11px; color: var(--text-3); margin-top: 10px; line-height: 1.5; text-align: center; }

@media (max-width: 768px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; order: -1; }
}

/* ====== ORDER COMPLETE & LOYALTY ====== */
.order-page { padding: 0 0 48px; }

.order-success {
    text-align: center; padding: 40px 0 32px;
    border-bottom: 1px solid var(--border-light); margin-bottom: 32px;
}
.order-success__icon { margin-bottom: 16px; }
.order-success__title { font-size: var(--fs-xl); font-weight: 700; color: var(--graphite); margin-bottom: 8px; }
.order-success__text { font-size: var(--fs-base); color: var(--text-2); margin-bottom: 16px; }
.order-success__text strong { color: var(--graphite); }
.order-success__details { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.order-success__detail {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-2);
}
.order-success__detail strong { color: var(--text); }
.order-success__detail svg { color: var(--sand); }

/* Loyalty Block */
.loyalty-block {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 28px; margin-bottom: 32px;
}
.loyalty-block__header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.loyalty-block__icon {
    width: 44px; height: 44px; border-radius: var(--r-sm);
    background: var(--brand-soft); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.loyalty-block__title { font-size: 17px; font-weight: 700; color: var(--graphite); margin-bottom: 2px; }
.loyalty-block__subtitle { font-size: 13px; color: var(--text-2); }

/* Rewards */
.loyalty-block__rewards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.loyalty-reward {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 16px; background: var(--milk); border-radius: var(--r-md);
    border: 1px solid var(--border-light); position: relative;
}
.loyalty-reward__icon {
    width: 40px; height: 40px; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.loyalty-reward__icon--promo { background: rgba(176,144,128,.1); color: var(--sand); }
.loyalty-reward__icon--gift { background: var(--brand-soft); color: var(--brand); }
.loyalty-reward__info { flex: 1; }
.loyalty-reward__info strong { font-size: 14px; color: var(--graphite); display: block; margin-bottom: 2px; }
.loyalty-reward__info span { font-size: 12px; color: var(--text-2); line-height: 1.4; }
.loyalty-reward__badge {
    position: absolute; top: 10px; right: 10px;
    font-size: 10px; font-weight: 600; padding: 3px 8px;
    border-radius: 4px; background: var(--sand); color: #fff;
}
.loyalty-reward__badge--draw { background: var(--brand); }

/* Review status */
.loyalty-review__status {
    display: flex; align-items: center; gap: 12px;
    padding: 16px; background: rgba(176,144,128,.06);
    border-radius: var(--r-md); border: 1px dashed var(--border);
}
.loyalty-review__status-icon { flex-shrink: 0; }
.loyalty-review__status p { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.loyalty-review__status p strong { color: var(--text); }

/* Review form */
.loyalty-review__form-title { font-size: 16px; font-weight: 700; color: var(--graphite); margin-bottom: 16px; }
.loyalty-review__product { margin-bottom: 20px; }
.loyalty-review__product-inner {
    display: flex; align-items: center; gap: 12px;
    padding: 12px; background: var(--milk); border-radius: var(--r-sm);
}
.loyalty-review__product-img {
    width: 48px; height: 48px; border-radius: var(--r-xs); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.loyalty-review__product-bottle { width: 12px; height: 32px; border-radius: 3px 3px 1px 1px; box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.loyalty-review__product-inner strong { font-size: 14px; color: var(--graphite); display: block; }
.loyalty-review__product-inner span { font-size: 12px; color: var(--text-3); }

.loyalty-review__field { margin-bottom: 16px; }
.loyalty-review__label { font-size: 13px; font-weight: 600; color: var(--graphite); display: block; margin-bottom: 6px; }

.loyalty-review__stars { display: flex; gap: 4px; }
.loyalty-star { color: var(--border); transition: all var(--t); cursor: pointer; padding: 2px; }
.loyalty-star:hover { color: var(--sand); }

.loyalty-review__textarea {
    width: 100%; padding: 12px; font-size: 14px; font-family: var(--sans);
    border: 1px solid var(--border); border-radius: var(--r-sm);
    outline: none; resize: vertical; background: var(--milk);
    transition: border-color var(--t);
}
.loyalty-review__textarea:focus { border-color: var(--sand); }
.loyalty-review__textarea::placeholder { color: #bbb; }

.loyalty-review__upload {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 20px; border: 2px dashed var(--border);
    border-radius: var(--r-md); cursor: pointer; transition: all var(--t);
    color: var(--text-3); font-size: 13px;
}
.loyalty-review__upload:hover { border-color: var(--sand); color: var(--text-2); }

.loyalty-review__submit { width: 100%; justify-content: center; margin-top: 4px; }

/* Review done */
.loyalty-review__done { text-align: center; padding: 24px 0; }
.loyalty-review__done-icon { margin-bottom: 12px; }
.loyalty-review__done h3 { font-size: 18px; font-weight: 700; color: var(--graphite); margin-bottom: 8px; }
.loyalty-review__done p { font-size: 14px; color: var(--text-2); margin-bottom: 6px; }
.loyalty-review__done-sub { font-size: 13px; color: var(--text-3); margin-bottom: 16px !important; }
.loyalty-promo-code {
    display: inline-block; font-size: 20px; font-weight: 700; color: var(--brand);
    background: var(--brand-soft); padding: 6px 16px; border-radius: var(--r-sm);
    letter-spacing: .05em;
}

/* Order items list */
.order-items { margin-bottom: 32px; }
.order-items__title { font-size: 17px; font-weight: 700; color: var(--graphite); margin-bottom: 16px; }
.order-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--border-light);
}
.order-item:last-child { border-bottom: none; }
.order-item__img {
    width: 56px; height: 56px; border-radius: var(--r-xs); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.order-item__bottle { width: 14px; height: 36px; border-radius: 3px 3px 1px 1px; box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.order-item__bottle--wide { width: 28px; height: 20px; border-radius: 3px; }
.order-item__info { flex: 1; min-width: 0; }
.order-item__brand { font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--sand); display: block; }
.order-item__name { font-size: 14px; font-weight: 500; color: var(--graphite); display: block; }
.order-item__variant { font-size: 12px; color: var(--text-3); }
.order-item__qty { font-size: 13px; color: var(--text-2); white-space: nowrap; }
.order-item__price { font-size: 15px; font-weight: 600; color: var(--graphite); white-space: nowrap; }

.order-continue { display: flex; gap: 12px; justify-content: center; padding-top: 16px; }

/* Loyalty responsive */
@media (max-width: 768px) {
    .loyalty-block { padding: 20px; }
    .loyalty-block__rewards { grid-template-columns: 1fr; }
    .order-success__details { flex-direction: column; align-items: center; gap: 10px; }
    .order-continue { flex-direction: column; }
    .order-continue .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .loyalty-reward { flex-direction: column; text-align: center; align-items: center; }
    .loyalty-reward__badge { position: static; margin-top: 6px; }
}

/* ====== PRODUCT GALLERY ENHANCEMENTS ====== */

/* Main image — zoom cursor when has real image */
.product-gallery__main {
    position: relative;
    cursor: pointer;
}
.product-gallery__main--has-image {
    cursor: zoom-in;
}
.product-gallery__main-real {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--bg);
}

/* Gallery arrows */
.product-gallery__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    color: var(--graphite);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: all var(--t);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    align-items: center;
    justify-content: center;
}
.product-gallery__arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.product-gallery__arrow--prev { left: 10px; }
.product-gallery__arrow--next { right: 10px; }

/* Thumbs enhancements */
.product-gallery__thumbs {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.product-gallery__thumbs::-webkit-scrollbar { display: none; }

.product-gallery__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-gallery__thumb-bottle--wide {
    width: 28px;
    height: 18px;
    border-radius: 3px;
}

/* ====== ZOOM MODAL (Lightbox) ====== */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.zoom-modal--active {
    opacity: 1;
    visibility: visible;
}
.zoom-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.85);
}
.zoom-modal__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 95vw;
    max-height: 95vh;
}
.zoom-modal__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 80vh;
    overflow: hidden;
}
.zoom-modal__img-wrap img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--r-md);
}
.zoom-modal__fallback {
    width: 340px;
    height: 420px;
    max-width: 90vw;
    max-height: 70vh;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.zoom-modal__fallback-bottle {
    width: 100px;
    height: 280px;
    border-radius: 14px 14px 8px 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,.15);
    position: relative;
}
.zoom-modal__fallback-bottle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28%;
    background: rgba(255,255,255,.25);
    border-radius: 14px 14px 0 0;
}
.zoom-modal__fallback-bottle--wide {
    width: 180px;
    height: 130px;
    border-radius: var(--r-md);
}

/* Zoom modal buttons */
.zoom-modal__close {
    position: absolute;
    top: -40px;
    right: -10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.zoom-modal__close:hover { background: rgba(255,255,255,.3); }

.zoom-modal__prev,
.zoom-modal__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.zoom-modal__prev:hover,
.zoom-modal__next:hover { background: rgba(255,255,255,.3); }
.zoom-modal__prev { left: -60px; }
.zoom-modal__next { right: -60px; }

/* Zoom thumbs strip */
.zoom-modal__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
    max-width: 90vw;
    padding: 4px 0;
    scrollbar-width: none;
}
.zoom-modal__thumbs::-webkit-scrollbar { display: none; }

.zoom-modal__thumb {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--t);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zoom-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zoom-modal__thumb--active,
.zoom-modal__thumb:hover {
    border-color: rgba(255,255,255,.7);
}

/* ====== GALLERY RESPONSIVE ====== */
@media (max-width: 768px) {
    .product-gallery__arrow {
        display: flex;
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    .product-gallery__arrow--prev { left: 6px; }
    .product-gallery__arrow--next { right: 6px; }

    .product-gallery__thumbs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .zoom-modal__prev { left: 8px; }
    .zoom-modal__next { right: 8px; }
    .zoom-modal__close { top: 8px; right: 8px; }
    .zoom-modal__prev,
    .zoom-modal__next {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    .zoom-modal__fallback {
        width: 260px;
        height: 340px;
    }
    .zoom-modal__fallback-bottle {
        width: 70px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .product-gallery__thumb {
        width: 56px;
        height: 56px;
    }
    .zoom-modal__thumbs { gap: 6px; }
    .zoom-modal__thumb {
        width: 44px;
        height: 44px;
    }
}

/* ====== ENHANCED REVIEWS ====== */
.review-write-btn { margin-bottom: 24px; }

.review-card {
    padding: 20px 0; border-bottom: 1px solid var(--border-light);
}
.review-card:last-child { border-bottom: none; }
.review-card__header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap;
}
.review-card__author { font-size: 14px; font-weight: 600; color: var(--graphite); }
.review-card__stars { display: flex; gap: 2px; }
.review-card__badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 600; color: #2D6B3F;
    background: rgba(45,107,63,.08); padding: 3px 10px;
    border-radius: 20px; white-space: nowrap;
}
.review-card__date { font-size: 12px; color: var(--text-3); margin-left: auto; }
.review-card__text { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 10px; }
.review-card__photos { display: flex; gap: 8px; margin-bottom: 12px; overflow-x: auto; }
.review-card__photo {
    width: 64px; height: 64px; border-radius: 8px; object-fit: cover;
    cursor: pointer; border: 1px solid var(--border-light);
    transition: transform .15s;
}
.review-card__photo:hover { transform: scale(1.08); }
.review-card__footer { display: flex; align-items: center; gap: 16px; }
.review-card__helpful {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--text-3); background: none;
    border: 1px solid var(--border-light); border-radius: 20px;
    padding: 5px 14px; cursor: pointer; transition: all .15s;
}
.review-card__helpful:hover { border-color: var(--sand); color: var(--sand); }
.review-card__helpful:disabled { cursor: default; }
.review-card__helpful-count { font-weight: 600; }
.review-card__reply {
    margin-top: 14px; margin-left: 20px; padding: 14px 18px;
    background: var(--milk); border-radius: 12px;
    border-left: 3px solid var(--sand);
}
.review-card__reply-header {
    display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
    font-size: 13px; color: var(--text-2);
}
.review-card__reply-header strong { color: var(--graphite); font-size: 13px; }
.review-card__reply-header time { font-size: 11px; color: var(--text-3); margin-left: auto; }
.review-card__reply p { font-size: 13px; color: var(--text-2); line-height: 1.5; margin: 0; }

/* Review form */
.review-form {
    background: var(--milk); border-radius: 16px; padding: 24px;
    margin-bottom: 24px; border: 1px solid var(--border-light);
}
.review-form__title { font-size: 18px; font-weight: 700; color: var(--graphite); margin-bottom: 20px; }
.review-form__field { margin-bottom: 16px; }
.review-form__label { font-size: 13px; font-weight: 600; color: var(--graphite); display: block; margin-bottom: 6px; }
.review-form__stars { display: flex; gap: 4px; }
.review-form__star {
    background: none; border: none; cursor: pointer; padding: 2px;
    color: #ccc; transition: color .15s;
}
.review-form__star:hover { color: var(--sand); }
.review-form__input {
    width: 100%; padding: 10px 14px; font-size: 14px; font-family: var(--sans);
    border: 1px solid var(--border); border-radius: 8px;
    background: #fff; transition: border-color .15s; box-sizing: border-box;
}
.review-form__input:focus { border-color: var(--sand); outline: none; }
.review-form__textarea {
    width: 100%; padding: 12px 14px; font-size: 14px; font-family: var(--sans);
    border: 1px solid var(--border); border-radius: 8px;
    background: #fff; resize: vertical; min-height: 80px;
    transition: border-color .15s; box-sizing: border-box;
}
.review-form__textarea:focus { border-color: var(--sand); outline: none; }
.review-form__upload {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 20px; border: 2px dashed var(--border);
    border-radius: 12px; cursor: pointer; color: var(--text-3); font-size: 13px;
    transition: border-color .15s, color .15s;
}
.review-form__upload:hover { border-color: var(--sand); color: var(--text-2); }
.review-form__submit { margin-top: 8px; }

@media (max-width: 600px) {
    .review-card__header { gap: 6px; }
    .review-card__date { margin-left: 0; width: 100%; margin-top: 4px; }
    .review-card__reply { margin-left: 0; }
}

/* ====== CONTACT WIDGET ====== */
.contact-fab { position: fixed; bottom: 24px; right: 24px; z-index: 9000; }
.contact-fab__toggle {
    width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: #fff;
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(224,21,122,.3); transition: transform .2s;
}
.contact-fab__toggle:hover { transform: scale(1.08); }
.contact-fab__icon-close { display: none; }
.contact-fab--open .contact-fab__icon-chat { display: none; }
.contact-fab--open .contact-fab__icon-close { display: block; }
.contact-fab__menu {
    position: absolute; bottom: 70px; right: 0; background: #fff;
    border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.12);
    padding: 8px; min-width: 220px;
    opacity: 0; visibility: hidden; transform: translateY(10px) scale(.95);
    transition: all .2s;
}
.contact-fab--open .contact-fab__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.contact-fab__item {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    border-radius: 12px; text-decoration: none; color: var(--text-1);
    font-size: .9rem; border: none; background: none; width: 100%;
    cursor: pointer; transition: background .15s;
}
.contact-fab__item:hover { background: var(--bg-2, #f5f5f5); }
.contact-fab__item--tg svg { color: #229ED9; }
.contact-fab__item--wa svg { color: #25D366; }

/* Product page contact links */
.product-contact-links { display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.product-contact-link {
    display: flex; align-items: center; gap: 6px; color: var(--text-2);
    font-size: .85rem; text-decoration: none; transition: color .15s;
}
.product-contact-link:hover { color: var(--brand); }

@media (max-width: 480px) {
    .contact-fab { bottom: 16px; right: 16px; }
    .contact-fab__toggle { width: 48px; height: 48px; }
    .contact-fab__menu { min-width: 200px; }
}

/* ====== STOCK STATUS ====== */
.p-card__stock { font-size: .75rem; color: var(--warning, #E8A020); font-weight: 500; margin-top: 2px; }
.p-card__stock--out { color: var(--text-3); }

/* Product page stock indicator */
.product-stock { font-size: .85rem; margin-top: 4px; margin-bottom: 8px; }
.product-stock--in { color: var(--success, #2D6B3F); }
.product-stock--low { color: var(--warning, #E8A020); }
.product-stock--out { color: var(--text-3); }

/* ====== REAL PHOTOS IN MINI-CART & SEARCH ====== */
.mc-item__img--photo {
    background: var(--cream) !important;
    overflow: hidden;
}
.mc-item__img--photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.search-results__img--photo {
    background: var(--cream) !important;
    overflow: hidden;
}
.search-results__img--photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ====== WHATSAPP BUTTON ====== */
.btn--wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25D366; color: #fff; border: none;
    font-size: .95rem; font-weight: 600; cursor: pointer;
    border-radius: var(--r-sm, 10px); padding: 0 24px; height: 52px;
    text-decoration: none; transition: background .2s, transform .15s;
    white-space: nowrap;
}
.btn--wa:hover { background: #1ebe5b; transform: translateY(-1px); }
.btn--wa:active { transform: none; background: #17a64e; }
.btn--wa svg { flex-shrink: 0; }
.btn--tg {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #0088cc; color: #fff; border: none;
    font-size: .95rem; font-weight: 600; cursor: pointer;
    border-radius: var(--r-sm, 10px); padding: 0 24px; height: 52px;
    text-decoration: none; transition: background .2s, transform .15s;
    white-space: nowrap;
}
.btn--tg:hover { background: #0077bb; transform: translateY(-1px); color: #fff; }
.btn--tg:active { transform: none; background: #006aa8; }
.btn--tg svg { flex-shrink: 0; }

/* Product actions — WA button stacks after Buy Now */
.product-actions { display: flex; flex-direction: column; gap: 10px; }
.product-actions__wa { width: 100%; }

/* FAB Telegram-first: TG is visually primary */
.contact-fab__item--tg {
    background: #e8f5fd;
}
.contact-fab__item--tg svg { color: #0088cc; }
.contact-fab__item--tg:hover { background: #d0eefa; }

/* FAB cart-order button via Telegram */
.contact-fab__item--cart-tg {
    background: #0088cc; color: #fff;
    font-weight: 600;
}
.contact-fab__item--cart-tg svg { color: #fff; }
.contact-fab__item--cart-tg:hover { background: #0077bb; }

@media (max-width: 768px) {
    .btn--wa { height: 48px; font-size: .9rem; }
}

/* ====== CHECKOUT — OR divider & WA button spacing ====== */
.checkout-or {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-3); font-size: .8rem; margin: 4px 0;
}
.checkout-or::before, .checkout-or::after {
    content: ''; flex: 1; height: 1px; background: var(--border-light);
}

/* ====== ORDER COMPLETE PAGE ====== */
.order-success__num {
    font-size: 1rem; color: var(--text-2); margin: 4px 0 8px;
}
.order-success__num strong { color: var(--text); font-family: monospace; font-size: 1.05rem; }

/* Order summary card */
.order-card {
    background: var(--cream); border: 1px solid var(--border-light);
    border-radius: var(--r-md, 14px); padding: 4px 0;
    margin: 20px auto 0; max-width: 480px; text-align: left;
}
.order-card__row {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px; padding: 10px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: .9rem;
}
.order-card__row:last-child { border-bottom: none; }
.order-card__label { color: var(--text-2); flex-shrink: 0; }
.order-card__val { font-weight: 600; text-align: right; color: var(--text); }
.order-card__val--green { color: var(--success, #2D6B3F); }
.order-card__row--total {
    background: var(--nude); border-radius: 0 0 var(--r-md, 14px) var(--r-md, 14px);
    border-bottom: none;
}
.order-card__row--total .order-card__label { font-weight: 600; color: var(--text); }
.order-card__row--total .order-card__val { font-size: 1.1rem; color: var(--text); }

/* Actions below card */
.order-success__actions {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; margin-top: 24px;
}
.order-success__actions .btn { min-width: 160px; }

/* Order items — photo support */
.order-item__img--photo {
    background: var(--cream) !important;
    overflow: hidden;
}
.order-item__img--photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

@media (max-width: 480px) {
    .order-card { margin: 16px -4px 0; }
    .order-card__row { padding: 9px 16px; font-size: .85rem; }
    .order-success__actions .btn { flex: 1 1 140px; }
}
