:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --secondary-text: #ccc;
    --card-bg: #0f0f0f;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-speed: 0.9s;
    --live-red: #fff;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.12) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(5, 5, 5, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    height: 40px;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links { display: flex; }

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s var(--easing);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.4s var(--easing), left 0.4s var(--easing);
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; left: 0; }

.cart-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s var(--easing);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.cart-icon {
    display: none;
    width: 22px;
    height: 22px;
    filter: invert(1);
    flex-shrink: 0;
}

.cart-btn:hover .cart-icon { filter: invert(0); }

section {
    padding: clamp(60px, 6vw, 100px) 5% clamp(40px, 4vw, 60px);
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero {
    height: clamp(600px, 90vh, 900px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4%;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4%;
}

.hero-image img {
    width: 100%;
    object-fit: contain;
    filter: invert(1);
    mix-blend-mode: screen;
}

.hand-sway {
    transform-origin: bottom center;
    animation: sway-hand 3.5s ease-in-out infinite;
}

.hand-sway {
    transform-origin: bottom center;
    animation: sway-hand 3.5s ease-in-out infinite;
}

@keyframes sway-hand {
    0%, 100% { transform: rotate(3deg); }
    50%       { transform: rotate(-3deg); }
}


.model-section {
    height: clamp(600px, 100vh, 960px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.marquee-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.marquee-row {
    display: flex;
    white-space: nowrap;
    line-height: 1;
}

.marquee-track {
    display: flex;
    animation: marquee-left 12s linear infinite;
    flex-shrink: 0;
    line-height: 1;
}

.marquee-row:nth-child(even) .marquee-track {
    animation-name: marquee-right;
}

.marquee-track span {
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.07);
    user-select: none;
    padding-right: 0.4em;
}

@keyframes marquee-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

#model-container {
    width: min(560px, 80vw);
    height: min(680px, 80vh);
    position: relative;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 85%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 95%);
}

#model-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    max-width: 500px;
    border-left: 1px solid #333;
    padding-left: 20px;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .hero { flex-direction: column; height: auto; padding-top: 120px; }
    .hero-image { width: 100%; height: 60vw; flex: none; }
    .model-section { height: 70vw; min-height: 300px; }
    #model-container { width: 90vw; height: 100%; }
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ccc;
    margin-bottom: 3rem;
    display: block;
}

.manifesto {
    background: none;
    padding: 0 5%;
}

.manifesto-wrap {
    background: #0a0a0a;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    padding: clamp(60px, 8vw, 120px) 5%;
    text-align: center;
}

.manifesto-text {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    font-weight: 400;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.2;
    color: #eee;
}

.pointer-wrap {
    position: relative;
}

.pointer-wrap-2 {
    position: relative;
}

.pointer-video-2 {
    position: absolute;
    bottom: 0;
    left: calc(50% - 350px);
    transform: translate(-50%, 230px);
    width: clamp(280px, 38vw, 600px);
    height: auto;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
    filter: contrast(1.4) brightness(1.2);
}

.pointer-video {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(calc(-50% - 370px));
    width: clamp(280px, 38vw, 600px);
    height: auto;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
    filter: contrast(1.4) brightness(1.2);
}

.location-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--secondary-text);
    transition: background 0.6s var(--easing), padding 0.6s var(--easing);
    position: relative;
    z-index: 3;
    text-decoration: none;
    cursor: pointer;
}

.location-row:hover {
    background: rgba(255,255,255,0.03);
    padding-left: 15px;
}

.location-row:active {
    background: rgba(255,255,255,0.06);
}

.location-row span:first-child { color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.stream-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: transform 0.6s var(--easing), background 0.6s var(--easing), border-color 0.6s var(--easing);
}

.stream-card:hover {
    border-color: var(--live-red);
    background: #110808;
    transform: translateY(-8px);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--live-red);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.dot {
    width: 8px; height: 8px;
    background: var(--live-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

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

@media (min-width: 1200px) {
    .grid { grid-template-columns: repeat(4, 1fr); }
}

.card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: transform 0.6s var(--easing), background 0.6s var(--easing), border-color 0.6s var(--easing);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    background: #151515;
    border-color: rgba(255, 255, 255, 0.1);
}

.card-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #111;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.8s var(--easing);
}

.card:hover .card-image img { transform: scale(1.1); }

.card-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.card-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.card-info h3 { font-size: 1.3rem; font-weight: 700; margin-top: 5px; }
.card-info p { color: var(--secondary-text); font-size: 0.85rem; flex-grow: 1; }

.price {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: inherit;
    transition: background 0.6s var(--easing), padding 0.6s var(--easing), color 0.6s var(--easing);
}

.news-item:hover {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.news-date { color: #ccc; font-size: 0.8rem; }

.audio-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    user-select: none;
}

.player-toggle-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.player-visual {
    display: flex;
    gap: 2px;
    height: 12px;
    align-items: flex-end;
}

.bar {
    width: 2px;
    background: #000;
    height: 2px;
    transition: height 0.2s;
}

.audio-player.active-play .bar {
    animation: sound 0.5s infinite alternate;
}

.audio-player.active-play .bar:nth-child(2) { animation-delay: 0.2s; }
.audio-player.active-play .bar:nth-child(3) { animation-delay: 0.4s; }

@keyframes sound {
    0% { height: 2px; }
    100% { height: 12px; }
}

.volume-control {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-left: 15px;
    margin-left: 5px;
}

.volume-slider {
    -webkit-appearance: none;
    width: 60px;
    height: 2px;
    background: #ddd;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    transition: transform 0.2s;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.6s var(--easing), transform 0.6s var(--easing);
}

@media (max-width: 768px) {
    .reveal { transform: translate3d(0, 10px, 0); }
}

.reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

footer {
    padding: 100px 5% 40px;
    background: #080808;
    border-top: 1px solid #111;
    margin-top: 230px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 320px;
    text-transform: none;
    letter-spacing: 0;
}

.footer-section h4 {
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 800;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.6s var(--easing);
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(10px);
}

.footer-bottom {
    margin-top: 100px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── Бургер кнопка ──────────────────────────────── */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}
.burger-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
    transform-origin: center;
}
.burger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Мобильное меню ─────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}
.mobile-nav a {
    font-size: clamp(2.2rem, 10vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
                transform 0.5s cubic-bezier(0.16,1,0.3,1),
                color 0.2s;
}
.mobile-menu.open .mobile-nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav a:hover { color: #fff; }

.mobile-close-btn {
    position: fixed;
    top: 1.2rem;
    right: 5%;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.mobile-close-btn.visible { display: flex; }
.mobile-close-btn:hover { background: rgba(255,255,255,0.18); }

/* ── Full HD (1400px–2000px) ── */
@media (min-width: 1400px) and (max-width: 2000px) {
    section {
        padding-left:  8%;
        padding-right: 8%;
    }
    .model-section {
        padding-left:  0;
        padding-right: 0;
    }
    nav {
        padding-left:  8%;
        padding-right: 8%;
    }
}

/* ── Ноутбук (≤1280px) ── */
@media (max-width: 1280px) {
    .pointer-video { width: clamp(220px, 28vw, 480px); }
    .pointer-video-2 { width: clamp(220px, 28vw, 480px); }
}

/* ── Планшет (≤1024px) ── */
@media (max-width: 1024px) {
    nav { padding: 1rem 5%; }
    .nav-links { display: none !important; }
    .burger-btn { display: flex; }
    .nav-right { gap: 0.8rem; }
    .logo-name { display: none; }
    .cart-icon { display: block !important; width: 22px; height: 22px; filter: invert(1); flex-shrink: 0; }
    .cart-btn:hover .cart-icon { filter: invert(0); }
    .cart-label, .cart-count { display: none; }
    .cart-btn { padding: 8px; }

    .hero { flex-direction: column; height: auto; padding-top: 140px; padding-bottom: 60px; gap: 40px; }
    .hero-text { flex: none; width: 100%; text-align: left; }
    .hero-image { flex: none; width: 60%; max-width: 400px; height: 380px; margin: 0 auto; }
    .hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
    .model-section { height: clamp(400px, 70vh, 700px); }
    .grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
    .streams-grid { grid-template-columns: repeat(2, 1fr); }

    .product-modal {
        display: flex !important; flex-direction: column !important;
        width: 100vw !important; height: 100dvh !important;
        border-radius: 0 !important; border: none !important;
        max-width: none !important;
    }
    .product-modal-gallery { height: 50vh !important; min-height: 220px; flex-shrink: 0; }
    .product-modal-info { flex: 1; overflow-y: auto; padding: 1.5rem; gap: 0.8rem; }
    .product-modal-close { top: 12px; right: 12px; }
    .product-modal-title { font-size: 1.4rem; }
    .product-modal-footer { padding-top: 1rem; margin-top: auto; }
    .gallery-btn { display: none !important; }
    .cart-sidebar { width: 100vw; }
}

/* ── Все планшеты (portrait и landscape) ── */
@media (min-width: 769px) and (max-width: 1366px) {
    .pointer-video { width: clamp(220px, 28vw, 440px); top: 22%; transform: translateY(-50%); z-index: 20; }
    .pointer-video-2 { width: clamp(240px, 30vw, 480px); left: 0; right: auto; bottom: 0; top: auto; transform: translateY(clamp(100px, 16vh, 240px)); }
}

/* ── Планшет портрет / большой телефон (≤768px) ── */
@media (max-width: 768px) {
    nav { padding: 1rem 5%; }
    .nav-links { display: none !important; }
    .burger-btn { display: flex; }
    .nav-right { gap: 0.8rem; }
    .logo { font-size: 0.8rem; letter-spacing: 1px; }
    .logo-name { display: none; }
    .cart-icon { display: block !important; width: 22px; height: 22px; filter: invert(1); flex-shrink: 0; }
    .cart-btn:hover .cart-icon { filter: invert(0); }
    .cart-label, .cart-count { display: none; }
    .cart-btn { padding: 8px; }

    section { padding: 60px 5% 40px; }

    .hero { flex-direction: row; height: auto; padding-top: 110px; padding-bottom: 40px; gap: 12px; align-items: flex-start; }
    .hero-text { flex: 1; min-width: 0; text-align: left; }
    .hero-image { flex: none; width: 42%; max-width: 200px; height: 260px; margin: 0; align-self: flex-start; }
    .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); letter-spacing: -1px; }
    .hero p { font-size: 0.9rem; }

    .model-section { height: clamp(320px, 60vh, 560px); }
    .marquee-row span { font-size: clamp(3rem, 10vw, 6rem); }

    .pointer-wrap { display: flex; flex-direction: column; }
    #locations { order: 1; }
    .pointer-video { position: relative; top: auto; right: auto; bottom: auto; left: auto; transform: none; order: 2; width: 100%; max-width: 473px; align-self: flex-end; padding-right: 5%; }
    #merch { order: 3; }
    .pointer-wrap-2 { display: flex; flex-direction: column; }
    .pointer-video-2 { position: relative; top: auto; bottom: auto; left: auto; right: auto; transform: none; order: 2; width: 100%; max-width: 473px; align-self: flex-end; padding-right: 5%; }
    #news { order: 1; }
    footer { margin-top: 0px !important; }

    .manifesto-wrap { padding: 60px 5%; }
    .manifesto-text { font-size: clamp(1rem, 4vw, 1.6rem); }

    .location-row { grid-template-columns: 1fr; gap: 6px; text-align: left; }
    .location-row span:not(:first-child) { color: #666; font-size: 0.75rem; }

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

    .news-item { grid-template-columns: 1fr; gap: 5px; }

    .audio-player { bottom: 16px; right: 16px; left: 16px; justify-content: center; font-size: 0.6rem; }
    .volume-control { display: none; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }

    .product-modal {
        display: flex !important; flex-direction: column !important;
        width: 100vw !important; height: 100dvh !important;
        border-radius: 0 !important; border: none !important;
        max-width: none !important;
    }
    .product-modal-gallery { height: 50vh !important; min-height: 220px; flex-shrink: 0; }
    .product-modal-info { flex: 1; overflow-y: auto; padding: 1.5rem; gap: 0.8rem; }
    .product-modal-close { top: 12px; right: 12px; }
    .product-modal-title { font-size: 1.4rem; }
    .product-modal-footer { padding-top: 1rem; margin-top: auto; }
    .gallery-btn { display: none !important; }
    .cart-sidebar { width: 100vw; }
}

/* ── Телефон (≤480px) ── */
@media (max-width: 480px) {
    section { padding: 50px 5% 30px; }
    .hero h1 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
    .hero-image { width: 40%; height: 220px; }
    .grid { grid-template-columns: 1fr; }
    .manifesto-text { font-size: 1rem; line-height: 1.4; }
    .streams-grid { grid-template-columns: 1fr; }
    .product-modal-gallery { height: 70vw; }
}

/* Модалка товара */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(16px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--easing);
}
.product-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.product-modal {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 55% 45%;
    width: 96vw;
    max-width: 1500px;
    height: 88vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.96) translateY(20px);
    transition: transform 0.4s var(--easing);
}
.product-modal-overlay.active .product-modal {
    transform: scale(1) translateY(0);
}
.product-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.product-modal-close:hover { background: rgba(255,255,255,0.18); }

/* Галерея */
.product-modal-gallery {
    position: relative;
    background: #111;
    overflow: hidden;
    user-select: none;
}
.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s var(--easing);
}
.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 5;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}
.gallery-btn:hover { background: rgba(255,255,255,0.2); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}
.gallery-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.gallery-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.product-modal-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    overflow-y: auto;
}
.product-modal-tag {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ccc;
}
.product-modal-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.product-modal-desc {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.7;
}
.product-modal-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.product-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.product-modal-price {
    font-size: 1.6rem;
    font-weight: 800;
}
.product-modal-add {
    background: #fff;
    color: #000;
    border: none;
    padding: 14px 32px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}
.product-modal-add:hover { transform: scale(1.04); }
.product-modal-add.added { background: #fff; color: #000; }

/* Корзина — сайдбар */
.cart-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1500;
}
.cart-backdrop.active { display: block; }

.cart-sidebar {
    position: fixed;
    top: 0; right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100%;
    background: #0a0a0a;
    border-left: 1px solid rgba(255,255,255,0.07);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cart-sidebar.active { transform: translateX(0); }

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 4px;
}
.cart-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    padding: 0;
}
.cart-close-btn:hover { opacity: 1; }

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cart-empty {
    color: #ccc;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 4rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
}
.cart-item-img {
    width: 70px; height: 70px;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.cart-item-title { font-size: 0.8rem; font-weight: 700; }
.cart-item-size { font-size: 0.65rem; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }
.cart-item-price { font-size: 0.85rem; font-weight: 700; }

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
}
.cart-qty-btn {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    width: 24px; height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.cart-qty-btn:hover { background: #333; }
.cart-remove-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.2s;
}
.cart-remove-btn:hover { color: #fff; }

.cart-sidebar-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
#cart-total { font-size: 1rem; }
.cart-checkout-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 18px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
}
.cart-checkout-btn:hover { transform: scale(1.02); }
.cart-checkout-btn:disabled {
    background: #222;
    color: #ccc;
    cursor: default;
    transform: none;
}

/* Кнопка + размеры на карточке */
.card-sizes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.size-btn {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ccc;
    padding: 4px 10px;
    font-size: 0.6rem;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.size-btn:hover, .size-btn.selected {
    border-color: #fff;
    color: #fff;
    background: #222;
}

.size-chart-wrap { margin-top: 4px; }
.size-chart-toggle {
    background: none; border: none; color: #444;
    font-size: 0.65rem; font-family: 'Inter', sans-serif;
    text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; padding: 0; transition: color 0.2s;
}
.size-chart-toggle:hover { color: #fff; }
.size-chart { display: none; margin-top: 10px; }
.size-chart.open { display: block; }
.size-table {
    width: 100%; border-collapse: collapse;
    font-size: 0.72rem; font-family: 'Inter', sans-serif;
}
.size-table th {
    text-align: left; color: #444;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 6px 10px; border-bottom: 1px solid #1e1e1e;
    font-weight: 700; font-size: 0.6rem;
}
.size-table td {
    padding: 7px 10px; border-bottom: 1px solid #141414; color: #888;
}
.size-table tbody tr:hover td { color: #fff; }
.size-table td:first-child { color: #fff; font-weight: 700; }

.add-to-cart-btn {
    width: 100%;
    margin-top: 0.8rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s var(--easing);
}
.add-to-cart-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.add-to-cart-btn.added {
    border-color: #fff;
    color: #fff;
}

/* FAQ */
.faq-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--easing);
}

.faq-overlay.active { display: flex; opacity: 1; }

.faq-modal {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.faq-modal h2 { margin-bottom: 2rem; letter-spacing: -1px; }
.faq-item { margin-bottom: 1.5rem; }
.faq-item h4 { color: #fff; font-size: 0.9rem; margin-bottom: 0.5rem; text-transform: uppercase; }
.faq-item p { color: #ccc; font-size: 0.85rem; }

.close-faq {
    position: absolute;
    top: 20px; right: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

/* Корзина / Оформление заказа */
.order-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(25px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--easing);
}

.order-overlay.active { display: flex; opacity: 1; }

.order-modal {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.order-modal h2 { margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -2px; }
.order-form { display: flex; flex-direction: column; gap: 15px; }

.order-input {
    background: #111;
    border: 1px solid #222;
    padding: 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.order-input:focus { border-color: #fff; }

.order-submit {
    background: #fff;
    color: #000;
    border: none;
    padding: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
    transition: transform 0.3s;
}

.order-submit:hover { transform: scale(1.02); }

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.72rem;
    color: #888;
    line-height: 1.5;
    cursor: pointer;
}
.consent-check {
    margin-top: 2px;
    accent-color: #fff;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    cursor: pointer;
}
.consent-label a {
    color: #ccc;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.consent-label a:hover { color: #fff; }

.close-order {
    position: absolute;
    top: 20px; right: 20px;
    cursor: pointer;
    font-size: 0.7rem;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

