/* layout.css — global shell: navbar, footer, basket sidebar, scrollbar, mobile drawer, bundle banner, preloader */

/* note: :root vars stay inline in layout.html — tebex doesn't process twig in .css files */

/* Basket Login Prompt */

.basket-login-prompt {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            min-height: 400px;
            width: 100%;
        }

.login-icon-wrap {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--accent-color);
        }

.basket-login-prompt h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
            color: #fff;
        }

/* stars */

.star-anim-trigger span {
            display: inline-block;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            color: #ffb800;
            text-shadow: 0 0 10px rgba(255, 184, 0, 0);
        }

.star-anim-trigger.animate span {
            opacity: 1;
            transform: scale(1);
            text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
        }

.star-anim-trigger.animate span:nth-child(1) { transition-delay: 0.1s; }

.star-anim-trigger.animate span:nth-child(2) { transition-delay: 0.2s; }

.star-anim-trigger.animate span:nth-child(3) { transition-delay: 0.3s; }

.star-anim-trigger.animate span:nth-child(4) { transition-delay: 0.4s; }

.star-anim-trigger.animate span:nth-child(5) { transition-delay: 0.5s; }

/* bar anim (shared) */

.scroll-animate-bar {
            width: 0% !important;
            transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

.scroll-animate-bar.animate {
            width: var(--target-width) !important;
        }

.basket-login-prompt p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 32px;
        }

.login-fivem-btn {
            background: #fff;
            color: #000 !important;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            width: 100%;
            max-width: 280px;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s, background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.login-fivem-btn:hover {
            transform: translateY(-2px);
            background: #f0f0f0;
        }

.login-footer-info {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            width: 100%;
        }

.login-footer-info p {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin: 0;
        }

/* Loading Spinner */

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

.basket-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-top-color: var(--accent-color);
            border-radius: 50%;
            animation: basket-spin 0.6s linear infinite;
        }

.basket-spinner.dark {
            border-color: rgba(0, 0, 0, 0.05);
            border-top-color: var(--accent-color);
        }

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

html {
            overflow-x: hidden;
            width: 100%;
        }

body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow-x: clip;
            width: 100%;
        }

#bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -10;
            pointer-events: none;
            display: block;
            background-image:
                linear-gradient(rgba(var(--accent-rgb), 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(var(--accent-rgb), 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% -20%, rgba(var(--accent-rgb), 0.15), transparent 70%);
            z-index: -9;
            pointer-events: none;
        }

a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

/* promo p3 — slim horizontal bar */

.p3 {
            position: relative;
            background: #080808;
            min-height: 48px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2005;
            overflow: hidden;
            border: none !important;
            box-shadow: none !important;
        }

.p3::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1000px;
            height: 100%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.25), transparent 70%);
            opacity: 0.3;
            animation: promoPulse 4s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
        }

@keyframes promoPulse {
            0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
        }

.p3::before {
            content: '';
            position: absolute;
            inset: 0;
            /* Side Darkening Vignette Only */
            background: linear-gradient(90deg, #080808 0%, transparent 20%, transparent 80%, #080808 100%);
            pointer-events: none;
            z-index: 2;
        }

.p3-inner {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 30px;
            max-width: 1400px;
            width: 100%;
            height: 48px;
        }

.p3-row-top {
            display: flex;
            align-items: center;
            gap: 12px;
        }

.p3-icon {
            color: var(--bar-accent, var(--accent-color));
            display: flex;
            align-items: center;
        }

.p3-text {
            font-size: 14px;
            font-weight: 800;
            color: var(--bar-text, #fff);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-shadow: 0 0 15px rgba(var(--accent-rgb), 0.3);
            line-height: 1.4;
        }

.p3-row-bottom {
            display: flex;
            align-items: center;
            gap: 20px;
        }

.p3-text {
            font-size: 13px;
            font-weight: 700;
            color: var(--bar-text, #fff);
            letter-spacing: 0.02em;
        }

.p3-code {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bar-box-bg, rgba(var(--accent-rgb), 0.1));
            border: 1px solid var(--bar-accent, rgba(var(--accent-rgb), 0.3));
            padding: 5px 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s var(--ease-out-cubic);
        }

.p3-code:hover {
            background: var(--bar-box-bg, rgba(var(--accent-rgb), 0.15));
            border-color: var(--bar-accent, var(--accent-color));
            transform: translateY(-1px);
        }

.p3-code-label {
            font-size: 10px;
            font-weight: 800;
            color: var(--bar-text2, rgba(255, 255, 255, 0.4));
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

.p3-code-val {
            font-size: 15px;
            font-weight: 900;
            color: var(--bar-text, #fff);
            letter-spacing: 0.05em;
        }

.p3-timer {
            display: flex;
            align-items: center;
            gap: 8px;
        }

.p3-timer .t-block {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            padding: 4px 10px;
            min-width: 44px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

.p3-timer .t-val {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }

.p3-timer .t-lbl {
            font-size: 8px;
            text-transform: uppercase;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.05em;
        }

.timer-sep {
            display: none;
            /* No separator needed for this block style */
        }

.p3-timer {
            display: flex;
            align-items: center;
            gap: 3px;
        }

.p3-timer .t-block {
            border-radius: 4px;
            padding: 3px 6px;
        }

.promo-wrap {
            position: relative;
            z-index: 2005;
        }

.n1 {
            background: rgba(13, 13, 13, .85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, .04);
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: sticky;
            top: 0;
            z-index: 2000;
            width: 100%;
            transition: background 0.3s;
        }

.n-cont {
            max-width: 1750px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            height: 100%;
        }

.n1-menu {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }

@media (max-width: 1300px) {
  .n1-menu {
                display: none !important;
            }
}

.n1-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
            justify-self: start;
        }

@media (min-width: 1101px) {
  .n1-brand {
                padding-right: 0;
                /* No longer need absolute buffer */
            }
}

.n1-brand-div {
            width: 1px;
            height: 22px;
            background: rgba(255, 255, 255, .15)
        }

.n1-logo-box {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center
        }

.menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 2999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s var(--ease-out-cubic);
        }

.menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

.sidebar-header,
.sidebar-footer {
            display: none !important;
        }

.n1-link {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, .6);
            letter-spacing: .03em;
            transition: color .2s;
            text-decoration: none
        }

.n1-link:hover,
.n1-link.on {
            color: #fff
        }

.n1-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            justify-self: end;
        }

.n1-socials {
            display: flex;
            align-items: center;
            gap: 18px;
            padding-right: 18px;
            border-right: 1px solid rgba(255, 255, 255, .12);
            height: 28px
        }

.n1-soc {
            color: rgba(255, 255, 255, .5);
            transition: all .2s;
            display: flex;
            align-items: center
        }

.n1-soc:hover {
            color: #fff;
            transform: translateY(-1px)
        }

.n1-soc svg {
            width: 24px;
            height: 24px
        }

.n1-currency {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            padding: 5px 12px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s;
            color: #fff;
        }

.n1-currency:hover {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .18)
        }

.currency-selector {
            position: relative;
            display: flex;
            align-items: center;
        }

.currency-dropdown {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            background: #0d0d0d;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 10px;
            min-width: 210px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s var(--ease-out-cubic);
            z-index: 2100;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

.currency-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

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

.curr-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 36px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 8px;
            font-size: 11px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.2s;
            text-decoration: none !important;
        }

.curr-btn:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            transform: translateY(-2px);
        }

.curr-btn.active {
            background: #fff;
            color: #000;
            border-color: #fff;
        }

.n1-cart {
            color: #fff;
            cursor: pointer;
            transition: all .2s;
            position: relative;
            display: flex;
            align-items: center;
        }

.n1-cart:hover {
            transform: translateY(-1px);
            opacity: .8
        }

.n1-cart svg {
            width: 20px;
            height: 20px
        }

.n1-cart-dot {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 8px;
            height: 8px;
            background: var(--accent-color);
            border-radius: 50%;
            border: 2px solid #080808
        }

.n1-login {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: #000;
            padding: 7px 20px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            transition: all .25s;
            white-space: nowrap
        }

.n1-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, .2)
        }

.n1-login svg {
            width: 16px;
            height: 16px
        }

/* Mobile Menu */

.n1-mobile-btn {
            display: none;
            color: #fff;
            background: transparent;
            border: none;
            padding: 8px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: opacity 0.2s;
        }

.n1-mobile-btn:active {
            opacity: 0.6;
        }

/* 1080p scale-down — promo bar + navbar slightly smaller for 1920px screens. 2K/4K stay at base size. */

@media (min-width: 1101px) and (max-width: 1920px) {
/* Promo bar */

  .p3 { min-height: 40px; padding: 0 16px; }

  .p3-inner { height: 40px; gap: 22px; max-width: 1300px; }

  .p3-icon svg { width: 18px; height: 18px; }

  .p3-row-top { gap: 10px; }

  .p3-row-bottom { gap: 14px; }

  .p3-text { font-size: 12px; letter-spacing: 0.04em; }

  .p3-code { padding: 4px 12px; gap: 8px; border-radius: 7px; }

  .p3-code-label { font-size: 9px; }

  .p3-code-val { font-size: 13px; }

  .p3-code svg { width: 12px; height: 12px; }

  .p3-timer { gap: 4px; }

  .p3-timer .t-block { padding: 3px 7px; min-width: 36px; border-radius: 4px; }

  .p3-timer .t-val { font-size: 12px; }

  .p3-timer .t-lbl { font-size: 7px; }

/* Navbar */

  .n1 { height: 60px; }

  .n-cont { max-width: 1500px; padding: 0 32px; }

  .n1-brand { font-size: 16px; gap: 10px; letter-spacing: 0.06em; }

  .n1-brand-div { height: 18px; }

  .n1-logo-box { width: 24px; height: 24px; }

  .n1-menu { gap: 26px; }

  .n1-link { font-size: 13px; }

  .n1-actions { gap: 12px; }

  .n1-socials { gap: 14px; padding-right: 14px; height: 24px; }

  .n1-soc svg { width: 20px; height: 20px; }

  .n1-currency { font-size: 11px; padding: 4px 10px; gap: 5px; }

  .n1-cart svg { width: 18px; height: 18px; }

  .n1-login { padding: 6px 16px; font-size: 12px; gap: 6px; }

  .n1-login svg { width: 14px; height: 14px; }
}

@media (max-width: 1450px) {
  .n1-socials {
                display: none !important;
            }
}

@media (max-width: 1300px) {
  .n1 {
                height: 64px;
                top: 0 !important;
                position: sticky !important;
                z-index: 2000;
                background: rgba(8, 8, 8, 0.85);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

  .n-cont {
                display: grid;
                grid-template-columns: auto 1fr auto;
                align-items: center;
                padding: 0 20px;
                height: 100%;
                gap: 20px;
                position: relative;
            }

  .n1-mobile-btn {
                display: flex !important;
                grid-column: 1;
                justify-self: start;
                width: 40px;
                height: 40px;
                background: transparent;
                border: none;
            }

  .n1-brand {
                grid-column: 2;
                display: flex !important;
                align-items: center;
                gap: 12px;
                margin: 0;
                padding: 0;
                font-size: 15px;
                justify-self: start;
            }

  .n1-brand-div {
                display: block !important;
                width: 1px;
                height: 16px;
                background: rgba(255, 255, 255, 0.1);
            }

  .n1-logo-box {
                display: flex !important;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                width: 32px;
                height: 32px;
                border-radius: 8px;
            }

  .n1-currency,
  .n1-login {
                display: none !important;
            }

  .n1-cart {
                grid-column: 3;
                justify-self: end;
                display: flex !important;
                color: #fff;
            }

/* ===== MOBILE DRAWER (NOIR LOGIC) ===== */

  .mobile-drawer-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.5);
                z-index: 2900;
                backdrop-filter: blur(8px);
                transition: all 0.4s ease;
            }

  .mobile-drawer-overlay.active {
                display: block;
            }

  .mobile-drawer {
                position: fixed;
                top: 0;
                left: -100%;
                width: min(300px, 92vw);
                height: 100%;
                background: rgba(10, 10, 12, 0.95);
                backdrop-filter: blur(25px);
                z-index: 3000;
                display: flex;
                flex-direction: column;
                transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
                overflow: hidden;
                box-shadow: 20px 0 60px rgba(0, 0, 0, 0.6);
                border-right: 1px solid rgba(255, 255, 255, 0.05);
            }

  .mobile-drawer.active {
                left: 0;
            }

  .mobile-drawer-header {
                height: 72px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

  .mobile-drawer-close,
  .mobile-drawer-brand,
  .mobile-drawer-login-btn {
                opacity: 0;
                transform: translateY(-10px);
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            }

  .mobile-drawer.active .mobile-drawer-close,
  .mobile-drawer.active .mobile-drawer-brand,
  .mobile-drawer.active .mobile-drawer-login-btn {
                opacity: 1;
                transform: translateY(0);
            }

  .mobile-drawer.active .mobile-drawer-close {
                transition-delay: 0.1s;
            }

  .mobile-drawer.active .mobile-drawer-brand {
                transition-delay: 0.2s;
            }

  .mobile-drawer.active .mobile-drawer-login-btn {
                transition-delay: 0.3s;
            }

  .mobile-drawer-close {
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                color: #fff;
                width: 36px;
                height: 36px;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }

  .mobile-drawer-brand {
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-weight: 800;
                font-size: 16px;
                color: #fff;
                letter-spacing: -0.02em;
            }

  .mobile-drawer-login-btn {
                background: rgba(var(--accent-rgb), 0.1);
                border: 1px solid rgba(var(--accent-rgb), 0.2);
                color: var(--accent-color);
                font-size: 11px;
                font-weight: 800;
                padding: 6px 14px;
                border-radius: 20px;
                text-decoration: none;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                transition: all 0.3s ease !important;
            }

  .mobile-drawer-login-btn:hover {
                background: var(--accent-color);
                color: #fff;
                transform: scale(1.05) !important;
            }

  .mobile-drawer-nav {
                padding: 10px 0;
                display: flex;
                flex-direction: column;
                gap: 5px;
            }

/* Staggered Animations */

@keyframes drawerLinkFadeIn {
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

  .mobile-drawer-body {
                flex: 1;
                overflow-y: auto;
                padding: 20px 0;
            }

  .mobile-drawer-nav {
                display: flex;
                flex-direction: column;
            }

  .mobile-drawer-nav a {
                padding: 16px 24px;
                font-size: 18px;
                font-weight: 800;
                color: rgba(255, 255, 255, 0.4);
                text-decoration: none;
                transition: all 0.2s ease;
            }

  .mobile-drawer-nav a.on {
                color: #fff;
                background: rgba(255, 255, 255, 0.03);
            }

  .mobile-drawer-footer {
                padding: 24px;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

  .mobile-drawer-socials {
                display: flex;
                gap: 12px;
            }

  .mobile-drawer-soc {
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.08);
                width: 44px;
                height: 44px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: rgba(255, 255, 255, 0.5);
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                text-decoration: none;
                position: relative;
                overflow: hidden;
            }

  .mobile-drawer-soc::after {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
                transform: rotate(45deg);
                transition: 0.6s;
                opacity: 0;
            }

  .mobile-drawer-soc:hover::after {
                left: 100%;
                opacity: 1;
            }

  .mobile-drawer-soc:hover {
                background: rgba(var(--accent-rgb), 0.1);
                border-color: rgba(var(--accent-rgb), 0.4);
                color: var(--accent-color);
                transform: translateY(-5px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(var(--accent-rgb), 0.2);
            }

  .mobile-drawer-soc svg {
                width: 22px;
                height: 22px;
                stroke-width: 1.8;
                filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
            }
}

@media (min-width: 992px) {
  .mobile-drawer,
  .mobile-drawer-overlay {
                display: none !important;
            }
}

.main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

/* footer (f3 — grid) */

.f3 {
            background: #080808;
            padding: 40px 32px 30px;
        }

.f3-inner {
            max-width: 1400px;
            margin: 0 auto
        }

.f3-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px
        }

.f3-brand {
            display: flex;
            flex-direction: column;
            gap: 20px
        }

.f3-logo {
            font-family: 'Syne', sans-serif;
            font-size: 24px;
            font-weight: 900;
            color: #fff;
            letter-spacing: .05em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px
        }

.f3-logo span {
            color: var(--accent-color)
        }

.f3-logo img {
            height: 32px;
            width: auto
        }

.f3-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, .35);
            line-height: 1.6;
            max-width: 280px
        }

.f3-socials {
            display: flex;
            gap: 12px;
            margin-top: 10px
        }

.f3-soc {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .3);
            transition: all .3s
        }

.f3-soc:hover {
            background: var(--accent-glow);
            border-color: var(--accent-color);
            color: #fff;
            transform: translateY(-3px)
        }

.f3-col-title {
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .15em;
            color: var(--accent-color);
            margin-bottom: 30px;
            position: relative;
        }

.f3-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px
        }

.f3-link {
            font-size: 14px;
            color: rgba(255, 255, 255, .4);
            transition: all .2s;
            text-decoration: none !important;
            border: none !important;
        }

.f3-link:hover {
            color: #fff;
            transform: translateX(4px);
            display: inline-block;
            text-decoration: none !important;
        }

.f3-bottom {
            border-top: 1px solid rgba(255, 255, 255, .03);
            padding-top: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px
        }

.f3-powered {
            display: flex;
            align-items: center;
            gap: 30px;
            opacity: .4;
            transition: opacity .3s
        }

.f3-powered:hover {
            opacity: .8
        }

.f3-pow-text {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .2em;
            color: #fff
        }

.f3-pow-logo {
            height: 22px;
            width: auto;
            color: #fff
        }

.f3-copy {
            font-size: 11px;
            color: rgba(255, 255, 255, .1);
            text-align: center;
            max-width: 800px;
            line-height: 1.6
        }

@media(max-width:1100px) {
  .f3-grid {
                grid-template-columns: 1fr repeat(2, 1fr);
                gap: 50px
            }
}

@media(max-width:600px) {
  .f3-grid {
                grid-template-columns: repeat(2, 1fr)
            }

  .f3-brand {
                grid-column: span 2
            }

  .f3-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center
            }
}

/* basket sidebar */

.basket-sidebar-custom {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 400px;
            max-width: 100%;
            background: #080808;
            z-index: 2005;
            transform: translateX(100%);
            transition: 0.4s var(--ease-out-cubic);
            border-left: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
        }

.basket-sidebar-custom.active {
            transform: translateX(0);
        }

.basket-sidebar-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2004;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

.basket-sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

.basket-sidebar-header {
            padding: 32px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.basket-sidebar-custom,
#basket-content-target,
.basket-sidebar-content,
.basket-sidebar-custom * {
            scrollbar-width: none !important;
            -ms-overflow-style: none !important;
        }

.basket-sidebar-custom::-webkit-scrollbar,
#basket-content-target::-webkit-scrollbar,
.basket-sidebar-content::-webkit-scrollbar,
.basket-sidebar-custom *::-webkit-scrollbar {
            display: none !important;
            width: 0 !important;
            height: 0 !important;
        }

#basket-content-target,
.basket-sidebar-content {
            overflow-y: auto !important;
            overflow-x: hidden !important;
        }

/* processing state */

.pcard-btn:disabled,
.feat-cart-btn:disabled,
.f8-btn:disabled,
.pkg-btn-add:disabled {
            opacity: 0.55 !important;
            cursor: not-allowed !important;
            filter: saturate(0.7) brightness(0.9);
            transform: scale(0.98) !important;
            pointer-events: none;
        }

/* Hide page scrollbar when basket/drawer is open */

html.no-scroll,
html.no-scroll body {
            overflow: hidden !important;
            scrollbar-width: none !important;
            -ms-overflow-style: none !important;
        }

html.no-scroll::-webkit-scrollbar,
html.no-scroll body::-webkit-scrollbar {
            display: none !important;
            width: 0 !important;
            height: 0 !important;
            background: transparent !important;
        }

/* scrollbar */

html {
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
        }

::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

::-webkit-scrollbar-track {
            background: transparent;
        }

::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.18);
            border-radius: 8px;
            border: 2px solid transparent;
            background-clip: padding-box;
        }

::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.32);
            background-clip: padding-box;
            border: 2px solid transparent;
        }

::-webkit-scrollbar-button {
            display: none;
            width: 0;
            height: 0;
        }

::-webkit-scrollbar-corner {
            background: transparent;
        }

body.no-scroll {
            position: fixed !important;
            top: var(--scroll-top, 0);
            left: 0;
            right: 0;
            width: 100%;
            overflow: hidden !important;
        }

/* bundle banner — frosted glass (v5) */

/* achievements (v1 — hex red) */

.achievements-section {
            position: relative;
            min-height: 440px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 24px;
            background: transparent;
            margin-top: 40px;
        }

.achievements-section canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

.v1-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            max-width: 1100px;
        }

.v1-title {
            font-size: clamp(26px, 1.7vw, 38px);
            font-weight: 800;
            letter-spacing: -.02em;
            margin-bottom: 8px;
            color: #fff;
        }

.v1-title span {
            color: var(--accent-color);
            text-shadow: 0 0 40px var(--accent-glow);
        }

.v1-sub {
            font-size: 15px;
            color: #fff;
            max-width: 520px;
            margin: 0 auto 60px;
        }

.v1-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 20px;
        }

.v1-item {
            position: relative;
            padding: 20px;
        }

.v1-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -60%);
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            filter: blur(28px);
            opacity: 0.3;
        }

.v1-num-wrap {
            display: inline-flex;
            align-items: baseline;
            gap: 2px;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

.v1-num {
            font-size: clamp(40px, 2.6vw, 60px);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -.04em;
            color: #fff;
        }

.v1-trend {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 800;
            color: var(--accent-color);
            background: rgba(var(--accent-rgb), 0.08);
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 12px;
            border: 1px solid rgba(var(--accent-rgb), 0.15);
            text-shadow: 0 0 10px var(--accent-glow);
        }

.v1-trend i {
            width: 12px;
            height: 12px;
            stroke-width: 3px;
        }

.v1-item.variant-red .v1-num {
            color: var(--accent-color);
            text-shadow: 0 0 50px var(--accent-glow);
        }

.v1-item.variant-red .v1-suf {
            color: var(--accent-color);
        }

.v1-item.variant-red .v1-label {
            color: var(--accent-color);
            opacity: .85;
        }

.v1-item.variant-red .v1-glow {
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
        }

.v1-item.variant-red .v1-trend {
            color: var(--accent-color);
            background: rgba(var(--accent-rgb), 0.08);
            border-color: rgba(var(--accent-rgb), 0.15);
            text-shadow: 0 0 10px var(--accent-glow);
        }

.v1-item.variant-white .v1-num {
            color: #fff;
            text-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
        }

.v1-item.variant-white .v1-suf {
            color: #fff;
        }

.v1-item.variant-white .v1-label {
            color: rgba(255, 255, 255, 0.6);
            opacity: 1;
        }

.v1-item.variant-white .v1-glow {
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
        }

.v1-item.variant-white .v1-trend {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
        }

.v1-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .15em;
            color: rgba(255, 255, 255, .35);
            position: relative;
            z-index: 1;
        }

.v1-suf {
            font-size: clamp(30px, 4.5vw, 44px);
            font-weight: 900;
            color: #fff;
        }

/* reviews */

.reviews-section {
            padding: 100px 24px;
            background: transparent;
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.r8-top-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

.r8-score {
            font-size: clamp(56px, 3.6vw, 84px);
            font-weight: 950;
            line-height: 0.9;
            letter-spacing: -0.05em;
            color: #fff;
            margin-right: 16px;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
        }

.r8-score-right {
            text-align: left;
        }

.r8-stars {
            font-size: 26px;
            color: var(--accent-color);
            letter-spacing: 3px;
            margin-bottom: 10px;
            text-shadow: 0 0 20px var(--accent-glow);
        }

.r8-based {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 600;
        }

.accent-text {
            color: var(--accent-color);
            text-shadow: 0 0 30px rgba(var(--accent-rgb), 0.4);
            display: inline-block;
        }

.r8-bar-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 200px;
        }

.r8-bar-row {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 16px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
        }

.r8-bar-track {
            flex: 1;
            height: 12px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            overflow: hidden;
            min-width: 200px;
        }

.r8-bar-fill {
            height: 100%;
            background: var(--accent-color);
            border-radius: 20px;
            box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(var(--accent-rgb), 0.4);
        }

.r1-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 24px;
            padding: 32px;
            transition: transform 0.1s ease-out, border-color 0.3s;
            transform-style: preserve-3d;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

.r1-card:hover {
            border-color: var(--accent-color);
        }

.r1-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 80%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

.r1-card:hover::before {
            opacity: 0.15;
        }

.r1-user {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
            position: relative;
        }

.r1-av {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 800;
            color: #fff;
        }

.r1-name {
            font-size: 15px;
            font-weight: 800;
            color: #fff;
        }

.r1-stars {
            display: flex;
            gap: 3px;
            color: var(--accent-color);
            margin-bottom: 12px;
            font-size: 14px;
        }

.r1-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 24px;
            position: relative;
        }

.r1-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.r1-badge i {
            stroke: var(--accent-color);
        }

@media (max-width: 992px) {
  .r8-top-row {
                gap: 32px;
            }
}

@media (max-width: 768px) {
  .v1-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

  .v1-item {
                padding: 0;
            }
}

@media (max-width: 1100px) {
  .p3-inner {
                flex-direction: column;
                height: auto;
                padding: 15px 0;
                gap: 15px;
            }

  .p3-row-top {
                display: flex !important;
                align-items: center;
                justify-content: center;
                gap: 12px;
                text-align: center;
                width: 100%;
            }

  .p3-icon {
                flex-shrink: 0;
            }

  .p3-text {
                font-size: 11px;
                text-align: center;
                max-width: 280px;
                /* Force nice wrapping like Image 1 */
            }

  .p3-row-bottom {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }

  .n1 {
                top: 0;
                /* On mobile, let it stick directly if needed or adjust per preference */
            }
}

/* end @media max-width:1100px */

/* mobile overflow — fix for safari ios */

@media (max-width: 768px) {
  html,
  body {
                overflow-x: clip !important;
                width: 100% !important;
                max-width: 100vw !important;
            }

  .promo-wrap,
  .p3,
  .p3-inner {
                max-width: 100vw !important;
                overflow: hidden !important;
            }

  .p3-inner {
                padding: 15px 12px !important;
            }

  .p3-text {
                font-size: 10px !important;
                max-width: 90vw;
                word-break: break-word;
                white-space: normal;
            }

  .n1,
  .n-cont {
                max-width: 100vw !important;
            }

  .n-cont {
                padding: 0 12px !important;
            }

  .n1-brand {
                font-size: 14px;
                gap: 6px;
            }

  .n1-socials,
  .n1-currency,
  .currency-selector {
                display: none !important;
            }

  .main-content {
                max-width: 100vw !important;
                overflow-x: hidden !important;
            }
}

/* page preloader */

#lxy-preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999999;
        background: #050507;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 32px;
        transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.7s cubic-bezier(0.65, 0, 0.35, 1);
        overflow: hidden;
    }

#lxy-preloader::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.18), transparent 60%);
        pointer-events: none;
    }

body.pl-no-scroll::-webkit-scrollbar {
        display: none;
    }

body.pl-no-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

#lxy-preloader.hide {
        opacity: 0;
        visibility: hidden;
    }

.lxy-pl-logo-wrap {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: lxyPlPulse 2s ease-in-out infinite;
    }

.lxy-pl-logo-wrap img {
        height: 56px;
        width: auto;
        filter: drop-shadow(0 0 30px rgba(var(--accent-rgb), 0.6));
    }

.lxy-pl-text {
        font-size: 28px;
        font-weight: 900;
        letter-spacing: -0.02em;
        color: #fff;
        text-shadow: 0 0 30px rgba(var(--accent-rgb), 0.5);
    }

.lxy-pl-bar {
        position: relative;
        z-index: 2;
        width: 220px;
        height: 2px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 2px;
        overflow: hidden;
    }

.lxy-pl-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 40%;
        background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
        animation: lxyPlSlide 1.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    }

@keyframes lxyPlPulse {
        0%, 100% { transform: scale(1); opacity: 0.85; }
        50% { transform: scale(1.05); opacity: 1; }
    }

@keyframes lxyPlSlide {
        0% { left: -40%; }
        100% { left: 100%; }
    }

@keyframes lxy-spin {
        0% { transform: rotate(0deg) translateZ(0); }
        100% { transform: rotate(360deg) translateZ(0); }
    }

/* basket sidebar — inner items (from second <style> in layout.html) */

.lxy-pay {
                    margin-top: 36px;
                    padding-top: 28px;
                    padding-bottom: 36px;
                    border-top: 1px solid rgba(255, 255, 255, 0.05);
                    text-align: center;
                }

.lxy-pay-label {
                    font-size: 11px;
                    font-weight: 800;
                    letter-spacing: 0.3em;
                    color: rgba(255, 255, 255, 0.35);
                    text-transform: uppercase;
                    margin-bottom: 16px;
                }

.lxy-pay-row {
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                    flex-wrap: wrap;
                    justify-content: center;
                }

.lxy-pay-icon {
                    height: 32px;
                    min-width: 50px;
                    padding: 0 12px;
                    border-radius: 8px;
                    background: rgba(255, 255, 255, 0.04);
                    border: 1px solid rgba(255, 255, 255, 0.08);
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    transition: 0.3s;
                }

.lxy-pay-icon:hover {
                    background: rgba(255, 255, 255, 0.08);
                    border-color: rgba(255, 255, 255, 0.15);
                    transform: translateY(-2px);
                }

.lxy-pay-icon svg {
                    height: 16px;
                    width: auto;
                }

.lxy-pay-more {
                    height: 32px;
                    padding: 0 14px;
                    border-radius: 8px;
                    background: rgba(var(--accent-rgb), 0.12);
                    color: var(--accent-color);
                    font-size: 12px;
                    font-weight: 800;
                    display: inline-flex;
                    align-items: center;
                    border: 1px solid rgba(var(--accent-rgb), 0.25);
                    transition: 0.3s;
                }

.lxy-pay-more:hover {
                    background: rgba(var(--accent-rgb), 0.2);
                    transform: translateY(-2px);
                }

/* purchase notifications (from third <style> in layout.html) */

.pn-stack {
            position: fixed;
            left: 24px;
            bottom: 24px;
            z-index: 9998;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
            max-width: calc(100vw - 48px);
        }

.pn-toast {
            pointer-events: auto;
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 320px;
            max-width: 420px;
            padding: 14px 44px 14px 14px;
            background: rgba(18, 18, 24, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            backdrop-filter: blur(22px) saturate(140%);
            -webkit-backdrop-filter: blur(22px) saturate(140%);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
            font-family: 'Inter', sans-serif;
            color: #e6e6ea;
            position: relative;
            transform: translateX(-130%);
            opacity: 0;
            transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
        }

.pn-toast.pn-show { transform: translateX(0); opacity: 1; }

.pn-toast.pn-hide { transform: translateX(-130%); opacity: 0; }

.pn-avatar {
            flex-shrink: 0;
            width: 44px; height: 44px;
            border-radius: 12px;
            background: var(--accent-color, #ef4444);
            color: #0a0a0c;
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 19px;
            box-shadow: 0 0 16px rgba(var(--accent-rgb, 239,68,68), 0.25);
            opacity: 0.92;
        }

.pn-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; line-height: 1.35; }

.pn-line1 { font-size: 13.5px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pn-line1 .pn-product { color: var(--accent-color, #ef4444); font-weight: 700; }

.pn-line2 { font-size: 11.5px; color: rgba(255,255,255,0.5); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pn-line2 .pn-dot { margin: 0 6px; opacity: 0.55; }

.pn-close {
            position: absolute; top: 8px; right: 8px;
            width: 22px; height: 22px;
            display: flex; align-items: center; justify-content: center;
            background: transparent; border: none;
            color: rgba(255,255,255,0.45);
            cursor: pointer; border-radius: 6px;
            font-size: 16px; line-height: 1; padding: 0;
            transition: background .15s ease, color .15s ease;
        }

.pn-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

@media (max-width: 600px) {
  .pn-stack { left: 12px; bottom: 12px; }

  .pn-toast { min-width: 0; width: calc(100vw - 24px); max-width: calc(100vw - 24px); }
}
