/* =====================================================
   HUKA MARKET ? MAIN CSS
   ===================================================== */

/* === CSS ?????????? === */
:root {
    /* ??? */
    --c-bg:       #0D0D0D;
    --c-bg-2:     #141414;
    --c-bg-3:     #1A1A1A;
    --c-card:     #1C1C1C;
    --c-card-h:   #242424;

    /* ??????? */
    --c-gold:     #C9A84C;
    --c-gold-2:   #E2C06A;
    --c-gold-dim: rgba(201,168,76,0.12);
    --c-gold-glow:rgba(201,168,76,0.25);
    --c-orange:   #E8691F;
    --c-orange-h: #FF7A35;
    --c-red:      #D94F4F;

    /* ????? */
    --c-text:     #F0F0F0;
    --c-text-2:   #A8A8A8;
    --c-text-3:   #5C5C5C;

    /* ??????? */
    --c-border:   #2A2A2A;
    --c-border-2: #383838;

    /* ??????????? */
    --f-main:    'Inter', 'Segoe UI', Arial, sans-serif;
    --f-display: 'Montserrat', 'Inter', Arial, sans-serif;

    /* ?????????? */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-full: 9999px;

    /* ??????? ?????? */
    --s-pad: clamp(48px, 7vw, 88px);

    /* ???????????? ?????? */
    --container: 1280px;

    /* ???????? */
    --t-fast: 0.15s ease;
    --t-mid:  0.28s ease;
    --t-slow: 0.45s ease;

    /* ???? */
    --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
    --shadow-gold: 0 0 20px rgba(201,168,76,0.3);
    --header-offset: 130px;
}

/* === ????????? === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
}

/* === ??????????? === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-text);
}
h1 { font-size: clamp(32px, 5vw, 64px); }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(17px, 2vw, 22px); }

p { color: var(--c-text-2); font-size: 15px; line-height: 1.7; }

.text-gold { color: var(--c-gold); }
.text-muted { color: var(--c-text-2); }

/* === SECTION HEADER === */
.section-header {
    margin-bottom: clamp(28px, 4vw, 48px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.section-header__title {
    font-family: var(--f-display);
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700;
    color: var(--c-text);
}
.section-header__title span { color: var(--c-gold); }
.section-header__link {
    color: var(--c-gold);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color var(--t-fast);
}
.section-header__link:hover { color: var(--c-gold-2); }
.section-header__link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.section-header__link:hover svg { transform: translateX(4px); }

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 10px;
}

/* === ?????? === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--r-full);
    font-family: var(--f-main);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all var(--t-mid);
    border: 2px solid transparent;
    white-space: nowrap;
    text-align: center;
}
.btn--gold {
    background: var(--c-gold);
    color: #0D0D0D;
    border-color: var(--c-gold);
}
.btn--gold:hover {
    background: var(--c-gold-2);
    border-color: var(--c-gold-2);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--c-gold);
    border-color: var(--c-gold);
}
.btn--outline:hover {
    background: var(--c-gold-dim);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.btn--dark {
    background: var(--c-bg-3);
    color: var(--c-text);
    border-color: var(--c-border-2);
}
.btn--dark:hover {
    background: var(--c-card);
    border-color: var(--c-gold);
    color: var(--c-gold);
}
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 40px; font-size: 17px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === ?????? === */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge--new    { background: var(--c-gold); color: #000; }
.badge--sale   { background: var(--c-red); color: #fff; }
.badge--hot    { background: var(--c-orange); color: #fff; }
.badge--hit    { background: #7B5EA7; color: #fff; }

/* =====================================================
   ????? / HEADER
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--t-mid), box-shadow var(--t-mid), backdrop-filter var(--t-mid);
}
.site-header--transparent {
    background: transparent;
}
.site-header--scrolled {
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--c-border);
}

/* Контент на внутренних страницах уходит ниже фиксированной шапки */
body:not(.is-homepage) #main-content {
    padding-top: var(--header-offset);
}

/* ??????? ?????? */
.header-top {
    background: var(--c-bg-2);
    border-bottom: 1px solid var(--c-border);
    padding: 6px 0;
}
.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.header-top__left,
.header-top__right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-top__text {
    font-size: 12px;
    color: var(--c-text-2);
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-top__text svg { width: 13px; height: 13px; color: var(--c-gold); flex-shrink: 0; }
.header-top__link {
    font-size: 12px;
    color: var(--c-text-2);
    transition: color var(--t-fast);
}
.header-top__link:hover { color: var(--c-gold); }
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border: 1.5px solid var(--c-text-3);
    border-radius: var(--r-full);
    font-size: 10px;
    font-weight: 700;
    color: var(--c-text-3);
}

/* ???????? ?????? ?????? */
.header-main {
    padding: 14px 0;
}
.header-main .container {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ??????? */
.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.site-logo__icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-orange) 100%);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.site-logo__icon svg { width: 26px; height: 26px; color: #000; }
.site-logo__text { line-height: 1.1; }
.site-logo__name {
    display: block;
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--c-text);
    letter-spacing: -0.5px;
}
.site-logo__sub {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--c-text-3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ????? */
.header-search {
    flex: 1;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
}
.header-search__input {
    width: 100%;
    background: var(--c-bg-3);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-full);
    padding: 11px 48px 11px 18px;
    font-size: 14px;
    color: var(--c-text);
    outline: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.header-search__input::placeholder { color: var(--c-text-3); }
.header-search__input:focus {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px var(--c-gold-dim);
}
.header-search__btn {
    position: absolute;
    right: 4px; top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    background: var(--c-gold);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast);
}
.header-search__btn:hover { background: var(--c-gold-2); }
.header-search__btn svg { width: 16px; height: 16px; color: #000; }

/* ???????? (???????, ???????) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}
.header-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--c-bg-3);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    color: var(--c-text-2);
    transition: all var(--t-fast);
    text-decoration: none;
}
.header-action-btn:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
    background: var(--c-gold-dim);
}
.header-action-btn svg { width: 20px; height: 20px; }
.header-cart-count {
    position: absolute;
    top: -6px; right: -6px;
    background: var(--c-gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px; height: 18px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--c-gold-dim);
    border: 1.5px solid rgba(201,168,76,0.3);
    border-radius: var(--r-full);
    text-decoration: none;
    transition: all var(--t-fast);
}
.header-phone:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
}
.header-phone:hover .header-phone__number,
.header-phone:hover .header-phone__icon { color: #000; }
.header-phone__icon { width: 16px; height: 16px; color: var(--c-gold); }
.header-phone__number {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-gold);
    transition: color var(--t-fast);
}

/* ?????? ?????????? ???? */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: var(--c-bg-3);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: border-color var(--t-fast);
}
.mobile-menu-btn:hover { border-color: var(--c-gold); }
.mobile-menu-btn span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-text-2);
    border-radius: 2px;
    transition: all var(--t-mid);
}
.mobile-menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ????????? */
.header-nav {
    background: var(--c-bg-2);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.header-nav .container {
    display: flex;
    align-items: stretch;
}
.nav-menu {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.nav-menu__item {
    position: relative;
}
.nav-menu__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-2);
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
}
.nav-menu__link:hover { color: var(--c-text); background: rgba(255,255,255,0.04); }
.nav-menu__link.is-active { color: var(--c-gold); }
.nav-menu__link svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.nav-menu__item:hover .nav-menu__link svg { transform: rotate(180deg); }
.nav-menu__link--catalog {
    color: var(--c-gold);
    font-weight: 600;
}
.nav-menu__link--catalog:hover { color: var(--c-gold-2); }

/* ?????????? ???? */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--c-bg-2);
    border: 1px solid var(--c-border);
    border-radius: 0 0 var(--r-md) var(--r-md);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--t-mid);
    z-index: 100;
    box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}
.nav-menu__item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--c-text-2);
    transition: color var(--t-fast), background var(--t-fast);
}
.nav-dropdown__link:hover {
    color: var(--c-gold);
    background: var(--c-gold-dim);
}
.nav-dropdown__link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ????????? ????????? */
.mobile-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-mid);
}
.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav__panel {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: min(340px, 90vw);
    background: var(--c-bg-2);
    border-right: 1px solid var(--c-border);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--t-mid);
    display: flex;
    flex-direction: column;
}
.mobile-nav.is-open .mobile-nav__panel {
    transform: translateX(0);
}
.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--c-border);
}
.mobile-nav__close {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-bg-3);
    border-radius: var(--r-sm);
    color: var(--c-text-2);
}
.mobile-nav__close svg { width: 18px; height: 18px; }
.mobile-nav__menu { padding: 12px 0; flex: 1; }
.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--c-text-2);
    border-bottom: 1px solid var(--c-border);
    transition: all var(--t-fast);
}
.mobile-nav__link:hover { color: var(--c-gold); background: var(--c-gold-dim); }
.mobile-nav__link svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-nav__footer {
    padding: 20px;
    border-top: 1px solid var(--c-border);
}

/* =====================================================
   HERO ??????
   ===================================================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(232,105,31,0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0D0D0D 0%, #0A0A0A 100%);
}
.hero__bg-img {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.12;
}
.hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
}
.hero__content {}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--c-gold-dim);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--c-gold);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero__badge svg { width: 14px; height: 14px; }
.hero__title {
    font-family: var(--f-display);
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 800;
    color: var(--c-text);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero__title em {
    font-style: normal;
    color: var(--c-gold);
    position: relative;
}
.hero__desc {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--c-text-2);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.hero__stat { text-align: left; }
.hero__stat-num {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1;
}
.hero__stat-label {
    display: block;
    font-size: 12px;
    color: var(--c-text-3);
    margin-top: 4px;
}
.hero__stat-sep {
    width: 1px;
    height: 40px;
    background: var(--c-border);
}
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__cards {
    position: relative;
    width: 100%;
    max-width: 460px;
}
.hero__card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 20px;
    transition: transform var(--t-slow);
}
.hero__card--main { z-index: 2; position: relative; }
.hero__card--float {
    position: absolute;
    background: var(--c-bg-2);
    border-color: rgba(201,168,76,0.2);
}
.hero__card--float-1 {
    bottom: -20px; right: -20px;
    width: 200px;
}
.hero__card--float-2 {
    top: -20px; left: -20px;
    width: 180px;
}
.hero__card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--r-md);
    background: var(--c-bg-3);
}
.hero__card-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    margin-top: 12px;
    margin-bottom: 4px;
}
.hero__card-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-gold);
}

/* ????? ????? ????? */
.hero__wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--c-bg));
    pointer-events: none;
}

/* =====================================================
   ?????????
   ===================================================== */
.section-categories {
    padding: var(--s-pad) 0;
    background: var(--c-bg);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.category-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    text-decoration: none;
    display: block;
    transition: transform var(--t-mid), box-shadow var(--t-mid);
    group: '';
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.7);
    border-color: var(--c-border-2);
}
.category-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
    filter: brightness(0.5);
}
.category-card:hover .category-card__img {
    transform: scale(1.08);
    filter: brightness(0.45);
}
.category-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(0,0,0,0.7) 70%,
        rgba(0,0,0,0.95) 100%
    );
}
.category-card__icon {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px; height: 140px;
    background: rgba(0,0,0,0.32);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    backdrop-filter: blur(12px);
    transition: all var(--t-mid);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,168,76,0.1);
}
.category-card:hover .category-card__icon {
    background: rgba(201,168,76,0.09);
    border-color: rgba(201,168,76,0.4);
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.1), inset 0 1px 0 rgba(201,168,76,0.2);
}
.category-card__icon svg { width: 90px; height: 90px; }
/* ????-????? ? ???????? ???????? */
.category-card__stat {
    position: absolute;
    bottom: 96px;
    left: 0; right: 0;
    text-align: center;
    pointer-events: none;
}
.category-card__stat-num {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
    letter-spacing: -0.02em;
}
.category-card__stat-label {
    display: block;
    font-size: 10px;
    color: var(--c-text-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 5px;
}
/* ???? ???????/???????? ???? ??? ??????? */
.category-card__tags {
    position: absolute;
    bottom: 90px;
    left: 16px; right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    pointer-events: none;
}
.category-card__tag {
    font-size: 10px;
    color: rgba(201,168,76,0.7);
    border: 1px solid rgba(201,168,76,0.18);
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    padding: 3px 9px;
    backdrop-filter: blur(6px);
    white-space: nowrap;
    letter-spacing: 0.04em;
    transition: all var(--t-fast);
}
.category-card:hover .category-card__tag {
    border-color: rgba(201,168,76,0.38);
    color: rgba(201,168,76,0.9);
}

.category-card__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px 20px 18px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.96) 100%);
    border-top: 1px solid rgba(201,168,76,0.1);
}
.category-card__name {
    font-family: var(--f-display);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 3px;
    display: block;
}
.category-card__count {
    font-size: 11px;
    color: var(--c-text-3);
    line-height: 1.4;
}
.category-card__arrow {
    position: absolute;
    bottom: 20px; right: 20px;
    width: 34px; height: 34px;
    background: var(--c-gold-dim);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--t-mid);
}
.category-card__arrow svg { width: 16px; height: 16px; }
.category-card:hover .category-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   ?????? (?????)
   ===================================================== */
.section-products {
    padding: var(--s-pad) 0;
    background: var(--c-bg-2);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.product-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
    position: relative;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    border-color: var(--c-border-2);
}
.product-card__media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--c-bg-3);
}
.product-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-card__wishlist {
    position: absolute;
    top: 10px; right: 10px;
    width: 34px; height: 34px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-3);
    backdrop-filter: blur(4px);
    transition: all var(--t-fast);
    opacity: 0;
}
.product-card:hover .product-card__wishlist { opacity: 1; }
.product-card__wishlist:hover { color: var(--c-red); border-color: var(--c-red); }
.product-card__wishlist svg { width: 16px; height: 16px; }
.product-card__quick-view {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--t-mid);
    display: flex;
    justify-content: center;
}
.product-card:hover .product-card__quick-view { opacity: 1; transform: translateY(0); }
.product-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.product-card__cat {
    font-size: 11px;
    font-weight: 500;
    color: var(--c-text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.product-card__name a { color: inherit; }
.product-card__name a:hover { color: var(--c-gold); }
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
}
.product-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.product-card__price-current {
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
}
.product-card__price-old {
    font-size: 12px;
    color: var(--c-text-3);
    text-decoration: line-through;
}
.product-card__add {
    width: 38px; height: 38px;
    background: var(--c-gold);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
    transition: all var(--t-fast);
}
.product-card__add:hover {
    background: var(--c-gold-2);
    transform: scale(1.08);
}
.product-card__add svg { width: 18px; height: 18px; }
.product-card__stock-out .product-card__add {
    background: var(--c-bg-3);
    color: var(--c-text-3);
    cursor: not-allowed;
}

/* ?????? "??? ? ???????" */
.out-of-stock-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--c-text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================
   ????????????
   ===================================================== */
.section-advantages {
    padding: var(--s-pad) 0;
    background: var(--c-bg);
    position: relative;
    overflow: hidden;
}
.section-advantages::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw; height: 80vw;
    background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.advantage-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--t-mid);
    position: relative;
    overflow: hidden;
}
.advantage-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-gold-dim) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--t-mid);
}
.advantage-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.advantage-card:hover::before { opacity: 1; }
.advantage-card__icon {
    width: 60px; height: 60px;
    background: var(--c-gold-dim);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--c-gold);
    transition: all var(--t-mid);
    position: relative;
}
.advantage-card:hover .advantage-card__icon {
    background: var(--c-gold);
    color: #000;
    border-color: var(--c-gold);
    box-shadow: var(--shadow-gold);
}
.advantage-card__icon svg { width: 28px; height: 28px; }
.advantage-card__title {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px;
    position: relative;
}
.advantage-card__text {
    font-size: 13px;
    color: var(--c-text-3);
    line-height: 1.6;
    position: relative;
}

/* =====================================================
   ?????? / ?????
   ===================================================== */
.section-promo {
    padding: var(--s-pad) 0;
    background: var(--c-bg-2);
}
.promo-banner {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1A1108 0%, #0D0D0D 100%);
    border: 1px solid rgba(201,168,76,0.15);
}
.promo-banner__bg {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 50%;
    background: url('../images/promo-bg.jpg') center/cover no-repeat;
    opacity: 0.25;
}
.promo-banner__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1A1108 0%, transparent 100%);
}
.promo-banner__glow {
    position: absolute;
    top: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.promo-banner__content {
    position: relative;
    z-index: 2;
    padding: clamp(32px, 4vw, 56px);
    max-width: 560px;
}
.promo-banner__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--c-gold);
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.promo-banner__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--c-text);
    line-height: 1.1;
    margin-bottom: 12px;
}
.promo-banner__title span { color: var(--c-gold); }
.promo-banner__desc {
    font-size: 15px;
    color: var(--c-text-2);
    margin-bottom: 28px;
    line-height: 1.6;
}
.promo-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================================================
   ??????
   ===================================================== */
.section-brands {
    padding: clamp(32px, 4vw, 56px) 0;
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.brands-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--c-text-3);
    text-transform: uppercase;
    margin-bottom: 24px;
}
.brands-track {
    display: flex;
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
}
.brands-track::-webkit-scrollbar { display: none; }
.brand-logo {
    flex-shrink: 0;
    height: 36px;
    filter: grayscale(1) brightness(0.4);
    transition: filter var(--t-mid);
}
.brand-logo:hover { filter: grayscale(0) brightness(1); }

/* =====================================================
   ????????
   ===================================================== */
.section-contacts {
    padding: var(--s-pad) 0;
    background: var(--c-bg-2);
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.contacts-info {}
.contacts-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 18px 20px;
    transition: border-color var(--t-fast);
}
.contact-card:hover { border-color: var(--c-border-2); }
.contact-card__icon {
    width: 42px; height: 42px;
    background: var(--c-gold-dim);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    flex-shrink: 0;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--c-text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.contact-card__value {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    display: block;
}
a.contact-card__value:hover { color: var(--c-gold); }
.contact-card__sub {
    font-size: 12px;
    color: var(--c-text-3);
    margin-top: 3px;
}
.contacts-social {
    display: flex;
    gap: 12px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--r-full);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--t-fast);
    text-decoration: none;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn--tg {
    background: rgba(0,136,204,0.12);
    border: 1px solid rgba(0,136,204,0.3);
    color: #29B6F6;
}
.social-btn--tg:hover { background: rgba(0,136,204,0.2); }
.social-btn--wa {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    color: #25D366;
}
.social-btn--wa:hover { background: rgba(37,211,102,0.2); }
.contacts-map {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
}
.contacts-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    filter: invert(1) hue-rotate(180deg) saturate(0.7);
}
.branches-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-top: 24px;
}
.branches-list { display: flex; flex-wrap: wrap; gap: 8px; }
.branch-tag {
    padding: 6px 14px;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--c-text-2);
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
}
.branch-tag:hover { border-color: var(--c-gold); color: var(--c-gold); }

/* =====================================================
   ?????? / FOOTER
   ===================================================== */
.site-footer {
    background: var(--c-bg-2);
    border-top: 1px solid var(--c-border);
}
.footer-main {
    padding: clamp(40px, 5vw, 64px) 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand {}
.footer-brand__desc {
    font-size: 13px;
    color: var(--c-text-3);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
    max-width: 280px;
}
.footer-brand__social {
    display: flex;
    gap: 10px;
}
.footer-social-btn {
    width: 38px; height: 38px;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-3);
    transition: all var(--t-fast);
    text-decoration: none;
}
.footer-social-btn:hover {
    background: var(--c-gold-dim);
    border-color: rgba(201,168,76,0.3);
    color: var(--c-gold);
}
.footer-social-btn svg { width: 18px; height: 18px; }
.footer-col__title {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--c-border);
}
.footer-col__links { display: flex; flex-direction: column; gap: 10px; }
.footer-col__link {
    font-size: 13px;
    color: var(--c-text-3);
    transition: color var(--t-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col__link:hover { color: var(--c-gold); }
.footer-col__link svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--c-border);
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 12px;
    color: var(--c-text-3);
}
.footer-copy a { color: var(--c-gold); }
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-size: 12px;
    color: var(--c-text-3);
    transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--c-gold); }
.footer-age {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--c-text-3);
}
.footer-age .age-badge { border-color: var(--c-text-3); }

/* =====================================================
   ??????? ????????
   ===================================================== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity var(--t-mid);
}
.age-gate.is-visible { opacity: 1; }
.age-gate.is-hidden { opacity: 0; pointer-events: none; }
.age-gate__modal {
    background: var(--c-bg-2);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--r-xl);
    padding: clamp(32px, 5vw, 56px);
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.8), 0 0 80px rgba(201,168,76,0.06);
    transform: scale(0.95);
    transition: transform var(--t-mid);
}
.age-gate.is-visible .age-gate__modal { transform: scale(1); }
.age-gate__icon {
    width: 80px; height: 80px;
    background: var(--c-gold-dim);
    border: 2px solid rgba(201,168,76,0.3);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--f-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--c-gold);
}
.age-gate__title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--c-text);
}
.age-gate__text {
    font-size: 14px;
    color: var(--c-text-2);
    line-height: 1.6;
    margin-bottom: 28px;
}
.age-gate__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.age-gate__confirm { min-width: 160px; }
.age-gate__deny { min-width: 160px; }
.age-gate__note {
    font-size: 11px;
    color: var(--c-text-3);
    margin-top: 20px;
    line-height: 1.5;
}

/* =====================================================
   BREADCRUMBS
   ===================================================== */
.breadcrumbs {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--c-text-3);
}
.breadcrumbs__item:last-child { color: var(--c-text-2); }
.breadcrumbs__item a {
    color: var(--c-text-3);
    transition: color var(--t-fast);
}
.breadcrumbs__item a:hover { color: var(--c-gold); }
.breadcrumbs__sep { color: var(--c-text-3); font-size: 11px; }

/* =====================================================
   ???????? ???????? (WooCommerce)
   ===================================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
    padding: var(--s-pad) 0;
}
.shop-sidebar {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 0;
    position: sticky;
    top: calc(var(--header-offset, 130px) + 16px);
    overflow: hidden;
}

/* Шапка блока фильтров */
.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--c-border);
}
.filter-header__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-text-2);
}
.filter-reset {
    font-size: 11px;
    color: var(--c-gold);
    text-decoration: none;
    transition: color var(--t-fast);
}
.filter-reset:hover { color: var(--c-gold-2); }

/* Секция фильтра (раскрывающийся блок) */
.filter-section {
    border-bottom: 1px solid var(--c-border);
}
.filter-section:last-child { border-bottom: none; }
.filter-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--c-text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    gap: 8px;
    text-align: left;
    transition: color var(--t-fast);
}
.filter-section__head:hover { color: var(--c-gold); }
.filter-section__head svg {
    width: 15px; height: 15px;
    flex-shrink: 0;
    transition: transform var(--t-fast);
    color: var(--c-text-3);
}
.filter-section.is-open .filter-section__head svg { transform: rotate(180deg); }
.filter-section__body {
    display: none;
    padding: 0 16px 14px;
}
.filter-section.is-open .filter-section__body { display: block; }

/* Дерево категорий */
.filter-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.filter-cat-list--child {
    padding-left: 14px;
    margin-top: 4px;
    border-left: 1px solid var(--c-border);
}
.filter-cat { margin: 0; }
.filter-cat__row {
    display: flex;
    align-items: center;
    gap: 4px;
}
.filter-cat__link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 4px;
    font-size: 13px;
    color: var(--c-text-2);
    text-decoration: none;
    border-radius: var(--r-xs);
    transition: color var(--t-fast), background var(--t-fast);
    gap: 6px;
}
.filter-cat__link:hover { color: var(--c-gold); background: var(--c-gold-dim); }
.filter-cat.is-current > .filter-cat__row > .filter-cat__link {
    color: var(--c-gold);
    font-weight: 600;
}
.filter-cat__count {
    font-size: 11px;
    color: var(--c-text-3);
    background: var(--c-bg-3);
    padding: 1px 6px;
    border-radius: var(--r-full);
    flex-shrink: 0;
}
.filter-cat__toggle {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--c-text-3);
    display: flex;
    align-items: center;
    border-radius: var(--r-xs);
    transition: color var(--t-fast), background var(--t-fast);
    flex-shrink: 0;
}
.filter-cat__toggle:hover { color: var(--c-gold); background: var(--c-gold-dim); }
.filter-cat__toggle svg {
    width: 14px; height: 14px;
    transition: transform var(--t-fast);
}
.filter-cat.is-open > .filter-cat__row > .filter-cat__toggle svg { transform: rotate(180deg); }
.filter-cat__children {
    display: none;
    margin-bottom: 4px;
}
.filter-cat__children.is-open { display: block; }

/* Фильтр наличие */
.filter-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-2);
    text-decoration: none;
    padding: 4px 0;
    cursor: pointer;
    transition: color var(--t-fast);
}
.filter-stock:hover { color: var(--c-text); }
.filter-stock.is-active { color: var(--c-gold); font-weight: 600; }
.filter-stock__check {
    width: 16px; height: 16px;
    border: 1.5px solid var(--c-border-2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--c-bg-3);
    transition: all var(--t-fast);
}
.filter-stock.is-active .filter-stock__check {
    background: var(--c-gold);
    border-color: var(--c-gold);
}
.filter-stock__check svg { width: 10px; height: 10px; color: #000; }

/* WooCommerce price widget */
.filter-price-widget .price_slider_wrapper { padding: 8px 0; }
.filter-price-widget .price_slider { margin-bottom: 12px; }
.filter-price-widget .price_slider_amount {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--c-text-2);
}
.filter-price-widget .price_slider_amount .button {
    background: var(--c-gold);
    color: #000;
    border: none;
    border-radius: var(--r-sm);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-left: auto;
}
.filter-price-widget .price_slider_amount .button:hover { background: var(--c-gold-2); }

.shop-main {}
.shop-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
}
.shop-count { font-size: 14px; color: var(--c-text-2); }
.shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}
.shop-sort select {
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    color: var(--c-text);
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: border-color var(--t-fast);
}
.shop-sort select:focus { border-color: var(--c-gold); }

/* ????????? */
.shop-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}
.page-btn {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--c-text-2);
    transition: all var(--t-fast);
    text-decoration: none;
}
.page-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }
.page-btn.is-current {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: #000;
    font-weight: 700;
}

/* =====================================================
   ???????? ?????? (WooCommerce)
   ===================================================== */
.single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
    padding: var(--s-pad) 0;
}
.product-gallery {}
.product-gallery__main {
    aspect-ratio: 1;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 12px;
}
.product-gallery__main img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 16px;
}
.product-gallery__thumbs {
    display: flex;
    gap: 10px;
}
.product-gallery__thumb {
    width: 72px; height: 72px;
    background: var(--c-card);
    border: 2px solid var(--c-border);
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--t-fast);
}
.product-gallery__thumb.is-active { border-color: var(--c-gold); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}
.product-info__cat {
    font-size: 12px;
    color: var(--c-text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}
.product-info__title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.product-info__price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}
.product-info__price {
    font-family: var(--f-display);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--c-gold);
}
.product-info__price-old {
    font-size: 18px;
    color: var(--c-text-3);
    text-decoration: line-through;
}
.product-info__sale-badge {
    background: var(--c-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--r-full);
}
.product-info__stock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.product-info__stock--in { color: #4CAF50; }
.product-info__stock--in::before {
    content: '';
    display: block;
    width: 8px; height: 8px;
    border-radius: var(--r-full);
    background: #4CAF50;
}
.product-info__stock--out { color: var(--c-red); }

/* Наличие по магазинам */
.store-stock {
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 14px 16px;
    margin-bottom: 24px;
}
.store-stock__title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--c-text-2);
    margin-bottom: 12px;
}
.store-stock__title svg { width: 14px; height: 14px; color: var(--c-gold); flex-shrink: 0; }
.store-stock__list { display: flex; flex-direction: column; gap: 8px; }
.store-stock__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--r-sm);
    background: var(--c-card);
    border: 1px solid var(--c-border);
    transition: border-color var(--t-fast);
}
.store-stock__item.is-in  { border-color: rgba(76,175,80,0.25); }
.store-stock__item.is-out { opacity: 0.55; }
.store-stock__dot {
    width: 8px; height: 8px;
    border-radius: var(--r-full);
    flex-shrink: 0;
}
.store-stock__item.is-in  .store-stock__dot { background: #4CAF50; }
.store-stock__item.is-out .store-stock__dot { background: var(--c-text-3); }
.store-stock__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.store-stock__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.store-stock__addr {
    font-size: 11px;
    color: var(--c-text-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.store-stock__status {
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}
.store-stock__item.is-in  .store-stock__status { color: #4CAF50; }
.store-stock__item.is-out .store-stock__status { color: var(--c-text-3); }

.product-info__desc {
    font-size: 14px;
    color: var(--c-text-2);
    line-height: 1.7;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 24px;
}
.product-info__qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.qty-control {
    display: flex;
    align-items: center;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    overflow: hidden;
}
.qty-btn {
    width: 40px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-2);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--t-fast);
    user-select: none;
}
.qty-btn:hover { color: var(--c-gold); background: var(--c-gold-dim); }
.qty-input {
    width: 52px; height: 44px;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    outline: none;
    border-left: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
}
.product-info__add-btn { width: 100%; margin-bottom: 12px; }
.product-info__buy-btn { width: 100%; margin-bottom: 20px; }

/* ??????? ????????????? */
.product-attrs {
    margin-top: 24px;
}
.product-attrs__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-attrs__table {
    width: 100%;
    border-collapse: collapse;
}
.product-attrs__table tr:not(:last-child) {
    border-bottom: 1px solid var(--c-border);
}
.product-attrs__table td {
    padding: 9px 0;
    font-size: 13px;
}
.product-attrs__table td:first-child {
    color: var(--c-text-3);
    width: 40%;
}
.product-attrs__table td:last-child {
    color: var(--c-text);
    font-weight: 500;
}

/* =====================================================
   ???????? (page.php)
   ===================================================== */
.page-content {
    padding: var(--s-pad) 0;
}
.page-content .entry-title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-border);
}
.entry-content h2, .entry-content h3 { margin: 28px 0 12px; }
.entry-content p { margin-bottom: 16px; }
.entry-content a { color: var(--c-gold); }
.entry-content a:hover { color: var(--c-gold-2); text-decoration: underline; }
.entry-content ul, .entry-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { color: var(--c-text-2); margin-bottom: 6px; }
.entry-content img { border-radius: var(--r-md); margin: 20px 0; }

/* =====================================================
   ??????? / ?????? ? ??????? ?????
   ===================================================== */
.cart-page, .checkout-page { padding: var(--s-pad) 0; }
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.cart-table th {
    background: var(--c-bg-3);
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--c-text-3);
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
}
.cart-table td:last-child { border-bottom: none; }

/* =====================================================
   ???????????
   ===================================================== */
.woocommerce-notices-wrapper,
.site-notices {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 8000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.notice-toast {
    background: var(--c-bg-2);
    border: 1px solid var(--c-border);
    border-left: 3px solid var(--c-gold);
    border-radius: var(--r-md);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--c-text);
    max-width: 360px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    animation: slideInRight 0.3s ease forwards;
    pointer-events: all;
}
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* =====================================================
   ???????? 404
   ===================================================== */
.page-404 {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--s-pad) 0;
}
.page-404__num {
    font-family: var(--f-display);
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 900;
    color: var(--c-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -20px;
}
.page-404__title { font-size: clamp(22px, 3vw, 32px); margin-bottom: 12px; }
.page-404__text { color: var(--c-text-2); margin-bottom: 28px; }

/* =====================================================
   ???????? ?????????
   ===================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   ?????????
   ===================================================== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
    background: var(--c-border-2);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--c-text-3); }

/* =====================================================
   ???????
   ===================================================== */

/* ??????? ??????? (1024px) */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid   { grid-template-columns: repeat(3, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid     { grid-template-columns: 1fr 1fr; gap: 28px; }
    .shop-layout     { grid-template-columns: 220px 1fr; }
    .hero .container { grid-template-columns: 1fr; }
    .hero__visual    { display: none; }
    .hero            { min-height: auto; padding: 140px 0 64px; }
    .hero__desc      { max-width: 100%; }
    .single-product-layout { grid-template-columns: 1fr; }
    .contacts-grid   { grid-template-columns: 1fr; }
    .contacts-map iframe { height: 300px; }
}

/* ??????? ????? (768px) */
@media (max-width: 768px) {
    .header-top { display: none; }
    .header-search { display: none; }
    .header-phone .header-phone__number { display: none; }
    .header-phone { padding: 10px; }
    .header-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .hero__title { letter-spacing: -0.5px; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .promo-banner__bg { display: none; }
}

/* ????????? (480px) */
@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .advantages-grid { grid-template-columns: 1fr; }
    .section-header  { flex-direction: column; align-items: flex-start; }
    .age-gate__actions { flex-direction: column; }
    .age-gate__confirm,
    .age-gate__deny { min-width: unset; width: 100%; }
    .contacts-social { flex-direction: column; }
}

/* =====================================================
   ?????????? ??????????? (AGE GATE)
   ===================================================== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.age-gate.is-visible { opacity: 1; }
.age-gate.is-hidden  { opacity: 0; pointer-events: none; }

.age-gate__modal {
    background: var(--c-bg-2);
    border: 1px solid var(--c-border-2);
    border-radius: var(--r-xl);
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.1);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.age-gate.is-visible .age-gate__modal { transform: scale(1); }

.age-gate__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px; height: 72px;
    border: 2px solid var(--c-gold);
    border-radius: var(--r-full);
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--c-gold);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-gold);
}

.age-gate__title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 14px;
}

.age-gate__text {
    font-size: 14px;
    color: var(--c-text-2);
    line-height: 1.7;
    margin-bottom: 28px;
}

.age-gate__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.age-gate__confirm,
.age-gate__deny { min-width: 180px; }

.age-gate__note {
    font-size: 11px;
    color: var(--c-text-3);
    line-height: 1.6;
}

/* =====================================================
   ????-??????? (SIDEBAR)
   ===================================================== */
.mini-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 1099;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-mid);
}
.mini-cart-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    width: 400px;
    max-width: 100vw;
    background: var(--c-bg-2);
    border-left: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.mini-cart.is-open { transform: translateX(0); }

body.mini-cart-open { overflow: hidden; }

/* ????? */
.mini-cart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--c-border);
    flex-shrink: 0;
}
.mini-cart__head-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--c-text);
}
.mini-cart__head-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px; height: 22px;
    padding: 0 6px;
    background: var(--c-gold);
    color: #000;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
}
.mini-cart__close {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    color: var(--c-text-3);
    transition: color var(--t-fast), background var(--t-fast);
}
.mini-cart__close svg { width: 20px; height: 20px; }
.mini-cart__close:hover { color: var(--c-text); background: var(--c-bg-3); }

/* ?????? ??????? */
.mini-cart__items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
    min-height: 100px;
}
.mini-cart__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    color: var(--c-text-3);
    font-size: 14px;
    text-align: center;
}

.mini-cart__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--c-border);
    transition: opacity var(--t-fast);
}
.mini-cart__item:last-child { border-bottom: none; }

.mini-cart__item-pic {
    flex-shrink: 0;
    width: 72px; height: 72px;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    display: block;
}
.mini-cart__item-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.mini-cart__item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mini-cart__item-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--t-fast);
}
.mini-cart__item-name:hover { color: var(--c-gold); }

.mini-cart__item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.mini-cart__item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    overflow: hidden;
}
.mini-cart__qty-btn {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--c-text-2);
    transition: color var(--t-fast), background var(--t-fast);
    line-height: 1;
}
.mini-cart__qty-btn:hover { color: var(--c-gold); background: var(--c-gold-dim); }
.mini-cart__qty-val {
    min-width: 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
}
.mini-cart__item-total {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-gold);
    white-space: nowrap;
}

.mini-cart__item-remove {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-3);
    border-radius: var(--r-full);
    transition: color var(--t-fast), background var(--t-fast);
    align-self: center;
}
.mini-cart__item-remove svg { width: 16px; height: 16px; }
.mini-cart__item-remove:hover { color: var(--c-red); background: rgba(217,79,79,0.1); }

/* ????? ??????? */
.mini-cart__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--c-border);
    background: var(--c-bg-3);
    flex-shrink: 0;
}
.mini-cart__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.mini-cart__total-label {
    font-size: 14px;
    color: var(--c-text-2);
    font-weight: 500;
}
.mini-cart__total-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-gold);
    font-family: var(--f-display);
}
.mini-cart__view-cart {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--c-text-3);
    margin-top: 12px;
    transition: color var(--t-fast);
}
.mini-cart__view-cart:hover { color: var(--c-gold); }

/* =====================================================
   TOAST ???????????
   ===================================================== */
.site-notices {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.notice-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-card);
    border: 1px solid var(--c-border-2);
    border-left: 3px solid var(--c-gold);
    border-radius: var(--r-md);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--c-text);
    box-shadow: var(--shadow-card);
    min-width: 240px;
    max-width: 320px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), opacity 0.3s ease;
    pointer-events: auto;
}
.notice-toast.is-visible { transform: translateX(0); opacity: 1; }
.notice-toast--error { border-left-color: var(--c-red); }
.notice-toast--error svg { color: var(--c-red); }
.notice-toast svg { color: #4CAF50; flex-shrink: 0; }

/* =====================================================
   ?????? ? ?????????
   ===================================================== */
.huka-checkout-wrap {
    min-height: 60vh;
}

.huka-checkout__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

.huka-checkout__col {
    /* ??? ??????? */
}
.huka-checkout__col--summary {
    position: sticky;
    top: 100px;
}

.huka-checkout__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
}
.huka-checkout__title svg { width: 20px; height: 20px; color: var(--c-gold); flex-shrink: 0; }
.huka-checkout__title-count {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-3);
    background: var(--c-bg-3);
    padding: 3px 10px;
    border-radius: var(--r-full);
}

/* ?????? ?????? */
.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.checkout-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.checkout-item__pic {
    position: relative;
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
}
.checkout-item__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.checkout-item__qty {
    position: absolute;
    top: -6px; right: -6px;
    width: 20px; height: 20px;
    background: var(--c-gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--c-bg-2);
}
.checkout-item__info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.checkout-item__name {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text);
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.checkout-item__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-gold);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ????? */
.checkout-totals {
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 20px;
}
.checkout-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--c-text-2);
    border-bottom: 1px solid var(--c-border);
}
.checkout-totals__row:last-child { border-bottom: none; }
.checkout-totals__row--total {
    background: var(--c-bg-3);
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
}
.checkout-totals__total { color: var(--c-gold); font-weight: 800; font-size: 18px; }

/* ????-???? */
.checkout-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--c-gold-dim);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--r-md);
    padding: 14px 16px;
    margin-bottom: 20px;
}
.checkout-notice svg { flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; color: var(--c-gold); }
.checkout-notice p { font-size: 13px; color: var(--c-text-2); line-height: 1.6; margin: 0; }
.checkout-notice strong { color: var(--c-text); }

/* ???????? */
.checkout-guarantees {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.checkout-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--c-text-3);
}
.checkout-guarantee svg { width: 16px; height: 16px; color: var(--c-gold); flex-shrink: 0; }

/* ???? */
.huka-field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-2);
    margin-bottom: 8px;
}
.huka-field-label .required { color: var(--c-red); margin-left: 2px; }

.huka-field-input,
.huka-field-select,
.huka-field-textarea {
    width: 100%;
    background: var(--c-bg-3);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    font-size: 14px;
    color: var(--c-text);
    font-family: var(--f-main);
    outline: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    appearance: none;
}
.huka-field-input:focus,
.huka-field-select:focus,
.huka-field-textarea:focus {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px var(--c-gold-dim);
}
.huka-field-input::placeholder,
.huka-field-textarea::placeholder { color: var(--c-text-3); }
.huka-field-textarea { resize: vertical; min-height: 88px; }
.huka-field-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C5C5C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

/* ?????? ????????? */
.huka-delivery-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.huka-delivery-opt {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--c-bg-3);
    border: 2px solid var(--c-border);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all var(--t-fast);
    user-select: none;
}
.huka-delivery-opt:hover { border-color: var(--c-border-2); }
.huka-delivery-opt.is-active {
    border-color: var(--c-gold);
    background: var(--c-gold-dim);
}
.huka-delivery-opt__radio { position: absolute; opacity: 0; pointer-events: none; }
.huka-delivery-opt__icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: var(--c-bg-2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-3);
    transition: color var(--t-fast), background var(--t-fast);
}
.huka-delivery-opt__icon svg { width: 18px; height: 18px; }
.huka-delivery-opt.is-active .huka-delivery-opt__icon {
    background: rgba(201,168,76,0.15);
    color: var(--c-gold);
}
.huka-delivery-opt__text {
    flex: 1;
    min-width: 0;
}
.huka-delivery-opt__text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 2px;
}
.huka-delivery-opt__text span { font-size: 11px; color: var(--c-text-3); }
.huka-delivery-opt__check {
    width: 22px; height: 22px;
    flex-shrink: 0;
    border: 2px solid var(--c-border-2);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all var(--t-fast);
}
.huka-delivery-opt__check svg { width: 12px; height: 12px; }
.huka-delivery-opt.is-active .huka-delivery-opt__check {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: #000;
}

.huka-pickup-section,
.huka-delivery-section,
.huka-comment-section {
    margin-bottom: 20px;
}

/* ?????? ???????? */
.huka-checkout__submit {
    width: 100%;
    justify-content: center;
    font-size: 17px;
    padding: 18px 32px;
    margin-top: 8px;
    box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.huka-checkout__submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.45); }

.huka-checkout__legal {
    font-size: 12px;
    color: var(--c-text-3);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}
.huka-checkout__legal a { color: var(--c-gold); }

/* =====================================================
   ???????? ????????????? ?????? (THANK YOU)
   ===================================================== */
.huka-thankyou {
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.huka-thankyou__card {
    background: var(--c-bg-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: clamp(32px, 5vw, 60px) clamp(24px, 4vw, 56px);
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-card);
    margin: 0 auto;
}

/* SVG ???????? ??????? */
.huka-thankyou__icon {
    margin: 0 auto 28px;
    width: 80px; height: 80px;
}
.thankyou-checkmark { width: 80px; height: 80px; }
.thankyou-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke-anim 0.6s cubic-bezier(0.65,0,0.45,1) 0.2s forwards;
}
.thankyou-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-anim 0.4s cubic-bezier(0.65,0,0.45,1) 0.8s forwards;
}
@keyframes stroke-anim {
    to { stroke-dashoffset: 0; }
}

.huka-thankyou__badge {
    display: inline-block;
    background: rgba(76,175,80,0.15);
    color: #4CAF50;
    border: 1px solid rgba(76,175,80,0.3);
    border-radius: var(--r-full);
    padding: 5px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.huka-thankyou__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 14px;
}

.huka-thankyou__subtitle {
    font-size: 15px;
    color: var(--c-text-2);
    line-height: 1.7;
    margin-bottom: 32px;
}
.huka-thankyou__subtitle strong { color: var(--c-gold); }

/* ????? ?????? */
.huka-thankyou__order-num {
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 20px 28px;
    margin-bottom: 28px;
    display: inline-block;
    min-width: 280px;
}
.huka-thankyou__order-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-text-3);
    margin-bottom: 6px;
}
.huka-thankyou__order-val {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--c-gold);
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.huka-thankyou__order-hint {
    font-size: 12px;
    color: var(--c-text-3);
    margin: 0;
}

/* ?????? */
.huka-thankyou__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 28px;
}
.huka-thankyou__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 14px 16px;
}
.huka-thankyou__detail-icon {
    width: 36px; height: 36px;
    background: var(--c-gold-dim);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    flex-shrink: 0;
}
.huka-thankyou__detail-icon svg { width: 18px; height: 18px; }
.huka-thankyou__detail-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--c-text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.huka-thankyou__detail-val {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
}

/* ?????? */
.huka-thankyou__items {
    text-align: left;
    margin-bottom: 24px;
}
.huka-thankyou__items-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--c-border);
}
.huka-thankyou__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
}
.huka-thankyou__item:last-child { border-bottom: none; }
.huka-thankyou__item-name { flex: 1; color: var(--c-text); }
.huka-thankyou__item-qty { color: var(--c-text-3); white-space: nowrap; }
.huka-thankyou__item-price { font-weight: 700; color: var(--c-gold); white-space: nowrap; }

.huka-thankyou__comment {
    background: var(--c-bg-3);
    border-radius: var(--r-md);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--c-text-2);
    text-align: left;
    margin-bottom: 24px;
}

/* ?????? ? ??????? */
.huka-thankyou__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.huka-thankyou__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
}
.huka-thankyou__social p { font-size: 13px; color: var(--c-text-3); margin: 0; }

/* =====================================================
   ??????? ?????? ? ????-???????
   ===================================================== */
@media (max-width: 900px) {
    .huka-checkout__layout { grid-template-columns: 1fr; }
    .huka-checkout__col--summary { position: static; }
    .huka-delivery-toggle { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .mini-cart { width: 100%; }
    .huka-checkout__layout { grid-template-columns: 1fr; gap: 24px; }
    .huka-delivery-toggle { grid-template-columns: 1fr; }
    .huka-thankyou__actions { flex-direction: column; align-items: center; }
    .huka-thankyou__order-num { min-width: unset; width: 100%; }
    .site-notices { bottom: 16px; right: 16px; left: 16px; }
    .notice-toast { max-width: 100%; }
}

/* =====================================================
   ??????? ? ???????????
   ===================================================== */
.site-logo--img {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo--img img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* =====================================================
   ANIMATED HOOKAH SCENE ? HERO VISUAL
   ===================================================== */
.hookah-scene {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hookah-svg {
    width: 100%;
    max-width: 340px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(201,168,76,0.12));
    animation: hookahFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes hookahFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}


/* Hero cards ? fix overflow inside hookah-scene */
.hookah-scene .hero__card--float {
    position: absolute;
    z-index: 10;
}
.hookah-scene .hero__card--float-1 {
    bottom: 10% !important;
    right: -12px !important;
    left: auto !important;
    top: auto !important;
    width: 180px;
}
.hookah-scene .hero__card--float-2 {
    top: 15% !important;
    left: -12px !important;
    right: auto !important;
    bottom: auto !important;
    width: 170px;
}

/* =====================================================
   SMOKE RIBBON ? horizontal scrolling brands bar
   ===================================================== */
@keyframes brandsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brands-track--auto {
    animation: brandsScroll 30s linear infinite;
    display: flex;
    gap: 48px;
    width: max-content;
}
.brands-track--auto:hover { animation-play-state: paused; }

/* =====================================================
   COUNTER ANIMATION
   ===================================================== */
.stat-counter { display: inline-block; }

/* =====================================================
   STATIC PRODUCT CARDS (no WooCommerce fallback)
   ===================================================== */
.static-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.static-product-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
    position: relative;
}
.static-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.65);
    border-color: var(--c-border-2);
}
.static-product-card__media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--c-bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.static-product-card__media svg {
    width: 60%;
    height: 60%;
    opacity: 0.35;
    transition: opacity var(--t-mid), transform var(--t-slow);
}
.static-product-card:hover .static-product-card__media svg {
    opacity: 0.55;
    transform: scale(1.08);
}
.static-product-card__badge {
    position: absolute;
    top: 12px; left: 12px;
}
.static-product-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}
.static-product-card__cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--c-text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.static-product-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.35;
    flex: 1;
}
.static-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
}
.static-product-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.static-product-card__price-current {
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-gold);
}
.static-product-card__price-old {
    font-size: 12px;
    color: var(--c-text-3);
    text-decoration: line-through;
}
.static-product-card__btn {
    width: 38px; height: 38px;
    background: var(--c-gold);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
    transition: all var(--t-fast);
    text-decoration: none;
    cursor: pointer;
}
.static-product-card__btn:hover {
    background: var(--c-gold-2);
    transform: scale(1.08);
}
.static-product-card__btn svg { width: 18px; height: 18px; }

/* =====================================================
   SECTION BRANDS ? animated marquee
   ===================================================== */
.brands-marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.brands-marquee {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}
.brands-marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-item {
    flex-shrink: 0;
    padding: 10px 24px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-3);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--t-fast);
    white-space: nowrap;
}
.brand-item:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

/* =====================================================
   PROMO BANNER ? ???????????? ?????? ??????
   ===================================================== */
.promo-banner__hookah {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(140px, 20vw, 240px);
    opacity: 0.18;
    pointer-events: none;
    animation: hookahFloat 5s ease-in-out infinite;
}
@media (max-width: 900px) {
    .promo-banner__hookah { display: none; }
}

/* =====================================================
   ?????? ???????? ????????? (????? ????)
   ===================================================== */
.section-atmosphere {
    padding: var(--s-pad) 0;
    background: var(--c-bg);
    position: relative;
    overflow: hidden;
}
.section-atmosphere::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 400px;
    background: radial-gradient(ellipse at bottom, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.atmosphere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.atmosphere-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}
.atmosphere-hookah {
    width: clamp(200px, 30vw, 320px);
    height: auto;
    filter: drop-shadow(0 0 60px rgba(201,168,76,0.2));
    animation: hookahFloat 6s ease-in-out infinite;
}
.atmosphere-content {}
.atmosphere-content .section-label { margin-bottom: 12px; }
.atmosphere-title {
    font-family: var(--f-display);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    color: var(--c-text);
    line-height: 1.15;
    margin-bottom: 20px;
}
.atmosphere-title span { color: var(--c-gold); }
.atmosphere-text {
    font-size: 15px;
    color: var(--c-text-2);
    line-height: 1.8;
    margin-bottom: 28px;
}
.atmosphere-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.atmosphere-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}
.atmosphere-feature__icon {
    width: 40px; height: 40px;
    background: var(--c-gold-dim);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    flex-shrink: 0;
}
.atmosphere-feature__icon svg { width: 20px; height: 20px; }
.atmosphere-feature__text {
    font-size: 14px;
    color: var(--c-text-2);
    line-height: 1.5;
}
.atmosphere-feature__text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 2px;
}

@media (max-width: 900px) {
    .atmosphere-grid { grid-template-columns: 1fr; }
    .atmosphere-visual { display: none; }
    .static-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .static-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* =====================================================
   SECTION BRANDS STRIP (inline between sections)
   ===================================================== */
.section-brands-strip {
    padding: 32px 0;
    background: var(--c-bg-2);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
}


/* =====================================================
   ???????????? ???????? ? hero float & product cards
   ===================================================== */

/* Hero float ???????? ? ???????????? ?????? */
.hero__card--link {
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero__card--link:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 32px rgba(201,168,76,0.22);
}
.hero__card-arrow {
    font-size: 14px;
    color: var(--c-gold);
    margin-top: 6px;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
    display: block;
}
.hero__card--link:hover .hero__card-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ???????????? ???????? ?????? */
a.static-product-card,
.static-product-card--link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
a.static-product-card:hover,
.static-product-card--link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(201,168,76,0.18);
}
a.static-product-card:hover .static-product-card__btn,
.static-product-card--link:hover .static-product-card__btn {
    background: var(--c-gold);
    color: #0d0d0d;
}

/* ??????? ?? ?????? ???????? */
.static-product-card__btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}
a.static-product-card:hover .static-product-card__btn svg,
.static-product-card--link:hover .static-product-card__btn svg {
    transform: translateX(3px);
}

/* ???????? SVG ??????????? */
.category-card__icon svg {
    width: 84px;
    height: 84px;
    transition: transform 0.35s ease;
}
.category-card:hover .category-card__icon svg {
    transform: scale(1.06) translateY(-2px);
}

/* ?? ????????? ? ?????????? */
@media (max-width: 640px) {
    .category-card__icon {
        top: 14px;
        width: 100px; height: 100px;
        border-radius: 16px;
        transform: translateX(-50%);
    }
    .category-card__icon svg { width: 64px; height: 64px; }
    .category-card__stat { bottom: 80px; }
    .category-card__stat-num { font-size: 26px; }
    .category-card__tags { bottom: 76px; left: 10px; right: 10px; gap: 4px; }
    .category-card__tag { font-size: 9px; padding: 2px 7px; }
    .category-card__body { padding: 12px 14px 14px; }
}
