/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #000000;
    --bg-light: #111111;
    --bg-card: #0d0d0d;
    --surface: #1a1a1a;
    --border: #222222;
    --text: #ffffff;
    --text-muted: #999999;
    --text-dim: #666666;
    --lime: #bfe226;
    --lime-dark: #98c926;
    --lime-glow: rgba(191, 226, 38, 0.15);
    --orange: #ea4e27;
    --orange-hover: #ff6a42;
    --red: #901f1f;
    --font: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 0 11px rgba(0,0,0,0.6);
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

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

.header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.header__logo img {
    height: 44px;
    width: auto;
}

.header__nav { display: flex; gap: 28px; align-items: center; }

.header__nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    transition: var(--transition);
    position: relative;
}

.header__nav > a.active,
.nav-dropdown__toggle.active { color: var(--orange); }

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--lime);
    transition: var(--transition);
}

.header__nav a:hover { color: var(--text); }
.header__nav a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-arrow {
    font-size: 0.65rem;
    opacity: 0.6;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-dropdown__menu a::after { display: none; }

.nav-dropdown__menu a:hover {
    color: var(--lime);
    background: rgba(255,255,255,0.04);
}

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--orange);
    color: #fff !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.header__cta:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(234, 78, 39, 0.4);
}

.header__cta::after { display: none !important; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    z-index: 1100;
    -webkit-tap-highlight-color: transparent;
}

.burger span {
    width: 24px; height: 2px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.2s ease;
    border-radius: 2px;
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-open { overflow: hidden; }

/* ===== HERO (fullscreen cover like original) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero__bg img,
.hero__bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.70), rgba(0,0,0,0.70));
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 24px;
}

.hero__tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--lime);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero__title span {
    color: var(--lime);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.4);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--orange);
    color: #fff;
}

.btn--primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(234, 78, 39, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--lime);
    border: 2px solid var(--lime);
}

.btn--outline:hover {
    background: var(--lime);
    color: #000;
    transform: translateY(-2px);
}

.btn--lime {
    background: var(--lime);
    color: #000;
    font-weight: 700;
}

.btn--lime:hover {
    background: var(--lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--lime-glow);
}

/* ===== SECTION COMMON ===== */
.section__tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--lime);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin-left: auto; margin-right: auto; }

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    border-radius: var(--radius) var(--radius) 0 0;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    border-color: var(--lime-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.feature-card__icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lime-glow);
    border: 1px solid rgba(191, 226, 38, 0.2);
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.feature-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.infographic-grid {
    margin-top: 12px;
    background: linear-gradient(155deg, rgba(22, 28, 20, 0.97), rgba(10, 12, 10, 0.99));
    border-radius: var(--radius);
    padding: 28px 24px 32px;
    border: 1px solid rgba(191, 226, 38, 0.2);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.infographic-grid__banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.08), rgba(191, 226, 38, 0.1));
    border: 1px solid rgba(125, 211, 252, 0.22);
}

.infographic-grid__banner-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.infographic-grid__banner-text strong {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7dd3fc;
    line-height: 1.3;
}

.infographic-grid__banner-text span {
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.78);
}

.infographic-grid__snow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(125, 211, 252, 0.12);
    color: #7dd3fc;
    flex-shrink: 0;
}

.infographic-grid__snow svg {
    width: 20px;
    height: 20px;
}

.infographic-grid__lead {
    margin: 0 0 22px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.infographic-grid__section + .infographic-grid__section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(191, 226, 38, 0.14);
}

.infographic-grid__section-head {
    text-align: center;
    margin-bottom: 20px;
}

.infographic-grid__section-title {
    margin: 0 0 8px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
}

.infographic-grid__section-desc {
    margin: 0 auto;
    max-width: 32rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
}

.infographic-grid__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.infographic-grid__items--contains {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.infographic-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.infographic-card:hover {
    border-color: rgba(191, 226, 38, 0.28);
    background: rgba(191, 226, 38, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.infographic-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 30%, rgba(191, 226, 38, 0.16), rgba(0, 0, 0, 0.25));
    border: 1px solid rgba(191, 226, 38, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--lime);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.infographic-card:hover .infographic-card__icon {
    border-color: rgba(191, 226, 38, 0.45);
    box-shadow: 0 0 20px rgba(191, 226, 38, 0.12);
}

.infographic-card__icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.75;
}

.infographic-card__body {
    flex: 1;
    min-width: 0;
}

.infographic-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.infographic-card__title {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    letter-spacing: 0.01em;
}

.infographic-card__tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lime);
    background: rgba(191, 226, 38, 0.12);
    border: 1px solid rgba(191, 226, 38, 0.22);
}

.infographic-card__text {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    text-transform: none;
    letter-spacing: 0;
}

.infographic-card--contains {
    background: linear-gradient(135deg, rgba(191, 226, 38, 0.04), rgba(255, 255, 255, 0.02));
}

.infographic-grid--compact {
    padding: 14px 12px 16px;
}

.infographic-grid--compact .infographic-grid__banner {
    margin-bottom: 14px;
    padding: 12px 14px;
    align-items: center;
}

.infographic-grid--compact .infographic-grid__banner-text strong {
    font-size: 0.72rem;
}

.infographic-grid--compact .infographic-grid__items,
.infographic-grid--compact .infographic-grid__items--contains {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.infographic-grid--compact .infographic-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 10px;
    gap: 10px;
}

.infographic-grid--compact .infographic-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.infographic-grid--compact .infographic-card__icon svg {
    width: 20px;
    height: 20px;
}

.infographic-grid--compact .infographic-card__title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.infographic-grid--compact .infographic-grid__section-title {
    font-size: 0.68rem;
    margin-bottom: 12px;
}

.page-app .infographic-grid {
    margin: 0 0 20px;
}

@media (max-width: 768px) {
    .infographic-grid__items,
    .infographic-grid__items--contains {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .infographic-grid {
        padding: 20px 16px 24px;
    }

    .infographic-grid__banner {
        flex-direction: row;
    }
}

@media (max-width: 520px) {
    .infographic-grid--compact .infographic-grid__items,
    .infographic-grid--compact .infographic-grid__items--contains {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== PRODUCTS — карточки каталога в стиле сайта ===== */
.products { padding: 100px 0; }

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    align-items: stretch;
    justify-items: center;
    max-width: 1080px;
    margin-inline: auto;
}

.product-card {
    --card-ease: cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
    max-width: 300px;
    animation: product-card-in 0.85s var(--card-ease) backwards;
    transition: transform 0.45s var(--card-ease);
}

.product-card__shell {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(165deg, rgba(22, 22, 22, 0.98), rgba(8, 8, 8, 0.99));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.product-card__shell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: 2;
}

.product-card:hover .product-card__shell::before {
    transform: scaleX(1);
}

.products__grid .product-card:nth-child(1) { animation-delay: 0.05s; }
.products__grid .product-card:nth-child(2) { animation-delay: 0.12s; }
.products__grid .product-card:nth-child(3) { animation-delay: 0.19s; }
.products__grid .product-card:nth-child(4) { animation-delay: 0.26s; }
.products__grid .product-card:nth-child(5) { animation-delay: 0.33s; }
.products__grid .product-card:nth-child(n+6) { animation-delay: 0.4s; }

@keyframes product-card-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 20px 16px;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(191, 226, 38, 0.08), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.35));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card__image {
    display: block;
    width: 100%;
    max-width: 220px;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.55));
    transition: transform 0.45s var(--card-ease);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: rgba(234, 78, 39, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(234, 78, 39, 0.28);
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 18px 22px;
    text-align: center;
    color: var(--text);
}

.product-card__title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    letter-spacing: 0.02em;
}

.product-card__tagline {
    margin: 0 0 6px;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-muted);
}

.product-card__pack {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--lime);
    letter-spacing: 0.04em;
}

.product-card__desc {
    margin: 0 0 16px;
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text-muted);
    flex: 1;
}

.product-card__price {
    margin-bottom: 14px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lime);
    text-shadow: 0 0 18px rgba(191, 226, 38, 0.18);
}

.product-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--orange);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
    font-family: inherit;
    box-shadow: 0 8px 22px rgba(234, 78, 39, 0.28);
}

.product-card__btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(234, 78, 39, 0.38);
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card:hover .product-card__shell {
    border-color: rgba(191, 226, 38, 0.35);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(191, 226, 38, 0.08);
}

.product-card:hover .product-card__image {
    transform: scale(1.04) translateY(-2px);
}

@media (max-width: 768px) {
    .products__grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .product-card__media {
        min-height: 200px;
    }

    .product-card__title {
        font-size: 0.95rem;
    }

    .product-card__desc {
        font-size: 0.74rem;
    }
}

@media (min-width: 900px) {
    .products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-card {
        animation: none !important;
        transition: transform 0.2s ease;
    }
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.stat {
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lime);
}

.stat__label {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ===== COMPOSITION ===== */
.composition { padding: 100px 0; }

.composition__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.comp-card {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.comp-card:hover {
    border-color: var(--lime-dark);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.comp-card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.comp-card__title { font-weight: 700; margin-bottom: 8px; color: #fff; }
.comp-card__text { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--lime-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.faq-item__question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.faq-item__question:hover { color: var(--lime); }

.faq-item__icon {
    flex-shrink: 0;
    width: 26px; height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--lime);
    transition: var(--transition);
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
    background: var(--lime);
    color: #000;
    border-color: var(--lime);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-item__answer { max-height: 400px; }

.faq-item__answer-inner {
    padding: 0 22px 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== CTA ===== */
.cta { padding: 80px 0; }

.cta__inner {
    background: var(--bg);
    border: 2px solid var(--lime-dark);
    border-radius: 16px;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__inner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--lime-glow) 0%, transparent 70%);
    border-radius: 50%;
}

.cta__inner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(234, 78, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 14px;
    position: relative;
}

.cta__text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    padding: 60px 0 30px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand-text {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 16px;
    color: var(--text-dim);
}

.footer__title {
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 18px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
    font-size: 0.88rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer__links a:hover { color: var(--lime); }

.footer__socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; max-width: 280px; }

.footer__social-text {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer__socials a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-muted);
}

.footer__socials a:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: #000;
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 150px 0 70px;
    text-align: center;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

/* ===== RETAIL PAGE ===== */
.retail-shop {
    padding: 80px 0;
}

.retail-benefits {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.retail-benefits li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.retail-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px rgba(191, 226, 38, 0.45);
}

.retail-catalog {
    padding-top: 0;
}

.retail-catalog__more {
    text-align: center;
    margin-top: 40px;
}

.retail-channels {
    padding: 0 0 80px;
}

.contact-card--shop {
    border-color: rgba(191, 226, 38, 0.25);
    background: linear-gradient(180deg, rgba(191, 226, 38, 0.06), rgba(255, 255, 255, 0.02));
}

.contact-card--shop:hover {
    border-color: rgba(191, 226, 38, 0.45);
}

/* ===== KOMBUCHA PAGE ===== */
.info-section { padding: 80px 0; }
.info-section:nth-child(even) { background: var(--bg-light); }

.info-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-section__inner--reverse { direction: rtl; }
.info-section__inner--reverse > * { direction: ltr; }

.info-section__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.info-section__text {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.kombucha-video-section {
    background: var(--bg-light);
}

.kombucha-video {
    max-width: min(100%, 280px);
    margin: 28px auto 0;
}

.kombucha-video__player {
    display: block;
    width: 100%;
    max-height: min(70vh, 500px);
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(191, 226, 38, 0.08);
}

@media (max-width: 768px) {
    .kombucha-video {
        max-width: min(58vw, 200px);
        margin-top: 20px;
    }

    .kombucha-video__player {
        max-height: min(38vh, 320px);
        border-radius: 12px;
        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(191, 226, 38, 0.06);
    }

    .kombucha-video-section .section__subtitle {
        font-size: 0.88rem;
        padding-inline: 8px;
    }
}

.info-section__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.vitamins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.vitamin-tag {
    padding: 10px 14px;
    background: var(--lime-glow);
    border: 1px solid rgba(191, 226, 38, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lime);
    text-align: center;
    transition: var(--transition);
}

.vitamin-tag:hover {
    background: rgba(191, 226, 38, 0.25);
    transform: translateY(-2px);
}

/* ===== CONTACTS ===== */
.contacts-section { padding: 80px 0; }

.contacts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.contact-card {
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    display: block;
}

.contact-card:hover {
    border-color: var(--lime-dark);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}

.contact-card__icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lime-glow);
    border: 1px solid rgba(191, 226, 38, 0.15);
    border-radius: 50%;
    font-size: 1.4rem;
    margin: 0 auto 18px;
}

.contact-card__title {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card__value {
    font-size: 1.1rem;
    color: var(--lime);
    font-weight: 700;
}

/* ===== 404 ===== */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 72px;
}

.page-404__code {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 700;
    color: var(--lime);
    opacity: 0.15;
    line-height: 1;
}

.page-404__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 16px 0;
    color: #fff;
}

/* ===== NEWS ===== */
.news-hub {
    padding: 48px 0 80px;
}

.news-hub__toolbar {
    margin: 40px 0 32px;
}

.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-filter {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.news-filter:hover,
.news-filter.is-active {
    color: #000;
    background: var(--lime);
    border-color: var(--lime);
}

.news-featured {
    margin-bottom: 8px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.news-grid--hub {
    animation: newsFadeIn 0.35s ease;
}

@keyframes newsFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.news-empty {
    text-align: center;
    padding: 48px 24px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
}

.news-social {
    padding: 0 0 80px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    min-height: 100%;
}

.news-card:hover {
    border-color: rgba(191, 226, 38, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

.news-card--featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 360px;
}

.news-card--featured .news-card__media {
    min-height: 100%;
}

.news-card--featured .news-card__image {
    height: 100%;
    min-height: 280px;
}

.news-card--featured .news-card__body {
    padding: 36px;
    justify-content: center;
}

.news-card--featured .news-card__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.news-card__media {
    position: relative;
    overflow: hidden;
}

.news-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card__image {
    transform: scale(1.04);
}

.news-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--orange);
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-card__category {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,0.72);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--lime);
    font-size: 0.72rem;
    font-weight: 700;
}

.news-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.news-card__date {
    font-size: 0.75rem;
    color: var(--lime);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.news-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.35;
}

.news-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.news-card__more {
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: 0.03em;
}

/* Home news carousel */
.home-news {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(191,226,38,0.04) 50%, transparent 100%);
}

.home-news__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.home-news__nav {
    display: flex;
    gap: 10px;
}

.home-news__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.home-news__btn:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.home-news__track-wrap {
    position: relative;
}

.home-news__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 0;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.home-news__track::-webkit-scrollbar {
    display: none;
}

.home-news__track .news-card {
    flex: 0 0 300px;
    width: 300px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.home-news__track .news-card__media {
    position: relative;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.home-news__track .news-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
}

.home-news__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.home-news__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.home-news__dot.is-active {
    background: var(--lime);
    transform: scale(1.2);
}

.home-news__footer {
    text-align: center;
    margin-top: 32px;
}

/* News detail */
.news-article {
    padding: 40px 0 64px;
}

.news-article__breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.news-article__breadcrumb a:hover {
    color: var(--lime);
}

.news-article__header {
    max-width: 760px;
    margin: 24px 0 32px;
}

.news-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.news-article__category {
    color: var(--lime);
    font-weight: 700;
}

.news-article__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--orange);
    color: #000;
    font-weight: 700;
}

.news-article__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.news-article__lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.news-article__hero {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

.news-article__hero img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.news-article__video {
    max-width: 720px;
    margin-bottom: 32px;
}

.rutube-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}

.rutube-embed--shorts {
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
}

.rutube-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.news-article__body {
    max-width: 720px;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1rem;
}

.news-article__body p + p {
    margin-top: 1.2em;
}

.news-article__actions {
    margin-top: 32px;
}

.news-related {
    padding: 0 0 80px;
}

.news-related .section__title {
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .news-card--featured {
        grid-template-columns: 1fr;
    }

    .home-news__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .home-news .container {
        padding-left: 0;
        padding-right: 0;
    }

    .home-news__head,
    .home-news__footer,
    .home-news__dots {
        padding-left: 20px;
        padding-right: 20px;
    }

    .home-news__track {
        padding-left: 20px;
        padding-right: 20px;
        gap: 16px;
    }

    .home-news__track .news-card {
        flex: 0 0 calc(100vw - 40px);
        width: calc(100vw - 40px);
        max-width: 360px;
    }

    .home-news__track .news-card__media {
        height: 220px;
    }

    .home-news__track .news-card__image {
        min-height: 220px;
    }

    .news-grid .news-card__media {
        height: 220px;
    }

    .news-grid .news-card__image {
        height: 100%;
        min-height: 220px;
        max-width: none;
    }
}

/* ===== PARTNERS ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.partner-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: rgba(191, 226, 38, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.partner-card img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

/* ===== STORY BLOCKS ===== */
.story-block {
    color: var(--text-muted);
    line-height: 2;
    font-size: 0.95rem;
}

.story-block p { margin-bottom: 12px; }

.story-block h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.story-block strong { color: #fff; }
.story-block em { color: var(--lime); font-style: italic; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* app/cabinet не подключают app.js — показываем контент сразу, анимация через mini-app.js */
.page-app .fade-up,
.page-cabinet .fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero__title { font-size: clamp(2rem, 5vw, 3rem); }
    .features__grid { grid-template-columns: 1fr; }
    .about__inner { grid-template-columns: 1fr; gap: 40px; }
    .info-section__inner { grid-template-columns: 1fr; }
    .info-section__inner--reverse { direction: ltr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header {
        padding-top: env(safe-area-inset-top);
    }

    .header__nav {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: calc(72px + env(safe-area-inset-top) + 24px);
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
        gap: 8px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header__nav.active { display: flex; }

    body.nav-open .header {
        z-index: 9999;
    }

    body.nav-open .burger {
        z-index: 10000;
    }

    body.nav-open.pwa-site .header__nav {
        padding-bottom: calc(90px + env(safe-area-inset-bottom));
    }

    body.nav-open .pwa-tabbar {
        visibility: hidden;
        pointer-events: none;
    }

    .header__cta { display: none; }
    .header__nav > a,
    .nav-dropdown__toggle { font-size: 1.1rem; padding: 8px 0; }
    .burger { display: flex; }
    .nav-dropdown__menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        display: none;
    }
    .nav-dropdown.open .nav-dropdown__menu { display: flex; flex-direction: column; align-items: center; }
    .nav-dropdown__menu a { padding: 6px 0; font-size: 0.95rem; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .cta__inner { padding: 50px 20px; }
}

/* Главная: фиксированное видео + полупрозрачные секции (только десктоп) */
@media (min-width: 769px) {
    body.page-home {
        background: transparent;
    }

    .page-home .hero-video-bg {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }

    .page-home .hero-video-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .page-home .hero-video-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
    }

    .page-home .hero {
        overflow: visible;
        position: relative;
        z-index: 1;
    }

    .page-home .hero__content,
    .page-home .hero__scroll {
        position: relative;
        z-index: 2;
    }

    .page-home .features,
    .page-home .products,
    .page-home .about,
    .page-home .faq,
    .page-home .cta,
    .page-home .footer {
        position: relative;
        z-index: 1;
    }

    .page-home .features,
    .page-home .about,
    .page-home .faq {
        background: rgba(0, 0, 0, 0.38) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .page-home .products {
        background: rgba(0, 0, 0, 0.32) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .page-home .cta {
        background: rgba(0, 0, 0, 0.28) !important;
    }

    .page-home .footer {
        background: rgba(0, 0, 0, 0.55) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .page-home .feature-card,
    .page-home .faq-item,
    .page-home .stat {
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .page-home .cta__inner {
        background: rgba(0, 0, 0, 0.55) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Фон hero: постер до загрузки / при ошибке в WebView (Telegram, MAX) */
.page-home .hero-video-bg {
    background: #000 url('/images/bottle.jpeg') center center / cover no-repeat;
}

.page-home .hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #000;
}

.page-home .hero-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.page-home .hero-video-bg--poster video {
    opacity: 0;
    visibility: hidden;
}

.page-home .hero-video-bg--playing video {
    opacity: 1;
    visibility: visible;
}

/* Главная: видео только в hero на мобильных */
@media (max-width: 768px) {
    .page-home .hero-video-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100dvh;
        height: -webkit-fill-available;
        z-index: 0;
        overflow: hidden;
    }

    .page-home .hero {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .page-home .features,
    .page-home .products,
    .page-home .about,
    .page-home .faq {
        background: var(--bg-light) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .page-home .products {
        background: var(--bg) !important;
    }

    .page-home .feature-card,
    .page-home .faq-item,
    .page-home .stat {
        background: var(--bg) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .page-home .product-card__shell {
        background: linear-gradient(165deg, rgba(18, 18, 18, 0.98), rgba(6, 6, 6, 0.99));
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
    }
}

/* ===== MINI APP / PWA / CABINET ===== */
.page-app,
.page-cabinet {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    min-height: 100vh;
    background: var(--bg);
}

.page-app .header,
.page-app .footer,
.page-cabinet .header,
.page-cabinet .footer { display: none; }

body.no-scroll { overflow: hidden; }

/* --- Application header --- */
.app-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    padding-top: calc(10px + env(safe-area-inset-top));
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-header__logo { display: inline-flex; }
.app-header__logo img { height: 32px; width: auto; }

.app-header__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 0;
    line-height: 1.1;
}

.app-header__title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
}

.app-header__platform {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
}

.app-header__icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.app-header__icon-btn:hover {
    background: rgba(191, 226, 38, 0.12);
    color: var(--lime);
}

.app-header__icon-btn:active { transform: scale(0.94); }

.app-header__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.app-header__badge--zero { display: none; }

.app-main {
    padding: 20px 16px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.app-hero {
    text-align: center;
    margin-bottom: 32px;
    padding: 28px 16px;
}

.app-hero__title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 12px 0;
}

.app-hero__title span { color: var(--lime); }

.app-hero__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-section-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    margin: 0 0 18px;
}

.app-products-grid {
    gap: 28px 20px;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
}

@media (min-width: 480px) {
    .app-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    }
}

/* --- Tabbar --- */
.app-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: flex;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: env(safe-area-inset-bottom);
}

.app-tabbar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.app-tabbar__item svg { opacity: 0.7; }
.app-tabbar__item--active,
.app-tabbar__item:hover { color: var(--lime); }
.app-tabbar__item--active svg,
.app-tabbar__item:hover svg { opacity: 1; }

/* --- Loader --- */
.app-loader {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.92);
    transition: opacity 0.4s ease, visibility 0.4s ease;
    color: var(--text-muted);
}

.app-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.app-loader__spinner {
    width: 38px;
    height: 38px;
    border: 3px solid rgba(191, 226, 38, 0.2);
    border-top-color: var(--lime);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* --- Glass panel --- */
.glass-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* --- Cabinet --- */
.app-main--cabinet {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cabinet-profile {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-areas:
        "avatar info"
        "stats stats";
    gap: 16px 18px;
    align-items: center;
}

.cabinet-profile__avatar {
    grid-area: avatar;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--lime-glow);
    border: 2px solid rgba(191, 226, 38, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lime);
}

.cabinet-profile__avatar img { width: 100%; height: 100%; object-fit: cover; }

.cabinet-profile__info { grid-area: info; min-width: 0; }
.cabinet-profile__name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.cabinet-profile__meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2px; }

.cabinet-profile__stats {
    grid-area: stats;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding-top: 14px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

@media (max-width: 520px) {
    .cabinet-profile__stats { grid-template-columns: repeat(2, 1fr); }
}

.cabinet-referral { margin-bottom: 14px; }
.cabinet-referral__balance { font-size: 1.1rem; margin: 0 0 10px; }
.cabinet-referral__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.45; margin: 0 0 14px; }
.cabinet-referral__code { margin-bottom: 12px; }
.cabinet-referral__link-row { display: flex; gap: 8px; align-items: center; }
.cabinet-referral__link-row input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.25);
    color: inherit;
    font-size: 0.82rem;
}
.cabinet-referral__stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.cabinet-referral__stats span { color: var(--lime); font-weight: 700; font-size: 1.1rem; }
.cabinet-referral-history__list { list-style: none; margin: 0; padding: 0; }
.cabinet-referral-history__list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 0.88rem;
}
.cabinet-referral-history__list time {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    color: var(--text-dim);
}
.cabinet-referral-history__list .is-earn { color: var(--lime); }
.cabinet-referral-history__list .is-spend { color: #ffab91; }

.cabinet-profile__stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cabinet-stat__num {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
}

.cabinet-stat__label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* --- Tabs --- */
.cabinet-tabs {
    display: flex;
    gap: 6px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.cabinet-tab {
    flex: 1;
    position: relative;
    padding: 10px 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.cabinet-tab:hover { color: #fff; }
.cabinet-tab--active {
    background: rgba(191, 226, 38, 0.16);
    color: var(--lime);
}

.cabinet-tab__badge {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 7px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
}

.cabinet-panel { display: none; }
.cabinet-panel--active {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: cabinet-fade 0.35s ease;
}

@keyframes cabinet-fade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Orders --- */
.cabinet-orders__list { display: flex; flex-direction: column; gap: 12px; }

.cabinet-order { padding: 18px 20px; }
.cabinet-order__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.cabinet-order__num {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}

.cabinet-order__date {
    display: block;
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.cabinet-order__status {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lime);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(191, 226, 38, 0.12);
    border: 1px solid rgba(191, 226, 38, 0.3);
}

.cabinet-order__status--done { color: #b6f8b1; background: rgba(150, 250, 130, 0.12); border-color: rgba(150, 250, 130, 0.3); }
.cabinet-order__status--cancelled { color: #f5a3a3; background: rgba(245, 80, 80, 0.12); border-color: rgba(245, 80, 80, 0.3); }

.cabinet-order__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.cabinet-order__items li {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    align-items: center;
    font-size: 0.88rem;
}

.cabinet-order__items img {
    width: 36px; height: 36px; border-radius: 8px; object-fit: cover;
}

.cabinet-order__item-name { color: #fff; }
.cabinet-order__item-qty { color: var(--text-muted); font-weight: 600; }

.cabinet-order__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    align-items: baseline;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.cabinet-order__discount {
    font-size: 0.82rem;
    color: var(--orange);
    font-weight: 600;
}

.cabinet-order__total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lime);
}

/* --- Empty / Guest --- */
.cabinet-empty,
.cabinet-guest {
    text-align: center;
    padding: 36px 24px;
}

.cabinet-empty__icon {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.cabinet-empty h3,
.cabinet-guest__title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.cabinet-empty p,
.cabinet-guest__text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cabinet-guest .btn,
.cabinet-empty .btn { margin: 6px; }

/* --- Phone auth --- */
.cabinet-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.cabinet-auth__step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cabinet-auth__step--hidden { display: none; }

.cabinet-auth__status {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-height: 1.2em;
}

.cabinet-auth__status[data-type="error"] { color: #ff8d6f; }
.cabinet-auth__status[data-type="success"] { color: var(--lime); }

.cabinet-auth__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 12px 0;
}

.cabinet-auth__divider::before,
.cabinet-auth__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.cabinet-auth__platforms {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

@media (min-width: 520px) {
    .cabinet-auth__platforms { grid-template-columns: 1fr 1fr; }
}

/* --- Forms --- */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: rgba(191, 226, 38, 0.55);
    background: rgba(191, 226, 38, 0.06);
}

.field textarea {
    resize: vertical;
    min-height: 64px;
}

/* --- Profile form --- */
.cabinet-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cabinet-form__title { font-size: 1rem; color: #fff; margin: 0; }

.cabinet-form__submit { align-self: flex-start; min-width: 160px; }

.cabinet-form__status {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-height: 1em;
}

.cabinet-form__status[data-type="success"] { color: var(--lime); }
.cabinet-form__status[data-type="error"] { color: #ff8d6f; }

/* --- Connections --- */
.cabinet-connections__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
}

.cabinet-connections__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    font-size: 0.88rem;
}

.cabinet-connections__on { color: var(--lime); font-weight: 600; }
.cabinet-connections__off { color: var(--text-dim); }
.cabinet-connections__note {
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* --- Offers list --- */
.offers-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 640px) {
    .offers-list { grid-template-columns: 1fr 1fr; }
}

.offer-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
}

.offer-card--used { opacity: 0.55; }
.offer-card--used::after {
    content: 'Использовано';
    position: absolute;
    top: 14px; right: 14px;
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--text-muted);
}

.offer-card__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
    background: rgba(191, 226, 38, 0.14);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.offer-card__title {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 6px;
}

.offer-card__text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.offer-card__details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.offer-card__discount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lime);
}

.offer-card__code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    font: 600 0.78rem var(--font);
    letter-spacing: 0.06em;
    cursor: pointer;
}

.offer-card__code:hover { color: var(--lime); border-color: rgba(191, 226, 38, 0.4); }

.offer-card__expires {
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--text-dim);
}

/* --- Cart sheet --- */
.cart-sheet {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    pointer-events: none;
}

.cart-sheet[aria-hidden="false"] { pointer-events: auto; }

.cart-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-sheet[aria-hidden="false"] .cart-sheet__backdrop { opacity: 1; }

.cart-sheet__panel {
    position: relative;
    margin-left: auto;
    width: min(440px, 100%);
    max-height: 100vh;
    background: rgba(10, 10, 10, 0.96);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: -16px 0 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    padding-bottom: env(safe-area-inset-bottom);
}

.cart-sheet[aria-hidden="false"] .cart-sheet__panel { transform: translateX(0); }

.cart-sheet__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    padding-top: calc(18px + env(safe-area-inset-top));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-sheet__head h2 { font-size: 1.2rem; }

.cart-sheet__close {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-sheet__body {
    overflow-y: auto;
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.cart-item img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item__name { font-weight: 600; color: #fff; font-size: 0.9rem; }
.cart-item__price { color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 4px 8px;
}

.cart-item__qty button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.cart-item__qty span { min-width: 18px; text-align: center; font-weight: 700; }

.cart-sheet__empty {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 12px;
}

.cart-sheet__empty div { font-size: 2.4rem; margin-bottom: 10px; }

.cart-offer-input {
    display: flex;
    gap: 8px;
}

.cart-offer-input input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font: inherit;
    text-transform: uppercase;
}

.cart-offer-input button {
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--lime);
    background: transparent;
    color: var(--lime);
    font-weight: 600;
    cursor: pointer;
}

.cart-offer-status {
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    min-height: 1em;
}

.cart-offer-status[data-type="success"] { color: var(--lime); }
.cart-offer-status[data-type="error"] { color: #ff8d6f; }

.address-field__wrap {
    position: relative;
}

.address-field__hint {
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.35;
}

.address-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 30;
    max-height: 240px;
    overflow-y: auto;
    background: #1a1f18;
    border: 1px solid rgba(198, 255, 0, 0.25);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.address-suggest__item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    color: #fff;
    font: inherit;
    cursor: pointer;
}

.address-suggest__item:last-child {
    border-bottom: 0;
}

.address-suggest__item:hover,
.address-suggest__item--active {
    background: rgba(198, 255, 0, 0.08);
}

.address-suggest__title {
    display: block;
    font-weight: 600;
    font-size: 0.86rem;
    line-height: 1.3;
}

.address-suggest__subtitle {
    display: block;
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.74rem;
    line-height: 1.35;
}

.address-suggest__kind {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-dim);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.address-suggest__empty {
    padding: 10px 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.35;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0 8px;
}

.delivery-options__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.delivery-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.delivery-option--active,
.delivery-option:has(input:checked) {
    border-color: rgba(198, 255, 0, 0.45);
    background: rgba(198, 255, 0, 0.06);
}

.delivery-option input {
    margin-top: 4px;
    accent-color: var(--lime);
}

.delivery-option__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.delivery-option__title {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.delivery-option__meta {
    color: var(--lime);
    font-size: 0.85rem;
}

.delivery-pvz-picker {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.delivery-pvz-picker__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 2px;
}

.delivery-pvz-item {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font: inherit;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.delivery-pvz-item:hover,
.delivery-pvz-item--active {
    border-color: rgba(198, 255, 0, 0.45);
    background: rgba(198, 255, 0, 0.06);
}

.delivery-pvz-item__head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.delivery-pvz-item__name {
    font-weight: 600;
    font-size: 0.86rem;
    line-height: 1.3;
}

.delivery-pvz-item__dist {
    flex-shrink: 0;
    color: var(--lime);
    font-size: 0.78rem;
    font-weight: 600;
}

.delivery-pvz-item__badge {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 6px;
    border-radius: 6px;
    background: rgba(198, 255, 0, 0.14);
    color: var(--lime);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.delivery-pvz-item__address {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.35;
    word-break: break-word;
}

.delivery-pvz-item__time {
    display: block;
    margin-top: 4px;
    color: var(--text-dim);
    font-size: 0.72rem;
    line-height: 1.3;
}

.cart-summary {
    margin-top: 8px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.92rem;
}

.cart-summary > div { display: flex; justify-content: space-between; }
.cart-summary__total { padding-top: 6px; border-top: 1px dashed rgba(255, 255, 255, 0.1); font-size: 1.1rem; }
.cart-summary__total strong { color: var(--lime); }

.cart-checkout {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-checkout__submit { margin-top: 6px; }

/* --- App offers rail (in shop) --- */
.app-offers { margin-bottom: 28px; }
.app-offers__rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
}

.app-offer-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    text-align: left;
    padding: 14px 16px;
    background: linear-gradient(140deg, rgba(191, 226, 38, 0.15), rgba(234, 78, 39, 0.08));
    border: 1px solid rgba(191, 226, 38, 0.25);
    border-radius: 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.app-offer-card:hover { transform: translateY(-2px); }

.app-offer-card__badge {
    align-self: flex-start;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lime);
}

.app-offer-card__title { font-weight: 700; font-size: 0.95rem; line-height: 1.3; }

.app-offer-card__code {
    font: 700 0.78rem var(--font);
    letter-spacing: 0.06em;
    color: var(--orange);
}

/* --- Toast --- */
.app-toast {
    position: fixed;
    left: 50%;
    bottom: calc(96px + env(safe-area-inset-bottom));
    transform: translate(-50%, 16px);
    z-index: 600;
    max-width: calc(100% - 32px);
    padding: 12px 18px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.92rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-toast--visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.app-toast[data-type="error"] { border-color: rgba(255, 100, 80, 0.4); color: #ffb1a3; }
.app-toast[data-type="success"] { border-color: rgba(191, 226, 38, 0.5); color: var(--lime); }

/* --- Buttons (small additions for cabinet) --- */
.btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover { color: #fff; border-color: rgba(255, 255, 255, 0.25); }

.product-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* --- PWA install prompt --- */
.pwa-install {
    position: fixed;
    bottom: calc(86px + env(safe-area-inset-bottom));
    left: 16px;
    right: 16px;
    z-index: 300;
    display: none;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid rgba(191, 226, 38, 0.35);
    border-radius: 14px;
    align-items: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.pwa-install--show { display: flex; }

.pwa-install__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--lime);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.pwa-install__text {
    flex: 1;
    font-size: 0.88rem;
    color: #fff;
    line-height: 1.3;
}

.pwa-install__text small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.pwa-install__btn {
    padding: 8px 14px;
    background: var(--lime);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.pwa-install__close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px 6px;
}

/* --- Responsive --- */
@media (max-width: 520px) {
    .cart-sheet__panel { width: 100%; }
    .app-main { padding: 16px 12px 20px; }
    .glass-panel { padding: 16px; border-radius: 14px; }
    .cabinet-profile {
        grid-template-columns: 64px 1fr;
        gap: 12px 14px;
    }
    .cabinet-profile__avatar { width: 64px; height: 64px; font-size: 1.5rem; }
    .cabinet-profile__name { font-size: 1.15rem; }
    .cabinet-profile__stats { gap: 4px; }
    .cabinet-stat__num { font-size: 1.1rem; }
    .cabinet-stat__label { font-size: 0.58rem; }
    .cabinet-tab { font-size: 0.76rem; padding: 8px 10px; }
    .cabinet-guest,
    .cabinet-empty { padding: 28px 16px; }
    .cabinet-auth input { font-size: 16px; }
    .cabinet-order { padding: 14px 16px; }
    .cabinet-order__head { flex-direction: column; gap: 8px; }
}

@media (min-width: 769px) {
    .page-cabinet,
    .page-app {
        padding-bottom: 40px;
    }
    .app-tabbar { display: none; }
    .pwa-standalone .pwa-tabbar { display: flex; }
}

/* ===== PWA STANDALONE ===== */
html.pwa-standalone {
    height: -webkit-fill-available;
}

html.pwa-standalone body {
    min-height: 100dvh;
    min-height: -webkit-fill-available;
}

.pwa-standalone .header {
    padding-top: env(safe-area-inset-top);
}

.pwa-standalone body.pwa-site {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
}

.pwa-standalone .hero {
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    padding-top: calc(72px + env(safe-area-inset-top));
    box-sizing: border-box;
}

.pwa-standalone .page-home .hero-video-bg {
    height: 100dvh;
    height: -webkit-fill-available;
}

.pwa-standalone .page-hero {
    padding-top: calc(150px + env(safe-area-inset-top));
}

.pwa-standalone .footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

.pwa-standalone .page-app,
.pwa-standalone .page-cabinet {
    min-height: 100dvh;
    min-height: -webkit-fill-available;
}

.pwa-standalone .pwa-install {
    bottom: calc(96px + env(safe-area-inset-bottom));
}

/* ===== Home background music ===== */
#homeMusic {
    display: none;
}

.home-music {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.home-music__volume-wrap {
    position: relative;
    width: 88px;
    height: 24px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}

.home-music__volume-track {
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
    pointer-events: none;
}

.home-music__volume-fill {
    display: block;
    height: 100%;
    width: 30%;
    border-radius: 999px;
    background: var(--lime);
    transition: width 0.08s ease;
}

.home-music__volume {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 24px;
    margin: 0;
    background: transparent;
    outline: none;
    cursor: pointer;
}

.home-music__volume::-webkit-slider-runnable-track {
    height: 5px;
    background: transparent;
    border: none;
}

.home-music__volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    margin-top: -4.5px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.35);
    background: var(--lime);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.home-music__volume::-moz-range-track {
    height: 5px;
    background: transparent;
    border: none;
}

.home-music__volume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.35);
    background: var(--lime);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.home-music__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 12, 12, 0.88);
    color: var(--text-muted);
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-music__toggle:hover {
    transform: scale(1.05);
    color: #fff;
    border-color: rgba(191, 226, 38, 0.35);
}

.home-music__toggle--on {
    color: var(--lime);
    border-color: rgba(191, 226, 38, 0.45);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 18px rgba(191, 226, 38, 0.12);
}

.home-music__toggle--pending {
    animation: home-music-pulse 1.4s ease-in-out infinite;
}

@keyframes home-music-pulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 rgba(191, 226, 38, 0); }
    50% { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 16px rgba(191, 226, 38, 0.25); }
}

.home-music__icon--on { display: none; }
.home-music__icon--off { display: block; }
.home-music__toggle--on .home-music__icon--on { display: block; }
.home-music__toggle--on .home-music__icon--off { display: none; }

@media (max-width: 768px) {
    .home-music__toggle {
        width: 40px;
        height: 40px;
    }

    .home-music__volume-wrap {
        width: 64px;
    }

    .header__brand {
        gap: 8px;
    }
}
