/* =========================================
   TRENDZ - PREMIUM DESIGN SYSTEM
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --bg-body: #050505;
    --bg-surface: #0a0a0a;
    --primary: #FF2D2D;
    /* Brand Red */
    --primary-glow: rgba(255, 45, 45, 0.5);
    --primary-gold: #FF5555;
    /* Light red accent */
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

/* Custom Selection Color */
::selection {
    background: var(--primary);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    position: relative;
    /* Body Font */
}

h1,
h2,
h3,
h4,
.logo,
.btn,
.nav-links a,
.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    /* Heading Font */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

/* Custom Cursor */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2147483647;
}

#cursor-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 45, 45, 0.3);
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2147483646;
    transition: width 0.2s, height 0.2s;
}

body:hover #cursor-blur {
    opacity: 1;
}

/* Cursor Expansion Targets */
a:hover~#cursor-blur,
button:hover~#cursor-blur,
.faq-question:hover~#cursor-blur,
.bento-item:hover~#cursor-blur,
.product-card:hover~#cursor-blur,
.review-card:hover~#cursor-blur,
.icon-btn:hover~#cursor-blur,
.faq-item:hover~#cursor-blur {
    width: 70px;
    height: 70px;
    background: rgba(255, 45, 45, 0.15);
}

html {
    scroll-behavior: auto;
}

/* =========================================
   UTILITIES
   ========================================= */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient-chrome {
    background: linear-gradient(to right, #ffffff 20%, #FF2D2D 50%, #FF5555 80%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--primary-glow), 0 0 10px white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */

/* =========================================
   NAVBAR
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.6s ease-out,
                backdrop-filter 0.6s ease-out,
                -webkit-backdrop-filter 0.6s ease-out,
                border-bottom-color 0.6s ease-out,
                box-shadow 0.6s ease-out;
}

header .navbar.glass-panel {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid transparent;
    box-shadow: none;
    transition: background 0.6s ease-out,
                backdrop-filter 0.6s ease-out,
                -webkit-backdrop-filter 0.6s ease-out,
                border-color 0.6s ease-out,
                box-shadow 0.6s ease-out;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 45, 45, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

header.scrolled .navbar.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.navbar {
    width: 100%;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: var(--transition-fast);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo-image {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(255, 45, 45, 0.35));
}

.logo-image--animated {
    border: 1px solid rgba(255, 45, 45, 0.35);
    background: #050505;
}

.logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.logo-tag {
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 4px;
}

.logo:hover .logo-image {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px var(--primary-glow));
}

.logo:hover {
    opacity: 0.95;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a i {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-links a:hover i,
.nav-links a.active i {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.account-nav-button {
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255, 45, 45, 0.38);
    border-radius: 10px;
    background: rgba(255, 45, 45, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.account-nav-button i { color: var(--primary-gold); }
.account-nav-button:hover,
.account-nav-button:focus-visible {
    color: #090700;
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 0 18px rgba(255, 45, 45, .25);
    transform: translateY(-1px);
}
.account-nav-button:hover i,
.account-nav-button:focus-visible i { color: #090700; }
.account-nav-button:focus-visible { outline: 3px solid rgba(255, 45, 45, .35); outline-offset: 2px; }

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}

.icon-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.hamburger-menu {
    display: none !important;
    border: none;
    outline: none;
}

.mobile-menu {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block !important;
    }
    
    .logo-image {
        height: 42px;
        width: 42px;
    }

    .logo-tag {
        display: none;
    }

    .account-nav-button {
        width: 40px;
        min-width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
    }

    .account-nav-button span { display: none; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 110px;
    padding-bottom: 60px;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(255, 45, 45, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(120, 0, 0, 0.35) 0%, transparent 45%),
        linear-gradient(160deg, #050000 0%, #120404 45%, #050505 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.05);
    filter: saturate(1.2) contrast(1.08);
    opacity: 0.7;
    animation: heroPulse 14s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    from { transform: scale(1.04); opacity: 0.65; }
    to { transform: scale(1.1); opacity: 0.78; }
}

/* Keep full height on mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(5, 0, 0, 0.55) 0%, rgba(8, 0, 0, 0.72) 55%, rgba(5, 5, 5, 0.88) 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -2px;
    color: #ffffff;
    text-transform: none;
    animation: heroTitleFadeIn 1s ease-out;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: text-shadow 0.3s ease;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-highlight {
    position: relative;
    color: var(--primary);
    font-weight: 800;
    display: inline-block;
    padding: 0 8px;
    vertical-align: baseline;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 12px);
    height: calc(100% + 6px);
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    animation: highlightPulse 2s ease-in-out infinite;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 18px);
    height: calc(100% + 12px);
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: highlightPulse 2s ease-in-out infinite 0.3s;
}

@keyframes highlightPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}

.hero h1:hover .hero-highlight {
    color: var(--primary-gold);
}

.hero h1:hover .hero-highlight::before,
.hero h1:hover .hero-highlight::after {
    border-color: var(--primary-gold);
}

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

.hero-tagline {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 45, 45, 0.5);
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: 'Space Grotesk', sans-serif;
    animation: taglineFadeIn 1s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
    background: rgba(255, 45, 45, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 45, 0.2), transparent);
    animation: taglineShine 3s ease-in-out infinite;
}

@keyframes taglineFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes taglineShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

/* =========================================
   HERO STATISTICS BAR
   ========================================= */
.hero-stats-bar {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 50px 0;
    border-top: 2px solid rgba(255, 45, 45, 0.3);
    border-bottom: 2px solid rgba(255, 45, 45, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.8;
}

.hero-stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.8;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 45, 45, 0.03);
    border: 1px solid rgba(255, 45, 45, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 45, 45, 0.08);
    border-color: rgba(255, 45, 45, 0.4);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.2);
}

.hero-stat-item:hover::before {
    opacity: 1;
}

.hero-stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 10px rgba(255, 45, 45, 0.5));
}

.hero-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 45, 45, 0.5);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Mobile Hero Stats */
@media (max-width: 768px) {
    .hero-stats-bar {
        padding: 30px 0;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hero-stat-item {
        padding: 20px 15px;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

    .hero-stat-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }
}

/* =========================================
   BENTO GRID (FEATURES)
   ========================================= */
.features {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.features .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features .section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.features .section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns for Desktop */
    gap: 20px;
    grid-auto-rows: 250px;
}

.bento-item {
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.bento-item:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.span-2 {
    grid-column: span 2;
}

.bento-icon {
    color: var(--primary);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 45, 45, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.3);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.bento-icon .material-symbols-outlined {
    font-size: 2.5rem;
    width: auto;
    height: auto;
}

.bento-item:hover .bento-icon {
    background: rgba(255, 45, 45, 0.3);
    box-shadow: 0 0 30px rgba(255, 45, 45, 0.5);
}

.bento-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================
   SPLIT BANNER SECTION
   ========================================= */
.split-banner {
    padding: 70px 0 0;
    margin-top: 0;
    background: rgba(5, 5, 5, 0.5);
    position: relative;
    overflow: hidden;
}

.split-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.split-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.split-banner-image-wrapper {
    position: relative;
    height: 400px;
}

.split-banner-content {
    z-index: 2;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.split-banner-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Space Grotesk', sans-serif;
}

.split-banner-slogan {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Space Grotesk', sans-serif;
}

.split-banner-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 550px;
}

.split-banner-text-short {
    margin-bottom: 22px;
    max-width: 420px;
}

.split-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.split-banner-buttons .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.split-banner-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 400px;
    width: 50vw;
    min-width: 300px;
    max-width: 700px;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Was width:110% + object-fit:contain inside an overflow:hidden box, so the
   right ~64px of the artwork (the "CREED" wordmark) got chopped off. Filling
   the box lets object-fit crop evenly instead. */
.banner-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.3) 0%, transparent 50%, rgba(5, 5, 5, 0.1) 100%);
    pointer-events: none;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}


/* =========================================
   VIDEO SHOWCASE
   ========================================= */
.video-showcase {
    padding: 100px 0;
    background: rgba(5, 5, 5, 0.5);
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
    transition: var(--transition-smooth);
}

.video-wrapper:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 45, 45, 0.3);
    transform: translateY(-5px);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
    padding: 120px 0;
    background: rgba(5, 5, 5, 0.3);
    position: relative;
}

.how-it-works .section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.how-it-works .section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: 0 20px 40px rgba(255, 45, 45, 0.2);
}

.step-number {
    position: absolute;
    top: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.5);
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 45, 45, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 15px;
    transition: var(--transition-fast);
    border: 2px solid rgba(255, 45, 45, 0.3);
}

.step-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--primary);
}

.step-card:hover .step-icon {
    background: rgba(255, 45, 45, 0.25);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 45, 45, 0.4);
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   PRODUCTS
   ========================================= */
.products {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .featured-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.featured-product-card {
    display: block;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 682 / 1024;
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.featured-product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.featured-product-card:hover .featured-product-image {
    transform: scale(1.05);
}

.featured-product-image.rainbow-six-all-hue {
    filter: hue-rotate(-150deg);
}


.product-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.product-img-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.product-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--primary);
    transition: var(--transition-fast);
}

.product-img-link:hover .product-img {
    border-bottom-color: var(--primary-gold);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-header {
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--primary-gold);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.buy-btn {
    padding: 10px 24px;
    background: var(--primary);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    font-family: 'Space Grotesk', sans-serif;
}

.buy-btn:hover {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}


/* =========================================
   PRODUCTS PAGE
   ========================================= */
.products-page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.95));
}

.page-header-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    font-family: 'Space Grotesk', sans-serif;
}

.page-header-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.product-filters {
    padding: 40px 0;
    background: rgba(10, 10, 10, 0.5);
    border-bottom: 1px solid rgba(255, 45, 45, 0.1);
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.filter-all-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.filter-games-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: none;
    transition: var(--transition-fast);
    font-family: 'Space Grotesk', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.4);
    transform: translateY(-2px);
}

.products-page {
    padding: 80px 0;
}

.products-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card-page {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card-page:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.product-img-page-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.product-img-page {
    height: 280px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #050505;
}

.product-image-page {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.product-img-page-link:hover .product-image-page {
    transform: scale(1.05);
}

.product-card-page:hover .product-image-page {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.badge-product {
    padding: 5px 12px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.badge-product.badge-new {
    background: rgba(255, 45, 45, 0.2);
    border-color: var(--primary);
    color: var(--primary-gold);
}

.badge-product.badge-sale {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
    font-weight: 700;
}

.product-info-page {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.product-title-page {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.product-description-page {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--primary-gold);
    font-size: 1rem;
}

.star.filled {
    color: var(--primary-gold);
}

.star.half {
    opacity: 0.5;
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.product-meta-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price-page {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-main {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.price-old {
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: line-through;
}

.buy-btn-page {
    padding: 12px 30px;
    background: var(--primary);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
}

.buy-btn-page:hover {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* =========================================
   SUPPORT PAGE
   ========================================= */
.support-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.support-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.support-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.2), rgba(255, 215, 0, 0.2));
    padding: 20px;
    border: 2px solid rgba(255, 45, 45, 0.3);
    box-shadow: 0 0 30px rgba(255, 45, 45, 0.3);
}

.support-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #ffffff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 400;
}

.support-online-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.15), rgba(255, 215, 0, 0.15));
    border: 1px solid rgba(255, 45, 45, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 45, 45, 0.2);
}

.online-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse-online 2s ease-in-out infinite;
}

@keyframes pulse-online {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.support-content-section {
    padding: 80px 0 120px;
}

.support-main-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.support-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-feature-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.support-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.2);
    background: rgba(255, 45, 45, 0.05);
}

.support-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 50%;
    border: 2px solid rgba(255, 45, 45, 0.3);
}

.support-feature-icon i {
    font-size: 32px;
    color: var(--primary);
}

.support-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.support-cta-wrapper {
    margin-top: 50px;
}

.btn-discord-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-discord-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.4);
}

@media (max-width: 768px) {
    .support-title {
        font-size: 2.5rem;
    }

    .support-heading {
        font-size: 2rem;
    }

    .support-features {
        grid-template-columns: 1fr;
    }

    .support-logo {
        width: 100px;
        height: 100px;
    }

    .btn-discord-large {
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
        justify-content: center !important;
    }
}

/* =========================================
   REVIEWS PAGE
   ========================================= */
.reviews-page-section {
    padding: 90px 0 120px;
    background: rgba(5, 5, 5, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.review-card-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.review-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-gold));
    opacity: 0;
    transition: var(--transition-fast);
}

.review-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 45, 45, 0.2);
    background: rgba(255, 45, 45, 0.05);
}

.review-card-large:hover::before {
    opacity: 1;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.3), rgba(255, 215, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 45, 45, 0.5);
    flex-shrink: 0;
}

.reviewer-avatar i {
    font-size: 20px;
    color: var(--primary);
}

.reviewer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
}

.reviewer-info .stars {
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text-large {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
    min-height: 80px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.review-date {
    color: var(--text-muted);
}

.review-product {
    color: var(--primary);
    font-weight: 500;
    background: rgba(255, 45, 45, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.2);
}

.reviews-marquee-section {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #ffffff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

    .review-text-large {
        min-height: auto;
    }
}

/* =========================================
   STATUS PAGE
   ========================================= */
.status-hero {
    padding: 140px 0 60px;
    background: rgba(5, 5, 5, 0.5);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.status-header-left {
    flex: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--primary-gold);
    transform: translateX(-3px);
}

.back-link i {
    font-size: 0.85rem;
}

.status-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.status-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.btn-refresh-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.btn-refresh-status:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 45, 45, 0.3);
}

.btn-refresh-status i {
    transition: transform 0.3s ease;
}

.btn-refresh-status:hover i {
    transform: rotate(180deg);
}

.status-dashboard {
    padding: 60px 0;
    background: rgba(10, 10, 10, 0.3);
}

.status-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.status-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-gold));
    opacity: 0;
    transition: var(--transition-fast);
}

.status-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 45, 45, 0.2);
    background: rgba(255, 45, 45, 0.05);
}

.status-card:hover::before {
    opacity: 1;
}

.status-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.status-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.2), rgba(255, 215, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 45, 45, 0.3);
}

.status-card-icon i {
    font-size: 20px;
    color: var(--primary);
}

.status-card-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.status-card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.status-card-value.status-undetected {
    font-size: 1.8rem;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.status-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-gold));
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(255, 45, 45, 0.5);
}

.status-card-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detection-risk {
    margin: 15px 0;
}

.risk-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.risk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse-online 2s ease-in-out infinite;
}

.product-status-section {
    padding: 80px 0;
    background: rgba(5, 5, 5, 0.3);
}

.product-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.product-status-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.status-legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.legend-updating {
    background: #ffaa00;
    box-shadow: 0 0 10px #ffaa00;
}

.legend-offline {
    background: #ff3333;
    box-shadow: 0 0 10px #ff3333;
}

.product-status-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-status-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.product-status-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.15);
    background: rgba(255, 45, 45, 0.05);
}

.product-status-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-status-info {
    flex: 1;
    min-width: 300px;
}

.product-status-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.product-status-title-row h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.product-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-spoofer {
    background: rgba(255, 45, 45, 0.2);
    color: var(--primary);
    border: 1px solid rgba(255, 45, 45, 0.3);
}

.badge-cheat {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.product-status-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-detail-separator {
    color: rgba(255, 255, 255, 0.2);
}

.product-status-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-online {
    background: #00ff00;
    box-shadow: 0 0 15px #00ff00;
    animation: pulse-online 2s ease-in-out infinite;
}

.status-text {
    font-weight: 600;
    color: #00ff00;
    font-size: 0.95rem;
}

.btn-view-product {
    padding: 10px 20px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-view-product:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 45, 45, 0.3);
}

.status-support-cta {
    padding: 60px 0;
    background: rgba(10, 10, 10, 0.5);
    border-top: 1px solid rgba(255, 45, 45, 0.1);
}

.status-support-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.status-support-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.status-support-text p {
    color: var(--text-muted);
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .status-header h1 {
        font-size: 2.5rem;
    }

    .status-cards-grid {
        grid-template-columns: 1fr;
    }

    .product-status-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-status-right {
        width: 100%;
        justify-content: space-between;
    }

    .status-support-content {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   PRODUCT DETAIL PAGE
   ========================================= */
.product-detail-page {
    padding: 140px 0 100px;
    background: rgba(5, 5, 5, 0.3);
    min-height: 100vh;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.product-detail-image-section {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.product-image-main {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.image-nav-prev {
    left: 15px;
}

.image-nav-next {
    right: 15px;
}

.image-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.product-image-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    background: rgba(10, 10, 10, 0.6);
}

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

.thumbnail.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.3);
}

.thumbnail:hover {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.product-detail-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-detail-header {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -2px;
}

.product-detail-slogan {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-compatibility {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: 12px;
}

.compatibility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.95rem;
}

.compatibility-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars-rating {
    display: flex;
    gap: 4px;
}

.star {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.star.filled {
    color: var(--primary-gold);
}

.rating-text-large {
    color: var(--text-muted);
    font-size: 1rem;
}

.product-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-main-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Space Grotesk', sans-serif;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.quantity-selector label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

#quantity {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    pointer-events: none;
}

.product-variants-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.variants-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.variant-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.variant-card:hover {
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.05);
    transform: translateY(-2px);
}

.variant-card.active {
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.1);
    box-shadow: 0 0 30px rgba(255, 45, 45, 0.2);
}

.variant-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.variant-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.variant-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.variant-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 5px;
}

.product-total-section {
    padding: 30px;
    background: rgba(255, 45, 45, 0.1);
    border: 2px solid var(--primary);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.product-total-section-converting {
    position: relative;
    z-index: 1;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 45, 45, 0.12);
}

.total-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.total-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-purchase-large {
    padding: 12px 28px;
    min-height: 52px;
    font-size: 0.98rem;
    font-weight: 900;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-width: 190px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(255, 45, 45, 0.24);
    line-height: 1;
}

.btn-purchase-large i {
    font-size: 1rem;
}

.btn-purchase-subtext {
    display: none;
}

.product-urgency-stack {
    display: grid;
    gap: 14px;
    margin: 20px 0;
}

.product-trust-proof {
    border-radius: 14px;
    border: 1px solid rgba(255, 45, 45, 0.18);
    background: rgba(255, 255, 255, 0.035);
}

.product-trust-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.product-trust-proof strong {
    color: #fff;
}

.product-addon-mini {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 45, 45, 0.32);
    background: rgba(255, 45, 45, 0.08);
}

.product-addon-mini-copy strong,
.product-addon-mini-copy span {
    display: block;
}

.product-addon-mini-copy strong {
    color: #fff;
}

.product-addon-mini-copy span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-addon-mini-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.product-addon-mini-actions button {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 45, 45, 0.42);
    background: rgba(0, 0, 0, 0.32);
    color: var(--primary);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-addon-mini-actions button:hover {
    background: var(--primary);
    color: #0f0900;
    transform: translateY(-1px);
}

.product-description-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-tabs-section {
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-tabs-nav {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 28px;
}

.product-tab {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    border-radius: 999px;
    padding: 9px 16px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.product-tab:hover,
.product-tab.active {
    color: #111;
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.active {
    display: block;
}

.product-description-benefits,
.product-reviews-panel {
    display: grid;
    gap: 16px;
}

.product-benefit-item,
.product-review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
}

.product-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.product-benefit-icon i {
    color: var(--primary-gold);
    font-size: 1.15rem;
    margin-top: 3px;
}

.product-benefit-text h4,
.product-review-author {
    color: #fff;
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
}

.product-benefit-text p,
.product-review-text {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
}

.product-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.product-review-stars {
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.description-content {
    margin-bottom: 60px;
}

.description-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
}

/* =========================================
   PRODUCT FEATURE CARDS
   align-items:start is the important bit — without it every card in a row
   stretches to the tallest one, leaving big empty gaps under short lists.
   ========================================= */
.product-features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    align-items: start;
    margin-bottom: 60px;
}

.feature-category {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 18px;
    padding: 22px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* thin gold rail that lights up on hover */
.feature-category::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity .25s ease;
}

.feature-category:hover {
    border-color: rgba(255, 45, 45, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 26px rgba(255, 45, 45, 0.10);
}

.feature-category:hover::before {
    opacity: 1;
}

.feature-category-large {
    grid-column: 1 / -1;
}

.feature-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* the bare icon becomes a gold tile */
.feature-category-title i {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 45, 45, 0.12);
    border: 1px solid rgba(255, 45, 45, 0.28);
    color: var(--primary);
    font-size: 0.88rem;
    transition: background .25s ease, box-shadow .25s ease;
}

.feature-category:hover .feature-category-title i {
    background: rgba(255, 45, 45, 0.2);
    box-shadow: 0 0 18px rgba(255, 45, 45, 0.28);
}

/* count pill injected by script.js */
.feature-count {
    margin-left: auto;
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #8f8f8f;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b4b4b4;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color .2s ease, transform .2s ease;
}

.feature-list li:hover {
    color: #fff;
    transform: translateX(3px);
}

.feature-list li i {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 0.68rem;
    width: 14px;
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 768px) {
    .product-features-detailed {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 40px;
    }

    .feature-category {
        padding: 18px;
        border-radius: 15px;
    }

    .feature-category-title {
        font-size: 0.98rem;
        gap: 10px;
        margin-bottom: 13px;
        padding-bottom: 12px;
    }

    .feature-category-title i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .feature-list li {
        font-size: 0.87rem;
    }
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-info-grid-r6 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 60px;
}

.product-section-heading {
    margin-bottom: 30px;
}

.info-column {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.info-column-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.info-column-title i {
    color: var(--primary);
    font-size: 1.2rem;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-list li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.info-list li span {
    flex: 1;
}

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

    .product-detail-image-section {
        position: relative;
        top: 0;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
    }

    .product-features-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 90px 0 40px;
    }

    .product-detail-container {
        padding: 20px 15px 0;
        gap: 30px;
    }

    .product-detail-image-section {
        position: relative;
        top: 0;
        margin-bottom: 0;
        margin-top: 0;
    }

    .product-image-main {
        min-height: auto;
        padding: 0;
        margin-bottom: 15px;
    }

    .product-main-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .product-image-thumbnails {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .product-detail-title {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 8px;
    }

    .product-detail-slogan {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .product-compatibility {
        padding: 15px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .compatibility-item {
        font-size: 0.85rem;
    }

    .product-rating-large {
        margin-top: 15px;
    }

    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
    }

    .quantity-selector {
        align-items: flex-start;
        width: 100%;
    }

    .quantity-controls {
        width: 100%;
        max-width: 200px;
    }

    .variants-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .variant-card {
        padding: 15px;
    }

    .variant-name {
        font-size: 1rem;
    }

    .variant-desc {
        font-size: 0.85rem;
    }

    .variant-price {
        font-size: 1.2rem;
    }

    .product-total-section {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
    }

    /* Not sticky on mobile — it overlapped the page and floated over the
       chatbot button. Scrolls inline with the rest of the product panel. */
    .product-total-section-converting {
        position: static;
        bottom: auto;
        z-index: auto;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        box-shadow: none;
    }

    .btn-purchase-large {
        width: 100%;
        justify-content: center;
        padding: 13px 22px;
        min-height: 48px;
        font-size: 0.95rem;
    }

    .price-main-large {
        font-size: 1.8rem;
    }

    .total-price {
        font-size: 2rem;
    }

    .product-description-section {
        margin-top: 40px;
        padding-top: 40px;
    }

    .description-content {
        margin-bottom: 40px;
    }

    .description-content h2 {
        font-size: 2rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .product-features-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-category {
        padding: 20px;
    }

    .feature-category-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .product-info-grid {
        gap: 20px;
    }

    .info-column {
        padding: 20px;
    }

    .image-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .image-nav-prev {
        left: 10px;
    }

    .image-nav-next {
        right: 10px;
    }

    .product-image-thumbnails {
        padding: 0 15px;
    }
}

/* =========================================
   SUPPORT CTA SECTION
   ========================================= */
.support-cta {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.5);
    border-top: 1px solid rgba(255, 45, 45, 0.1);
}

.support-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* =========================================
   MARQUEE REVIEWS
   ========================================= */
.reviews {
    padding: 100px 0;
    background-color: #000;
}

.discord-community-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 34px;
    align-items: center;
    overflow: hidden;
    margin: 46px auto 56px;
    padding: 54px 64px;
    border-radius: 24px;
    border: 1px solid rgba(255, 45, 45, 0.58);
    background:
        linear-gradient(135deg, rgba(3, 12, 18, 0.96), rgba(4, 7, 12, 0.92)),
        radial-gradient(circle at 18% 18%, rgba(255, 45, 45, 0.22), transparent 36%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 24px 70px rgba(0, 0, 0, 0.55),
        0 0 42px rgba(255, 45, 45, 0.16);
    isolation: isolate;
}

.discord-community-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.42;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.35)),
        url('assets/hero-smoke.jpg') center/cover;
    filter: blur(1.5px) saturate(1.15);
    transform: scale(1.05);
}

.discord-community-card::before {
    content: '';
    position: absolute;
    inset: auto -15% -45% -15%;
    height: 70%;
    z-index: -1;
    background:
        radial-gradient(ellipse at center, rgba(255, 45, 45, 0.28), transparent 62%),
        repeating-radial-gradient(ellipse at center, rgba(255, 45, 45, 0.18) 0 2px, transparent 2px 16px);
    opacity: 0.45;
    transform: perspective(700px) rotateX(66deg);
    transform-origin: center bottom;
}

.discord-community-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.discord-community-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.discord-community-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 18px var(--primary);
}

.discord-community-content h3 {
    margin: 0 0 18px;
    max-width: 650px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.discord-community-content h3 span {
    display: block;
    color: var(--primary);
    text-shadow: 0 0 28px rgba(255, 45, 45, 0.35);
}

.discord-community-content p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.7vw, 1.28rem);
    line-height: 1.65;
}

.discord-community-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.discord-community-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    padding: 15px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF2D2D, #B80000);
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(255, 45, 45, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discord-community-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(255, 45, 45, 0.4);
}

.discord-community-btn i {
    font-size: 1.25rem;
}

.discord-community-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.discord-community-note i {
    color: var(--primary);
}

.discord-community-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 245px;
}

.discord-logo-tile {
    display: grid;
    place-items: center;
    width: clamp(160px, 20vw, 250px);
    aspect-ratio: 1;
    border-radius: 34px;
    background: linear-gradient(145deg, #FF5555, #FF2D2D 56%, #8a0000);
    color: #ffffff;
    box-shadow:
        0 28px 55px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(255, 45, 45, 0.3);
    transform: rotate(5deg);
}

.discord-logo-tile i {
    font-size: clamp(4.8rem, 9vw, 8.5rem);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

.discord-wordmark {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 3.1rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    text-transform: lowercase;
}

.discord-wordmark::first-letter {
    color: var(--primary);
}

@media (max-width: 900px) {
    .discord-community-card {
        grid-template-columns: 1fr;
        padding: 42px 30px;
        text-align: center;
    }

    .discord-community-content p {
        margin-inline: auto;
    }

    .discord-community-actions {
        justify-content: center;
    }

    .discord-community-visual {
        min-height: 170px;
    }

    .discord-logo-tile {
        width: 155px;
        border-radius: 26px;
    }
}

@media (max-width: 520px) {
    .discord-community-card {
        margin: 34px auto 44px;
        padding: 34px 20px;
        border-radius: 20px;
    }

    .discord-community-content h3 {
        font-size: 2.25rem;
    }

    .discord-community-btn {
        width: 100%;
    }
}

.marquee-row {
    display: flex;
    gap: 30px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    user-select: none;
}

.marquee-content {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

.marquee-row {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
}

.marquee-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.review-card.mini {
    padding: 25px;
    border-radius: 16px;
    background: #0e0e0e;
    border: 1px solid #1f1f1f;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card.mini.alt-bg {
    background: rgba(20, 20, 20, 0.4);
}

.review-card.mini:hover {
    border-color: var(--primary);
}

.stars {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
}

.reviewer {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: white;
}

/* =========================================
   SUPPORT & FAQ (REDESIGNED)
   ========================================= */
.support-section {
    padding: 100px 0;
}

.support-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Item (Card Style) */
.faq-item {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition-fast);
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.1);
    background: #0a0a0a;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: none;
}

.faq-question-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Red Icon Box */
.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.faq-icon-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.faq-question {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.toggle-icon {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    /* Turns + into x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-left: 55px;
    /* Align with text */
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
    opacity: 1;
}

/* Need Help Card - Modified Alignment */
.need-help-card {
    border: 1px solid var(--glass-border);
    background: #0e0e0e;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Changed from center */
    text-align: left;
    /* Changed from center */
    padding: 40px;
    min-height: 350px;
}

.need-help-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.need-help-card>* {
    z-index: 1;
}

.help-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Support Buttons (Darker, Pill style) - Matches Image */
.btn-support {
    background: rgba(255, 255, 255, 0.08);
    /* Darker */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.btn-support:hover {
    background: #1a1a1a;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Footer Section */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, #000 100%);
    position: relative;
    z-index: 10;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 42px;
    width: 42px;
    object-fit: cover;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 45, 45, 0.5));
}

.footer-brand h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 45, 45, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 45, 45, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 45, 45, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.5);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 5px 12px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.3);
    border-radius: 20px;
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   RESPONSIVENESS
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

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

    .support-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hide custom cursor on mobile and restore default cursor */
    * {
        cursor: auto !important;
    }
    
    #cursor,
    #cursor-blur {
        display: none !important;
    }
    
    .container {
        padding: 0 15px;
    }

    .announcement-bar {
        position: relative;
        top: 0;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        margin-top: 0;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 45, 45, 0.2);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    .navbar {
        padding: 0 20px;
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 70px;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
    }

    .hero {
        padding-top: 70px;
        margin-top: 0;
        min-height: 100vh;
    }
    
    .hero::before {
        top: 0;
        height: 100%;
    }
    
    .hero-content {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
        margin-top: 0;
        text-align: center;
    }

    .hero-tagline {
        font-size: 0.75rem;
        padding: 6px 16px;
        margin-bottom: 20px;
        text-align: center;
        display: inline-block;
    }

    .hero p {
        font-size: 0.95rem;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 25px;
        line-height: 1.7;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px !important;
        padding: 0 10px;
    }

    .section-tag {
        font-size: 0.7rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 10px !important;
    }

    .section-header h2 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* Features Section */
    .features {
        padding: 60px 0 !important;
    }

    .features .section-header {
        margin-bottom: 40px !important;
    }

    .features .section-header h2 {
        font-size: 2rem !important;
    }

    .bento-item {
        padding: 25px !important;
    }

    .bento-item h3 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
    }

    .bento-item p {
        font-size: 0.85rem !important;
    }

    /* How It Works Section */
    .how-it-works {
        padding: 60px 0 !important;
    }

    .how-it-works .section-header h2 {
        font-size: 2rem !important;
    }

    .step-card {
        padding: 25px !important;
    }

    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }

    .step-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .step-card p {
        font-size: 0.85rem !important;
    }

    /* Products Section */
    .products {
        padding: 60px 0 !important;
    }

    .products-grid {
        gap: 20px !important;
    }

    .product-card {
        padding: 20px !important;
    }

    .product-title {
        font-size: 1.1rem !important;
    }

    .product-description {
        font-size: 0.85rem !important;
    }

    /* Video Section */
    .video-showcase {
        padding: 60px 0 !important;
    }

    .video-showcase .section-header h2 {
        font-size: 2rem !important;
    }

    .video-container {
        padding: 0 10px;
    }

    .video-wrapper {
        height: 250px !important;
    }

    /* Reviews Section */
    .reviews {
        padding: 60px 0 !important;
    }

    .reviews .section-header h2 {
        font-size: 2rem !important;
    }

    .review-card.mini {
        padding: 20px !important;
        min-width: 280px !important;
    }

    .review-text {
        font-size: 0.85rem !important;
    }

    .reviewer {
        font-size: 0.8rem !important;
    }

    /* Support & FAQ Section */
    .support-section {
        padding: 60px 0 !important;
    }

    .faq-item {
        padding: 20px !important;
    }

    .faq-question {
        font-size: 0.95rem !important;
    }

    .faq-answer {
        font-size: 0.85rem !important;
    }

    /* Split Banner */
    .split-banner {
        padding: 60px 0 0 !important;
    }

    .split-banner-headline {
        font-size: 2rem !important;
    }

    .split-banner-slogan {
        font-size: 1.5rem !important;
    }

    .split-banner-text {
        font-size: 0.9rem !important;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-column h4 {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }

    .footer-links li {
        margin-bottom: 10px !important;
    }

    .footer-links a {
        font-size: 0.85rem !important;
    }

    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        outline: none !important;
        box-shadow: none !important;
        position: relative;
        z-index: 10001;
        cursor: pointer;
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
    }

    .hamburger-menu:hover {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
    }

    .hamburger-menu.active {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: var(--transition-fast);
        display: block;
        position: relative;
    }

    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
        display: block !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: rgba(5, 5, 5, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        z-index: 99999 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        overflow-y: auto !important;
        pointer-events: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu.active {
        pointer-events: auto !important;
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu-content {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu-link {
        padding: 18px 20px;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: var(--transition-fast);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .mobile-menu-link i {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
        transition: var(--transition-fast);
    }
    
    .mobile-menu-link:hover i,
    .mobile-menu-link.active i {
        color: var(--primary-gold);
        transform: scale(1.1);
    }

    .mobile-menu-link:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-link:hover,
    .mobile-menu-link.active {
        color: white;
        background: rgba(255, 45, 45, 0.1);
        padding-left: 30px;
    }

    .mobile-menu-discord {
        margin-top: 20px;
        background: rgba(255, 45, 45, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(255, 45, 45, 0.3);
        justify-content: center;
    }

    .mobile-menu-discord:hover {
        background: var(--primary);
        color: white;
    }

    .mobile-menu-discord i {
        font-size: 1.2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        margin: 0 20px !important;
        gap: 15px !important;
        padding: 0 !important;
    }

    .bento-item {
        margin: 0 !important;
        width: 100% !important;
    }

    .span-2,
    .row-span-2 {
        grid-column: auto;
        grid-row: auto;
    }

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

    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .products-grid-page {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps-grid::before {
        display: none;
    }

    .support-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-banner-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-banner {
        padding: 70px 0 0 !important;
        margin-top: 0 !important;
        overflow: hidden;
    }

    .split-banner-container {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .split-banner-image {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .split-banner-container {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .split-banner-headline {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
        line-height: 1.2;
        padding: 0 20px;
    }

    .split-banner-slogan {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
        line-height: 1.2;
        padding: 0 20px;
    }

    .split-banner-text {
        font-size: 0.9rem !important;
        padding: 0 20px !important;
        margin-bottom: 20px !important;
        line-height: 1.6;
    }

    .split-banner-image {
        height: 250px !important;
        order: -1;
        width: 100vw !important;
        position: relative !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
    }

    .banner-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .split-banner-content {
        height: auto !important;
        padding: 10px 0 20px !important;
        padding-right: 0 !important;
    }

    .split-banner-headline {
        margin-top: -10px !important;
    }

    .split-banner-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px !important;
        width: 100%;
        align-items: center;
    }

    .split-banner-buttons .btn {
        width: auto !important;
        max-width: 220px !important;
        min-width: 180px !important;
        justify-content: center;
    }

    /* Reviews Page Section */
    .reviews-page-section {
        padding: 70px 0 60px !important;
    }

    /* Reviews Page Discord Button */
    .reviews-page-section .btn-discord-large,
    .reviews-page-section .btn-primary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
        justify-content: center !important;
        margin: 0 auto;
    }

    /* Support CTA Section */
    .support-cta {
        padding: 60px 20px !important;
    }

    .support-cta-content {
        padding: 0 10px !important;
    }

    .support-cta-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3;
        text-align: center;
    }

    .support-cta-content p {
        font-size: 0.9rem !important;
        margin-bottom: 30px !important;
        text-align: center;
        line-height: 1.6;
    }

    .support-cta-wrapper {
        display: flex;
        justify-content: center;
    }

    .support-cta-wrapper .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }
}

/* =========================================
   CART SYSTEM STYLES
   ========================================= */

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--bg-body);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    pointer-events: none;
}

.cart-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-modal.active .cart-overlay {
    opacity: 1;
}

.cart-content-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: var(--bg-surface);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cart-modal.active .cart-content-wrapper {
    transform: translateX(0);
}

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-surface);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.cart-modal.active .cart-header {
    opacity: 1;
    transform: translateY(0);
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 45, 45, 0.14);
    border: 1px solid rgba(255, 45, 45, 0.28);
    color: var(--primary);
    font-size: 0.95rem;
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.cart-modal.active .cart-content {
    opacity: 1;
    transform: translateY(0);
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.cart-modal.active .cart-empty {
    opacity: 1;
    transform: scale(1);
}

.cart-empty .material-symbols-outlined {
    font-size: 80px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-empty p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cart-items {
    padding: 20px 30px;
    flex: 1;
}

.cart-social-proof,
.cart-guarantee-strip {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 45, 45, 0.16);
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.08), rgba(255, 255, 255, 0.025));
    border-radius: 14px;
}

.cart-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
}

.cart-avatar-stack {
    display: flex;
    flex-shrink: 0;
}

.cart-avatar-stack img {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #101010;
    box-shadow: 0 0 0 1px rgba(255, 45, 45, 0.28);
}

.cart-avatar-stack img + img {
    margin-left: -10px;
}

.cart-social-proof strong,
.cart-social-proof span {
    display: block;
}

.cart-social-proof strong {
    color: #fff;
    font-size: 0.95rem;
}

.cart-social-proof span {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 3px;
}

.cart-items-list {
    margin-top: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cartItemSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.cart-item:nth-child(1) { animation-delay: 0.05s; }
.cart-item:nth-child(2) { animation-delay: 0.1s; }
.cart-item:nth-child(3) { animation-delay: 0.15s; }
.cart-item:nth-child(4) { animation-delay: 0.2s; }
.cart-item:nth-child(5) { animation-delay: 0.25s; }
.cart-item:nth-child(n+6) { animation-delay: 0.3s; }

@keyframes cartItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item:hover {
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.05);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.cart-item-variant {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 5px;
}

.cart-quantity-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 18px;
    font-weight: 600;
}

.cart-quantity-btn:hover {
    background: var(--primary);
    color: var(--bg-body);
}

.cart-quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-main);
}

.cart-remove-btn {
    background: transparent;
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff4444;
}

.cart-item-total {
    grid-column: 1 / -1;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    padding-top: 10px;
    border-top: 1px solid var(--glass-border);
}

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-surface);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.cart-addon-section {
    margin: 18px -30px 0;
    padding: 18px 30px;
    border-top: 1px solid rgba(255, 45, 45, 0.24);
    border-bottom: 1px solid rgba(255, 45, 45, 0.18);
    background: rgba(255, 45, 45, 0.055);
}

.cart-addon-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-addon-list {
    display: grid;
    gap: 10px;
}

.cart-addon-card {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-addon-card:hover:not(:disabled) {
    border-color: var(--primary);
    transform: translateY(-1px);
    background: rgba(255, 45, 45, 0.08);
}

.cart-addon-card:disabled {
    cursor: default;
    opacity: 0.72;
}

.cart-addon-card img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    background: #111;
}

.cart-addon-card img[src*="logo-stable"] {
    object-fit: contain;
    padding: 6px;
}

.cart-addon-copy strong,
.cart-addon-copy small {
    display: block;
}

.cart-addon-copy strong {
    font-size: 0.95rem;
}

.cart-addon-copy strong em {
    margin-left: 5px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 45, 45, 0.18);
    color: var(--primary);
    font-size: 0.65rem;
    font-style: normal;
    text-transform: uppercase;
}

.cart-addon-copy small {
    margin-top: 3px;
    color: var(--text-muted);
    line-height: 1.35;
}

.cart-addon-price {
    color: var(--primary);
    font-weight: 900;
    white-space: nowrap;
}

.cart-guarantee-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cart-guarantee-strip i {
    color: #22c55e;
    font-size: 1.25rem;
}

.cart-modal.active .cart-footer {
    opacity: 1;
    transform: translateY(0);
}

.cart-coupon-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.coupon-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
    cursor: text;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.05);
}

.coupon-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-coupon {
    padding: 12px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.coupon-message {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    transition: var(--transition-fast);
    min-height: 20px;
}

.coupon-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.coupon-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cart-total-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.cart-subtotal,
.cart-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.cart-total-label {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.cart-total-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.cart-discount-amount {
    font-size: 1rem;
    font-weight: 600;
    color: #22c55e;
    font-family: 'Space Grotesk', sans-serif;
}

/* Checkout Form Modal */
.checkout-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.checkout-form-modal.active {
    opacity: 1;
    pointer-events: all;
}

/* Sellixa Pay card iframe shell */
.sellixa-pay-modal {
    z-index: 100010;
}

.sellixa-pay-shell {
    max-width: 480px !important;
    width: min(480px, 96vw) !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #0d0d10 !important;
}

.sellixa-pay-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sellixa-pay-head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sellixa-pay-open {
    color: var(--primary);
    font-size: 0.85rem;
    text-decoration: none;
}

.sellixa-pay-open:hover {
    text-decoration: underline;
}

.sellixa-pay-loading {
    position: absolute;
    inset: 56px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    background: #0d0d10;
    z-index: 2;
}

.sellixa-pay-loading[hidden] {
    display: none !important;
}

.sellixa-pay-frame {
    display: block;
    width: 100%;
    min-height: 420px;
    height: min(720px, 78vh);
    border: 0;
    background: #111114;
}

.sellixa-pay-error {
    padding: 28px 20px;
    text-align: center;
    color: var(--text-main);
    display: grid;
    gap: 12px;
    place-items: center;
}

.sellixa-pay-error-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.checkout-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.checkout-form-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    padding: 40px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.checkout-form-modal.active .checkout-form-content {
    transform: scale(1);
}

.checkout-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.checkout-form-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.checkout-form-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.checkout-form-close:hover {
    color: var(--text-main);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
    cursor: text !important;
}

/* Override global cursor: none for checkout form inputs and buttons */
.checkout-form-modal * {
    cursor: default !important;
}

.checkout-form-modal input,
.checkout-form-modal textarea,
.checkout-form-modal select {
    cursor: text !important;
}

.checkout-form-modal button,
.checkout-form-modal .btn,
.checkout-form-modal .checkout-form-close {
    cursor: pointer !important;
}

.checkout-form-modal label {
    cursor: default !important;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.05);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Payment Method Selection */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.payment-method-option {
    display: block;
    cursor: pointer !important;
}

.payment-method-option input[type="radio"] {
    display: none;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.payment-method-card i {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.payment-method-card span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    flex: 1;
}

.payment-method-option input[type="radio"]:checked + .payment-method-card {
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.1);
}

.payment-method-option input[type="radio"]:checked + .payment-method-card i {
    color: var(--primary);
}

.payment-method-card:hover {
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.05);
}

/* Payment Instructions Modal */
.payment-instructions-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Override global cursor: none for payment instructions modal */
.payment-instructions-modal * {
    cursor: default !important;
}

.payment-instructions-modal button,
.payment-instructions-modal .btn,
.payment-instructions-modal .copy-btn,
.payment-instructions-modal .payment-instructions-close,
.payment-instructions-modal a {
    cursor: pointer !important;
}

.payment-instructions-modal code,
.payment-instructions-modal strong,
.payment-instructions-modal p,
.payment-instructions-modal h2,
.payment-instructions-modal h3,
.payment-instructions-modal li,
.payment-instructions-modal ol,
.payment-instructions-modal .payment-icon-large,
.payment-instructions-modal .payment-icon-large i {
    cursor: default !important;
}

.payment-instructions-modal.active {
    opacity: 1;
    visibility: visible;
}

.payment-instructions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    cursor: pointer !important;
}

.payment-instructions-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.payment-instructions-modal.active .payment-instructions-content {
    transform: scale(1);
}

.payment-instructions-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.payment-icon-large {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.payment-instructions-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0;
}

.payment-instructions-close {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer !important;
    padding: 5px;
    transition: color 0.3s ease;
}

.payment-instructions-close:hover {
    color: var(--text-main);
}

.payment-instructions-body {
    margin-bottom: 30px;
}

.order-id-display {
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 25px;
}

.order-id-display p {
    margin: 0;
    color: var(--text-main);
    font-size: 1rem;
}

.order-id-display strong {
    color: var(--primary);
    font-family: 'Space Grotesk', monospace;
    font-size: 1.1rem;
}

.payment-instruction-step {
    margin-bottom: 25px;
}

.payment-instruction-step h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-instruction-step h3 i {
    color: var(--primary);
}

.payment-info-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

.payment-info-box strong {
    color: var(--text-main);
    font-size: 1rem;
    flex: 1;
}

.payment-info-box code.crypto-address {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    word-break: break-all;
    flex: 1;
}

.payment-info-box small {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
}

.copy-btn {
    background: var(--primary);
    color: var(--bg-body);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.copy-btn i {
    cursor: pointer !important;
}

.copy-btn:hover {
    background: #ffa500;
    transform: translateY(-2px);
}

.payment-warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.payment-warning-box p {
    margin: 8px 0;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-warning-box p:first-child {
    margin-top: 0;
}

.payment-warning-box p:last-child {
    margin-bottom: 0;
}

.payment-warning-box strong {
    color: #ef4444;
}

.payment-steps-list {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--text-main);
}

.payment-steps-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.payment-steps-list li:last-child {
    margin-bottom: 0;
}

.payment-instructions-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-instructions-footer .btn {
    flex: 1;
    min-width: 150px;
    justify-content: center;
    cursor: pointer !important;
    white-space: nowrap;
}

.payment-instructions-footer .btn i {
    cursor: pointer !important;
}

/* =========================================
   PROMO POPUP
   ========================================= */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100003;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Override global cursor: none for promo popup */
.promo-popup * {
    cursor: default !important;
}

.promo-popup button,
.promo-popup input,
.promo-popup .promo-dismiss {
    cursor: pointer !important;
}

.promo-popup input {
    cursor: text !important;
}

.promo-popup.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer !important;
}

.promo-popup-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.promo-popup-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex: 1;
    min-height: 0;
}

.promo-popup.active .promo-popup-content {
    transform: scale(1) translateY(0);
}

.promo-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    z-index: 10;
    transition: all 0.3s ease;
    color: #ffffff;
}

.promo-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.promo-popup-close .material-symbols-outlined {
    font-size: 18px;
}

.promo-popup-banner {
    width: 200px;
    min-width: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #0a0a0a;
    align-self: stretch;
    flex-shrink: 0;
}

.promo-banner-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    align-self: stretch;
}

.promo-popup-body {
    padding: 25px 30px 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-popup-headline {
    margin: 0 0 10px 0;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
}

.promo-text-line {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.promo-text-exclusive {
    display: block;
    color: #FF2D2D;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 4px 0;
    text-shadow: 0 0 15px rgba(255, 45, 45, 0.5);
}

.promo-popup-subtext {
    color: #ffffff;
    font-size: 0.85rem;
    margin: 0 0 20px 0;
    line-height: 1.4;
    opacity: 0.9;
}

.promo-popup-body > .promo-unlock-btn {
    width: 100%;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.promo-email-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: text !important;
}

.promo-email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.promo-email-input:focus {
    outline: none;
    border-color: #FF2D2D;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.1);
}

.promo-unlock-btn {
    width: 100%;
    padding: 12px 20px;
    background: #FF2D2D;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.promo-unlock-btn:hover {
    background: #FF5555;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 45, 45, 0.4);
}

.promo-unlock-btn:active {
    transform: translateY(0);
}

.promo-unlock-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed !important;
    transform: none;
}

.promo-dismiss {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    cursor: pointer !important;
    padding: 5px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.promo-dismiss:hover {
    color: #ffffff;
}

/* Discount Code Success Screen */
.discount-code-success {
    text-align: center;
    padding: 20px 0;
}

.discount-success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
    animation: successIconPop 0.5s ease-out;
}

@keyframes successIconPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.discount-code-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.discount-code-display {
    background: rgba(255, 45, 45, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.discount-code-text {
    font-family: 'Space Grotesk', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 45, 45, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
}

.discount-copy-btn {
    background: var(--primary);
    color: #000000;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.discount-copy-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 45, 45, 0.4);
}

.discount-code-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Discount Reopen Button */
.discount-reopen-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #1a1a1a;
    border: none;
    border-top: 2px solid rgba(255, 45, 45, 0.3);
    border-right: 2px solid rgba(255, 45, 45, 0.3);
    border-top-right-radius: 12px;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer !important;
    z-index: 100002;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
}

.discount-reopen-btn:hover {
    background: rgba(255, 45, 45, 0.15);
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 -6px 25px rgba(255, 45, 45, 0.4);
}

.discount-reopen-btn:active {
    transform: translateY(0);
}

/* Mobile Discount Button */
@media (max-width: 768px) {
    .discount-reopen-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        border-top-right-radius: 10px;
    }

    .discount-code-text {
        font-size: 1.5rem;
    }
}

/* Mobile Promo Popup */
@media (max-width: 768px) {
    .promo-popup-content {
        max-width: 95%;
        width: 95%;
        display: flex !important;
        flex-direction: column !important;
    }

    .promo-popup-wrapper {
        flex-direction: row !important;
        display: flex !important;
        align-items: stretch !important;
        flex: 1 !important;
        min-height: 0 !important;
    }

    .promo-popup-banner {
        width: 150px !important;
        min-width: 150px !important;
        max-width: 150px !important;
        height: auto !important;
        align-self: stretch !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: stretch !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .promo-banner-image {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        align-self: stretch !important;
    }

    .promo-popup-body {
        padding: 20px 15px 20px 15px !important;
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-self: stretch !important;
    }

    .promo-text-line {
        font-size: 0.9rem;
    }

    .promo-text-exclusive {
        font-size: 1.6rem;
    }

    .promo-popup-subtext {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }
}

/* =========================================
   CHATBOT WIDGET STYLES
   ========================================= */

/* Chatbot Button */
#chatbot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF2D2D 0%, #FF5555 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 45, 45, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    overflow: hidden;
}

#chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 45, 45, 0.6);
}

#chatbot-button.active {
    background: rgba(255, 45, 45, 0.2);
    transform: scale(0.9);
}

#chatbot-button img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Chatbot Widget */
#chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 140px);
    background: #1a1a1a;
    border: 1px solid rgba(255, 45, 45, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

#chatbot-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chatbot Header */
#chatbot-header {
    background: linear-gradient(135deg, #FF2D2D 0%, #FF5555 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chatbot-header-text {
    display: flex;
    flex-direction: column;
}

.chatbot-header-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.chatbot-header-subtitle {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.2;
}

#chatbot-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000;
}

#chatbot-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

#chatbot-close i {
    font-size: 14px;
}

/* Chatbot Messages */
#chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #1a1a1a;
}

#chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

#chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

#chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 45, 45, 0.3);
    border-radius: 3px;
}

#chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 45, 45, 0.5);
}

.chatbot-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: fadeInMessage 0.3s ease;
}

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

.chatbot-message.user {
    flex-direction: row-reverse;
}

.chatbot-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 45, 45, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-avatar img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.chatbot-message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.chatbot-message.user .chatbot-message-content {
    background: linear-gradient(135deg, #FF2D2D 0%, #FF5555 100%);
    color: #000;
    border-bottom-right-radius: 4px;
}

.chatbot-message.bot .chatbot-message-content {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 45, 45, 0.2);
}

/* Typing Indicator */
.chatbot-message.typing .chatbot-message-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 45, 45, 0.6);
    animation: typingDot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Chatbot Input */
#chatbot-input-container {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 45, 45, 0.2);
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatbot-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

#chatbot-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

#chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#chatbot-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FF2D2D 0%, #FF5555 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

#chatbot-send:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 45, 45, 0.4);
}

#chatbot-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#chatbot-send i {
    font-size: 16px;
}

/* Mobile Chatbot */
@media (max-width: 768px) {
    #chatbot-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    #chatbot-button img {
        width: 30px;
        height: 30px;
    }

    #chatbot-widget {
        bottom: 86px;
        right: 20px;
        left: 20px;
        width: auto;
        height: 60vh;
        max-height: 60vh;
    }

    .chatbot-message-content {
        max-width: 85%;
    }
}

/* Ensure chatbot is above other elements */
#chatbot-button,
#chatbot-widget {
    cursor: default !important;
}

#chatbot-button *,
#chatbot-widget * {
    cursor: default !important;
}

#chatbot-button,
#chatbot-close,
#chatbot-send,
#chatbot-input {
    cursor: pointer !important;
}

#chatbot-input {
    cursor: text !important;
}

/* Mobile Payment Instructions */
@media (max-width: 768px) {
    .payment-instructions-content {
        padding: 25px 20px;
        width: 95%;
    }

    .payment-icon-large {
        font-size: 3rem;
    }

    .payment-instructions-header h2 {
        font-size: 1.5rem;
    }

    .payment-info-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .payment-instructions-footer {
        flex-direction: column;
    }

    .payment-instructions-footer .btn {
        width: 100%;
    }
}

.btn-checkout {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 15px;
    min-height: 56px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(255, 45, 45, 0.26);
}

.btn-checkout i {
    margin-right: 8px;
}

.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--bg-body);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 100001;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 45, 45, 0.3);
}

@media (max-width: 560px) {
    .cart-social-proof,
    .cart-guarantee-strip,
    .product-trust-proof {
        align-items: flex-start;
    }

    .cart-addon-card {
        grid-template-columns: 42px 1fr;
    }

    .cart-addon-price {
        grid-column: 2;
    }

    .product-addon-mini {
        grid-template-columns: 1fr;
    }

    .product-addon-mini-actions {
        justify-content: stretch;
    }

    .product-addon-mini-actions button {
        flex: 1;
    }
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Cart Styles */
@media (max-width: 768px) {
    .cart-content-wrapper {
        max-width: 100%;
    }

    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-controls {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }

    .cart-item-total {
        grid-column: 2;
        text-align: right;
        border-top: none;
        padding-top: 0;
    }
}

/* Discord Join Button */
.discord-join-btn {
    cursor: pointer !important;
}

.discord-join-btn:hover {
    background: #4752C4 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

/* =========================================
   VOUCHES PAGE (Discord + proof)
   ========================================= */
.vouches-page-section {
    padding: 60px 0 120px;
    background: rgba(5, 5, 5, 0.35);
}

.vouches-section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 12px auto 0;
    line-height: 1.5;
}

.vouch-cta-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.vouch-open-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer !important;
}

body.vouch-modal-open {
    overflow: hidden;
}

body.vouch-modal-open #cursor,
body.vouch-modal-open #cursor-blur {
    opacity: 0 !important;
    pointer-events: none !important;
}

.vouch-composer-modal {
    position: fixed;
    inset: 0;
    z-index: 150000;
    padding: 24px 16px;
    align-items: center;
    justify-content: center;
}

.vouch-composer-modal[hidden] {
    display: none !important;
}

.vouch-composer-modal:not([hidden]) {
    display: flex;
}

/* Modal: normal cursor (site uses cursor:none globally) */
.vouch-composer-modal,
.vouch-composer-modal * {
    cursor: auto !important;
}

.vouch-composer-modal a,
.vouch-composer-modal button,
.vouch-composer-modal .btn,
.vouch-composer-modal input[type='file'],
.vouch-composer-modal .vouch-file-input,
.vouch-composer-modal label {
    cursor: pointer !important;
}

.vouch-composer-modal textarea,
.vouch-composer-modal input[type='text'] {
    cursor: text !important;
}

.vouch-composer-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.vouch-composer-modal-panel {
    position: relative;
    z-index: 1;
    width: min(92vw, 720px);
    max-height: min(86vh, 780px);
    overflow-y: auto;
    padding: 22px 24px 26px;
    border-radius: 20px;
}

.vouch-composer-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-main);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer !important;
    transition: var(--transition-fast);
}

.vouch-composer-modal-close:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.vouch-modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    margin: 0 36px 18px 0;
    color: var(--text-main);
}

.vouch-auth-lead {
    margin: 0 0 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.vouch-composer-wrap {
    max-width: 100%;
    margin: 0 auto;
}

.vouch-composer-modal .vouch-composer-panel {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.vouch-composer-panel {
    background: rgba(18, 18, 20, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 32px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.vouch-auth-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.vouch-auth-copy p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

.vouch-auth-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vouch-auth-block[hidden] {
    display: none !important;
}

.btn-discord-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer !important;
    background: #5865f2;
    color: #fff;
    transition: var(--transition-fast);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}

.btn-discord-login:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.vouch-user-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vouch-user-avatar-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.vouch-user-avatar-img {
    position: absolute;
    inset: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 45, 45, 0.45);
    background: rgba(0, 0, 0, 0.3);
}

.vouch-user-avatar-fallback {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 101, 242, 0.22);
    color: #a8b2ff;
    border: 2px solid rgba(255, 45, 45, 0.5);
    font-size: 1.15rem;
}

.vouch-user-avatar-fallback[hidden] {
    display: none !important;
}

.vouch-user-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.vouch-user-name {
    font-weight: 600;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-ghost {
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer !important;
    transition: var(--transition-fast);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.vouch-form .vouch-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.vouch-optional {
    font-weight: 400;
    color: var(--text-muted);
}

.vouch-stars-input {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.vouch-stars-input button {
    background: none;
    border: none;
    padding: 4px;
    font-size: 1.35rem;
    cursor: pointer !important;
    color: rgba(255, 45, 45, 0.25);
    transition: var(--transition-fast);
}

.vouch-stars-input button.is-active {
    color: var(--primary);
    text-shadow: 0 0 12px var(--primary-glow);
}

.vouch-textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 18px;
    cursor: text !important;
}

.vouch-textarea:focus {
    outline: none;
    border-color: rgba(255, 45, 45, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.12);
}

.vouch-file-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vouch-file-input {
    cursor: pointer !important;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vouch-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 8px 0 16px;
}

.vouch-proof-preview {
    margin-bottom: 16px;
}

.vouch-proof-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vouch-form-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.vouch-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    cursor: pointer !important;
}

.vouches-loading,
.vouches-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 20px;
    font-size: 1rem;
}

.vouches-loading i {
    margin-right: 10px;
    color: var(--primary);
}

.vouches-error {
    text-align: center;
    color: #ff6b6b;
    padding: 24px;
}

.vouches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 24px;
    align-items: stretch;
}

.vouch-card {
    background: rgba(22, 22, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.vouch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.35;
}

.vouch-card:hover {
    border-color: rgba(255, 45, 45, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
}

.vouch-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.vouch-card-user {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.vouch-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 45, 45, 0.35);
    flex-shrink: 0;
}

.vouch-card-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
    font-size: 1.25rem;
}

.vouch-card-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vouch-discord-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(88, 101, 242, 0.18);
    color: #a8b2ff;
    border: 1px solid rgba(88, 101, 242, 0.35);
}

.vouch-discord-badge i {
    font-size: 0.85rem;
}

.vouch-card-stars {
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.vouch-star.is-on {
    color: var(--primary);
}

.vouch-star.is-off {
    color: rgba(255, 45, 45, 0.2);
}

.vouch-card-text {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 16px;
}

.vouch-card-proof {
    min-height: 1.5em;
    margin-bottom: 14px;
}

.vouch-no-proof {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.88rem;
}

.vouch-proof-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer !important;
    transition: var(--transition-fast);
}

.vouch-proof-link:hover {
    color: var(--primary-gold);
}

.vouch-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.vouch-card-id {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

/* [hidden] must win — do not set display:flex on the base rule or it overrides hidden */
.vouch-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200000;
    background: rgba(0, 0, 0, 0.92);
    padding: 24px;
    cursor: zoom-out !important;
}

.vouch-lightbox[hidden] {
    display: none !important;
}

.vouch-lightbox:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vouch-lightbox img {
    max-width: min(96vw, 1200px);
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.vouch-lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer !important;
    transition: var(--transition-fast);
}

.vouch-lightbox-close:hover {
    background: rgba(255, 45, 45, 0.25);
    color: var(--primary);
}

@media (max-width: 768px) {
    .vouch-composer-panel {
        padding: 22px 18px;
    }

    .vouch-user-bar {
        flex-wrap: wrap;
    }

    .btn-ghost {
        margin-left: 0;
        width: 100%;
    }
}

/* =========================================
   CUSTOMER PORTAL (portal.html, portal-site)
   ========================================= */
body.portal-page header {
    z-index: 10050;
}

body.portal-page .logo-image {
    height: 48px;
    width: auto;
    max-height: 48px;
}

body.portal-page .navbar {
    min-height: 58px;
    align-items: center;
}

body.portal-page {
    background:
        radial-gradient(ellipse 100% 80% at 50% -15%, rgba(255, 45, 45, 0.07), transparent 52%),
        radial-gradient(ellipse 60% 40% at 100% 30%, rgba(255, 45, 45, 0.07), transparent 50%),
        var(--bg-body);
}

body.portal-page .portal-dc {
    display: flex;
    min-height: calc(100vh - 76px);
    max-width: 1400px;
    margin: 118px auto 0;
    position: relative;
    z-index: 1;
    padding: 0 12px 24px;
    gap: 0;
    align-items: stretch;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5));
}

body.portal-page .portal-dc-sidebar {
    flex: 0 0 240px;
    background: linear-gradient(180deg, #232428 0%, #1a1b1f 100%);
    border: 1px solid rgba(255, 45, 45, 0.12);
    border-radius: 14px 0 0 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.portal-page .portal-dc-sidebar-head {
    padding: 16px 14px;
    font-weight: 700;
    font-size: 0.78rem;
    color: #f2f3f5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(255, 45, 45, 0.08), transparent);
}

body.portal-page .portal-dc-channels {
    flex: 1;
    overflow-y: auto;
    padding: 8px 6px 12px;
}

body.portal-page .portal-ch-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #949ba4;
    padding: 12px 8px 6px;
}

body.portal-page .portal-ch {
    display: block;
    width: 100%;
    text-align: left;
    padding: 9px 11px;
    margin: 2px 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #b5bac1;
    font-size: 0.92rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

body.portal-page .portal-ch:hover {
    background: #35373c;
    color: #f2f3f5;
}

body.portal-page .portal-ch.active {
    background: linear-gradient(90deg, rgba(255, 45, 45, 0.14), rgba(64, 66, 73, 0.95));
    color: #fff;
    box-shadow: inset 3px 0 0 var(--primary);
}

body.portal-page .portal-ch-group--staff[hidden] {
    display: none !important;
}

body.portal-page .portal-dc-sidebar-foot {
    padding: 10px;
    border-top: 1px solid #2b2d31;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.portal-page .portal-staff-btn {
    width: 100%;
    padding: 9px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 45, 45, 0.25);
    background: rgba(43, 45, 49, 0.9);
    color: #e8eaed;
    font-size: 0.82rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s;
}

body.portal-page .portal-staff-btn:hover {
    background: #35373c;
    color: #fff;
    border-color: rgba(255, 45, 45, 0.45);
}

body.portal-page .portal-dc-main {
    flex: 1;
    min-width: 0;
    background: linear-gradient(165deg, rgba(16, 16, 20, 0.92) 0%, rgba(8, 8, 10, 0.88) 100%);
    border: 1px solid rgba(255, 45, 45, 0.1);
    border-left: none;
    border-radius: 0 14px 14px 0;
    display: flex;
    flex-direction: column;
}

body.portal-page .portal-dc-titlebar {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 45, 45, 0.12);
    flex-shrink: 0;
    position: relative;
    z-index: 0;
    background: linear-gradient(180deg, rgba(12, 12, 15, 0.98) 0%, rgba(8, 8, 10, 0.95) 100%);
}

body.portal-page .portal-dc-titlebar h2 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: #f2f3f5;
    letter-spacing: 0.02em;
}

body.portal-page .portal-dc-content {
    flex: 1;
    padding: 22px;
    overflow-y: auto;
}

body.portal-page .portal-ch-panel {
    display: none;
}

body.portal-page .portal-ch-panel.active {
    display: block;
}

body.portal-page .portal-card {
    padding: 20px;
    margin-bottom: 14px;
    text-align: left;
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body.portal-page .portal-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

body.portal-page .portal-body {
    line-height: 1.65;
    color: var(--text-main);
}

body.portal-page .muted {
    color: var(--text-muted);
}

body.portal-page .error-text {
    color: #f87171;
}

body.portal-page .portal-error-detail {
    font-size: 0.88rem;
    margin-top: 8px;
    line-height: 1.45;
}

body.portal-page .order-items {
    margin-top: 10px;
    padding-left: 18px;
}

body.portal-page .order-items li {
    margin-bottom: 4px;
}

body.portal-page .portal-support-grid {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 20px;
    align-items: start;
}

body.portal-page .ticket-row,
body.portal-page .staff-ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
    padding: 11px 13px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.32);
    font-family: inherit;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

body.portal-page .staff-ticket-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

body.portal-page .ticket-row.active,
body.portal-page .staff-ticket-row.active {
    border-color: rgba(255, 45, 45, 0.45);
    box-shadow: 0 0 0 1px rgba(255, 45, 45, 0.12);
}

body.portal-page .ticket-subj {
    font-weight: 600;
    font-size: 0.88rem;
}

body.portal-page .ticket-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}

body.portal-page .ticket-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.85;
}

body.portal-page #messages-box,
body.portal-page #staff-messages-box {
    max-height: min(420px, 52vh);
    overflow-y: auto;
    padding: 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 45, 45, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.portal-page .msg {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

body.portal-page .msg:last-child {
    border-bottom: none;
}

body.portal-page .msg-role {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.65;
}

body.portal-page .msg-body {
    margin-top: 4px;
    line-height: 1.45;
}

body.portal-page .msg-time {
    font-size: 0.68rem;
    opacity: 0.4;
    display: block;
    margin-top: 4px;
}

body.portal-page .msg-admin .msg-body {
    color: #7dd3fc;
}

body.portal-page .msg-you .msg-body {
    color: var(--text-main);
}

body.portal-page .gate-box {
    padding: 22px;
    max-width: 480px;
}

body.portal-page .gate-box input,
body.portal-page #staff-token-input {
    width: 100%;
    padding: 11px 12px;
    margin: 8px 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 45, 45, 0.15);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
}

body.portal-page .portal-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

body.portal-page .portal-modal[hidden] {
    display: none !important;
}

body.portal-page .portal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
}

body.portal-page .portal-modal-box {
    position: relative;
    max-width: 420px;
    width: 100%;
    padding: 24px;
    z-index: 1;
    border: 1px solid rgba(255, 45, 45, 0.15);
}

body.portal-page .portal-modal-box h3 {
    margin: 0 0 10px;
    color: var(--primary);
}

body.portal-page .portal-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

body.portal-page .portal-announce-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(260px, 340px);
    gap: 18px;
    align-items: start;
}

body.portal-page .portal-md-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

body.portal-page .portal-md-btn {
    min-width: 32px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
    color: #e8eaed;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

body.portal-page .portal-md-btn:hover {
    background: #35373c;
    border-color: rgba(255, 45, 45, 0.35);
    color: #fff;
}

body.portal-page .portal-ann-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.28);
    text-align: left;
}

body.portal-page .portal-ann-row h4 {
    margin: 0 0 4px;
    font-size: 0.92rem;
}

body.portal-page .portal-ann-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

body.portal-page .portal-body.portal-body-md {
    line-height: 1.55;
}

body.portal-page .portal-body.portal-body-md h1,
body.portal-page .portal-body.portal-body-md h2,
body.portal-page .portal-body.portal-body-md h3 {
    margin: 0.75em 0 0.35em;
    color: var(--primary);
}

body.portal-page .portal-body.portal-body-md ul,
body.portal-page .portal-body.portal-body-md ol {
    padding-left: 1.25em;
    margin: 0.5em 0;
}

body.portal-page .portal-body.portal-body-md a {
    color: #93c5fd;
}

body.portal-page .portal-body.portal-body-md code {
    background: rgba(0, 0, 0, 0.45);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

body.portal-page .portal-body.portal-body-md pre {
    background: rgba(0, 0, 0, 0.45);
    padding: 12px;
    border-radius: 8px;
    overflow-x: auto;
}

@media (max-width: 900px) {
    body.portal-page .portal-dc {
        flex-direction: column;
        margin-top: 92px;
    }

    body.portal-page .portal-dc-sidebar {
        flex: none;
        width: 100%;
        border-radius: 14px 14px 0 0;
    }

    body.portal-page .portal-dc-main {
        border-radius: 0 0 14px 14px;
        border-left: 1px solid rgba(255, 45, 45, 0.1);
    }

    body.portal-page .portal-dc-channels {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 10px;
    }

    body.portal-page .portal-ch-cat {
        width: 100%;
        padding: 8px 4px 4px;
    }

    body.portal-page .portal-ch {
        width: auto;
        flex: 1 1 auto;
        min-width: 120px;
    }

    body.portal-page .portal-support-grid {
        grid-template-columns: 1fr;
    }

    body.portal-page .portal-announce-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SUPPORT PAGE — premium hero, cards, FAQ
   ========================================= */
.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;
}

/* Uses global :root — primary gold #FF2D2D, primary-gold #FF5555 */
body.support-page {
    --support-accent: var(--primary);
}

body.support-page .support-hero-v2 {
    padding: 150px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.support-page .support-hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 95% 75% at 50% 100%, rgba(255, 45, 45, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 215, 0, 0.09) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);
    opacity: 1;
}

body.support-page .support-hero-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

body.support-page .support-hero-v2-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 28px 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 45, 45, 0.06),
        inset 0 1px 0 var(--glass-highlight);
    backdrop-filter: blur(12px);
}

body.support-page .support-hero-headline {
    margin: 0 0 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

body.support-page .support-hero-accent {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 45%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.support-page .support-hero-tagline {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

body.support-page .support-steps-v2 {
    padding: 8px 0 100px;
}

body.support-page .support-steps-head {
    text-align: center;
    margin-bottom: 40px;
}

body.support-page .support-steps-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

body.support-page .support-steps-title .hl {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.support-page .support-steps-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
}

body.support-page .support-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

body.support-page .support-step-card {
    background: linear-gradient(165deg, rgba(28, 28, 32, 0.95) 0%, rgba(18, 18, 22, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: visible;
}

body.support-page .support-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 45, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 45, 45, 0.08);
}

body.support-page .support-step-card--featured {
    z-index: 2;
    border-color: rgba(255, 45, 45, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 45, 45, 0.1), 0 8px 32px rgba(255, 45, 45, 0.06);
}

body.support-page .support-step-badge {
    position: absolute;
    top: -10px;
    right: -12px;
    z-index: 4;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    padding: 8px 16px 8px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-gold));
    color: #0a0a0a;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    transform: rotate(8deg);
    transform-origin: 100% 0;
    white-space: nowrap;
    pointer-events: none;
}

body.support-page .support-step-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

body.support-page .support-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 45, 45, 0.2), rgba(255, 215, 0, 0.08));
    border: 2px solid rgba(255, 45, 45, 0.45);
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
}

body.support-page .support-step-card h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    font-family: 'Space Grotesk', sans-serif;
}

body.support-page .support-step-card p {
    flex: 1;
    margin: 0 0 18px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

body.support-page .support-step-actions {
    margin-top: auto;
}

body.support-page .support-step-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: none;
    letter-spacing: 0.02em;
}

body.support-page .btn-support-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

body.support-page .btn-support-secondary:hover {
    background: rgba(255, 45, 45, 0.08);
    border-color: rgba(255, 45, 45, 0.35);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.12);
}

body.support-page .btn-support-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-gold));
    color: #0a0a0a;
    border: none;
}

body.support-page .btn-support-gold:hover {
    filter: brightness(1.08);
    box-shadow: 0 8px 28px rgba(255, 45, 45, 0.35);
}

body.support-page .support-faq-v2 {
    padding: 0 0 120px;
}

body.support-page .support-faq-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

body.support-page .support-faq-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
}

body.support-page .support-faq-lead {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1rem;
}

body.support-page .support-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: border-color 0.2s;
}

body.support-page .support-faq-item[open] {
    border-color: rgba(255, 45, 45, 0.28);
    box-shadow: 0 0 24px rgba(255, 45, 45, 0.06);
}

body.support-page .support-faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #eee;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

body.support-page .support-faq-item summary::-webkit-details-marker {
    display: none;
}

body.support-page .support-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.2s;
}

body.support-page .support-faq-item[open] summary::after {
    transform: rotate(45deg);
}

body.support-page .support-faq-answer {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

body.support-page .support-faq-answer a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.support-page .support-faq-answer a:hover {
    color: var(--primary-gold);
}

body.support-page .support-faq-answer code {
    font-size: 0.88em;
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 6px;
    border-radius: 4px;
    color: #e5e5e5;
}

@media (max-width: 960px) {
    body.support-page .support-steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    body.support-page .support-hero-v2 {
        padding-top: 120px;
    }

    body.support-page .support-step-badge {
        top: -8px;
        right: -8px;
        font-size: 0.52rem;
        padding: 7px 12px 7px 11px;
        transform: rotate(6deg);
    }

    body.support-page .support-step-head {
        flex-wrap: wrap;
    }
}

/* =========================================
   GUIDES PAGE (Helpdesk documentation hub)
   ========================================= */
body.guides-page .guides-hero {
    padding: 150px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.guides-page .guides-hero--compact {
    padding: 130px 0 24px;
}

body.guides-page .guides-hero--compact .guides-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

body.guides-page .guides-hero--compact .guides-hero-lead {
    margin-bottom: 0;
}

body.guides-page .guides-hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 80% at 50% 120%, rgba(255, 45, 45, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 20% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 85% 30%, rgba(255, 45, 45, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);
}

body.guides-page .guides-hero-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='gn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23gn)' opacity='0.035'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

body.guides-page .guides-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 22px;
}

body.guides-page .guides-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

body.guides-page .guides-hero-title {
    margin: 0 0 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

body.guides-page .guides-hero-accent {
    background: linear-gradient(135deg, #fff 0%, var(--primary-gold) 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.guides-page .guides-hero-lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

body.guides-page .guides-embed-section {
    position: relative;
    z-index: 2;
    padding: 0 20px 80px;
    max-width: 1600px;
    margin: 0 auto;
}

body.guides-page .guides-embed-container {
    width: 100%;
}

body.guides-page .guides-embed-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 45, 45, 0.18);
    background: rgba(8, 8, 10, 0.65);
}

body.guides-page .guides-embed-toolbar-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    text-align: left;
}

body.guides-page .guides-embed-badge {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--primary), var(--primary-gold));
}

body.guides-page .guides-embed-hint {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.45;
}

body.guides-page .guides-embed-hint a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.guides-page .guides-embed-open-tab {
    text-transform: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

body.guides-page .guides-embed-frame-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 45, 45, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    background: #070708;
}

body.guides-page .guides-embed-iframe {
    display: block;
    width: 100%;
    height: min(86vh, 920px);
    min-height: 560px;
    border: none;
    background: #0a0a0a;
}

body.guides-page .guides-embed-footnote {
    margin: 12px 4px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 768px) {
    body.guides-page .guides-hero {
        padding-top: 120px;
    }

    body.guides-page .guides-hero--compact {
        padding-bottom: 18px;
    }

    body.guides-page .guides-embed-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    body.guides-page .guides-embed-open-tab {
        width: 100%;
        justify-content: center;
    }

    body.guides-page .guides-embed-iframe {
        height: 75vh;
        min-height: 480px;
    }
}


/* =========================================
   CREED - GLOW POLISH + FAQ PAGE (2026 refresh)
   Additive premium glow; keeps the gold brand.
   ========================================= */

/* --- Buttons: cleaner, glowing --- */
.btn {
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn-primary {
    color: #140f03;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 0 18px rgba(255, 45, 45, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 34px rgba(255, 45, 45, 0.55), 0 6px 22px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-primary i { color: #140f03; }
.btn-secondary {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.btn-secondary:hover {
    box-shadow: 0 0 22px rgba(255, 45, 45, 0.22);
}

/* --- Hero: sharper, glowing accent --- */
.hero-highlight {
    text-shadow: 0 0 26px rgba(255, 45, 45, 0.55), 0 0 60px rgba(255, 45, 45, 0.25);
}
.hero-tagline {
    text-shadow: 0 0 18px rgba(255, 45, 45, 0.35);
}
.hero h1 {
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

/* --- Section tags / pills glow --- */
.section-tag {
    box-shadow: 0 0 18px rgba(255, 45, 45, 0.10);
}

/* --- Nav: glowing active/hover --- */
.nav-links a.active,
.nav-links a:hover {
    text-shadow: 0 0 14px rgba(255, 45, 45, 0.45);
}

/* --- Cards: subtle hover glow --- */
.product-card,
.bento-item,
.vouch-card,
.hero-stat-item {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover,
.bento-item:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 26px rgba(255, 45, 45, 0.14);
    border-color: rgba(255, 45, 45, 0.4);
}

/* =========================================
   FAQ PAGE (redesigned)
   ========================================= */

/* --- Hero --- */
body.faq-page .faq-hero {
    position: relative;
    padding: 150px 20px 30px;
    text-align: center;
    overflow: hidden;
}

body.faq-page .faq-hero-glow {
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 120%);
    height: 460px;
    background: radial-gradient(ellipse at center, rgba(255, 45, 45, 0.16) 0%, rgba(255, 45, 45, 0.05) 42%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

body.faq-page .faq-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

body.faq-page .faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.32);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    box-shadow: 0 0 24px rgba(255, 45, 45, 0.16);
}

body.faq-page .faq-hero h1 {
    margin: 22px 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.3rem, 6vw, 3.9rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
}

body.faq-page .faq-hl {
    color: var(--primary);
    text-shadow: 0 0 28px rgba(255, 45, 45, 0.5), 0 0 70px rgba(255, 45, 45, 0.22);
}

body.faq-page .faq-lead {
    margin: 16px auto 0;
    max-width: 560px;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

/* --- Search --- */
body.faq-page .faq-search-wrap {
    position: relative;
    max-width: 480px;
    margin: 30px auto 0;
}

body.faq-page .faq-search-wrap input {
    width: 100%;
    padding: 15px 46px 15px 48px;
    border-radius: 14px;
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

body.faq-page .faq-search-wrap input::placeholder {
    color: #6d6d6d;
}

body.faq-page .faq-search-wrap input:focus {
    border-color: rgba(255, 45, 45, 0.55);
    background: rgba(16, 14, 8, 0.95);
    box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.10), 0 0 30px rgba(255, 45, 45, 0.14);
}

body.faq-page .faq-search-ico {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.95rem;
    pointer-events: none;
}

body.faq-page .faq-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.07);
    color: #cfcfcf;
    font-size: 1.15rem;
    line-height: 1;
    cursor: none;
    transition: background .2s ease, color .2s ease;
}

body.faq-page .faq-search-clear:hover {
    background: rgba(255, 45, 45, 0.2);
    color: var(--primary);
}

/* --- Trust pills --- */
body.faq-page .faq-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

body.faq-page .faq-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c9c9c9;
    font-size: 0.8rem;
    font-weight: 600;
}

body.faq-page .faq-trust-pill i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* --- Filters --- */
body.faq-page .faq-body {
    max-width: 880px;
    margin: 0 auto;
    padding: 34px 20px 20px;
}

body.faq-page .faq-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 26px;
}

body.faq-page .faq-chip {
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #b9b9b9;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: none;
    transition: all .25s ease;
}

body.faq-page .faq-chip:hover {
    color: #fff;
    border-color: rgba(255, 45, 45, 0.4);
}

body.faq-page .faq-chip.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #140f03;
    box-shadow: 0 0 22px rgba(255, 45, 45, 0.4);
}

/* --- Accordion list --- */
body.faq-page .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.faq-page .faq-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.014) 100%);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

body.faq-page .faq-item[hidden] {
    display: none;
}

body.faq-page .faq-item:hover {
    border-color: rgba(255, 45, 45, 0.34);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.36), 0 0 24px rgba(255, 45, 45, 0.09);
}

body.faq-page .faq-item.active {
    border-color: rgba(255, 45, 45, 0.55);
    background: linear-gradient(180deg, rgba(255, 45, 45, 0.055) 0%, rgba(255, 255, 255, 0.012) 100%);
    box-shadow: 0 0 34px rgba(255, 45, 45, 0.13);
}

/* header is a <button> - reset it */
body.faq-page .faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    cursor: none;
}

body.faq-page .faq-question-group {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

body.faq-page .faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(145deg, #FF5555 0%, #FF2D2D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255, 45, 45, 0.28);
    transition: transform .25s ease, box-shadow .25s ease;
    filter: none;
}

body.faq-page .faq-item.active .faq-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 45, 45, 0.45);
}

body.faq-page .faq-icon-logo {
    width: 21px;
    height: 21px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

body.faq-page .faq-question {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

body.faq-page .toggle-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 45, 45, 0.1);
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    transition: transform .3s ease, background .25s ease;
}

body.faq-page .faq-item.active .toggle-icon {
    transform: rotate(135deg);
    background: rgba(255, 45, 45, 0.22);
}

body.faq-page .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 22px 0 77px;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.72;
    transition: max-height .35s ease, opacity .3s ease, padding .35s ease;
}

body.faq-page .faq-answer p {
    margin: 0;
}

body.faq-page .faq-item.active .faq-answer {
    max-height: 400px;
    opacity: 1;
    padding-bottom: 21px;
}

body.faq-page .faq-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 40px 20px;
}

body.faq-page .faq-empty i {
    color: var(--primary);
    margin-right: 8px;
}

/* --- Still need help CTA --- */
body.faq-page .faq-cta {
    max-width: 880px;
    margin: 20px auto 0;
    padding: 20px 20px 100px;
    text-align: center;
}

body.faq-page .faq-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.8px;
    color: #fff;
    margin: 0;
}

body.faq-page .faq-cta-inner > p {
    margin: 12px auto 28px;
    max-width: 460px;
    color: var(--text-muted);
    font-size: 0.97rem;
}

body.faq-page .faq-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

body.faq-page .faq-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 26px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.014) 100%);
    border: 1px solid rgba(255, 255, 255, 0.075);
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

body.faq-page .faq-cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 45, 0.45);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 45, 45, 0.14);
}

body.faq-page .faq-cta-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 45, 45, 0.11);
    border: 1px solid rgba(255, 45, 45, 0.28);
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 4px;
    transition: background .25s ease, box-shadow .25s ease;
}

body.faq-page .faq-cta-card:hover .faq-cta-ico {
    background: rgba(255, 45, 45, 0.2);
    box-shadow: 0 0 22px rgba(255, 45, 45, 0.3);
}

body.faq-page .faq-cta-card strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

body.faq-page .faq-cta-card em {
    color: var(--text-muted);
    font-size: 0.84rem;
    font-style: normal;
    line-height: 1.5;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    body.faq-page .faq-hero {
        padding: 120px 18px 20px;
    }

    body.faq-page .faq-header {
        padding: 16px 17px;
        gap: 12px;
    }

    body.faq-page .faq-question {
        font-size: 0.93rem;
    }

    body.faq-page .faq-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    body.faq-page .faq-icon-logo {
        width: 18px;
        height: 18px;
    }

    body.faq-page .faq-answer {
        padding-left: 63px;
        padding-right: 17px;
        font-size: 0.89rem;
    }

    body.faq-page .faq-item.active .faq-answer {
        max-height: 520px;
    }

    body.faq-page .faq-filters {
        gap: 8px;
    }

    body.faq-page .faq-chip {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    body.faq-page .faq-cta {
        padding-bottom: 70px;
    }
}


/* =========================================
   CREED - REVIEWS PAGE (cards, stats, pagination)
   ========================================= */

/* --- Summary stats bar --- */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin: 0 0 28px;
}

.review-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.014) 100%);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.review-stat-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8d8d8d;
}

.review-stat-label i {
    color: var(--primary);
}

.review-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.review-stat-sub {
    font-size: 0.78rem;
    color: #7d7d7d;
}

.review-stat-stars {
    display: flex;
    gap: 3px;
    font-size: 0.8rem;
}

/* --- Review card --- */
.review-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid rgba(255, 255, 255, 0.075);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.review-card:hover {
    border-color: rgba(255, 45, 45, 0.32);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), 0 0 24px rgba(255, 45, 45, 0.08);
}

.review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 45, 45, 0.14);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.review-user-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.review-name {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 0.73rem;
    color: #767676;
}

.review-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
    font-size: 0.78rem;
}

/* --- Product tags --- */
.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.review-tag-product {
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 45, 45, 0.13);
    border: 1px solid rgba(255, 45, 45, 0.3);
    color: var(--primary);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.review-tag-plan {
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #a9a9a9;
    font-size: 0.68rem;
    font-weight: 600;
}

.review-text {
    margin: 0;
    color: #c6c6c6;
    font-size: 0.9rem;
    line-height: 1.65;
    word-break: break-word;
}

.review-proof a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--primary);
    text-decoration: none;
}

.review-proof a:hover {
    text-decoration: underline;
}

/* --- Staff reply --- */
.review-reply {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 13px 15px;
    border-radius: 12px;
    background: rgba(255, 45, 45, 0.05);
    border: 1px solid rgba(255, 45, 45, 0.16);
    border-left: 3px solid rgba(255, 45, 45, 0.5);
}

.review-reply-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-reply-avatar {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-reply-avatar img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

.review-reply-name {
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.review-reply-text {
    margin: 0;
    color: #b4b4b4;
    font-size: 0.83rem;
    line-height: 1.6;
}

.review-reply-date {
    font-size: 0.68rem;
    color: #6f6f6f;
}

/* --- Footer / verified badge --- */
.review-foot {
    margin-top: auto;
    padding-top: 4px;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(46, 204, 113, 0.09);
    border: 1px solid rgba(46, 204, 113, 0.26);
    color: #39d98a;
    font-size: 0.7rem;
    font-weight: 700;
}

/* --- Star colours (shared) --- */
.vouch-star.is-on {
    color: var(--primary);
}

.vouch-star.is-off {
    color: #3a3a3a;
}

/* --- Pagination --- */
.reviews-page-info {
    text-align: center;
    color: #7f7f7f;
    font-size: 0.82rem;
    margin: 28px 0 12px;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.review-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c2c2c2;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: none;
    transition: all .2s ease;
}

.review-page-btn:hover:not(:disabled) {
    color: #fff;
    border-color: rgba(255, 45, 45, 0.42);
}

.review-page-btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #140f03;
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.35);
}

.review-page-btn:disabled {
    opacity: 0.35;
}

.review-page-gap {
    color: #5f5f5f;
    padding: 0 2px;
}

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

    .review-stat {
        padding: 16px 18px;
    }

    .review-stat-value {
        font-size: 1.7rem;
    }

    .review-card {
        padding: 17px;
    }
}


/* =========================================
   PRODUCT INFO COLUMNS (Information / Why Creed?)
   Was locked to 3 equal columns, so a 2-card section always left a dead
   third column. Now it fits the cards it actually has and matches the
   feature-card styling above it.
   ========================================= */
.product-features-detailed {
    margin-bottom: 22px;
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
}

.info-column {
    position: relative;
    overflow: hidden;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 18px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.info-column::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity .25s ease;
}

.info-column:hover {
    border-color: rgba(255, 45, 45, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 26px rgba(255, 45, 45, 0.10);
}

.info-column:hover::before {
    opacity: 1;
}

.info-column-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.info-column-title i {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 45, 45, 0.12);
    border: 1px solid rgba(255, 45, 45, 0.28);
    color: var(--primary);
    font-size: 0.88rem;
    transition: background .25s ease, box-shadow .25s ease;
}

.info-column:hover .info-column-title i {
    background: rgba(255, 45, 45, 0.2);
    box-shadow: 0 0 18px rgba(255, 45, 45, 0.28);
}

.info-list {
    padding: 0;
    margin: 0;
    gap: 9px;
}

.info-list li {
    gap: 10px;
    color: #b4b4b4;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color .2s ease, transform .2s ease;
}

.info-list li:hover {
    color: #fff;
    transform: translateX(3px);
}

.info-list li i {
    flex-shrink: 0;
    font-size: 0.68rem;
    width: 14px;
    margin-top: 5px;
    text-align: center;
}

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

    .info-column {
        padding: 18px;
        border-radius: 15px;
    }

    .info-column-title {
        font-size: 0.98rem;
        gap: 10px;
        margin-bottom: 13px;
        padding-bottom: 12px;
    }

    .info-column-title i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .info-list li {
        font-size: 0.87rem;
    }
}

/* --- Chatbot rich text (bot replies rendered from light markdown) --- */
.chatbot-message-content p {
    margin: 0 0 8px;
}

.chatbot-message-content p:last-child {
    margin-bottom: 0;
}

.chatbot-message-content strong {
    color: var(--primary);
    font-weight: 700;
}

.chatbot-message.user .chatbot-message-content strong {
    color: #000;
}

.chatbot-list {
    list-style: none;
    margin: 8px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chatbot-list:last-child {
    margin-bottom: 0;
}

.chatbot-list li {
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
}

.chatbot-list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

.chatbot-message.user .chatbot-list li::before {
    background: #000;
}

.chatbot-message-content code {
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9em;
}


/* =========================================
   CREED — FOOTER (2026 refresh)
   ========================================= */
.footer .footer-content {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1.15fr 1fr;
    gap: 50px;
    align-items: start;
}

.footer-column-brand {
    max-width: 460px;
}

.footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer .footer-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.footer .footer-brand h3 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
}

.footer .footer-description {
    color: #8f8f8f;
    font-size: 0.86rem;
    line-height: 1.75;
    margin: 0 0 14px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #b6b6b6;
    font-size: 0.72rem;
    font-weight: 700;
}

.footer-trust-chip i {
    color: var(--primary);
    font-size: 0.75rem;
}

.footer .footer-column h4 {
    margin: 0 0 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;
}

.footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer .footer-links a {
    display: inline-block;
    color: #8f8f8f;
    font-size: 0.87rem;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer .footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* --- Newsletter --- */
.footer-newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 55px;
    padding: 26px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 45, 45, 0.18);
}

.footer-newsletter-copy h4 {
    margin: 0 0 5px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    text-transform: none;
}

.footer-newsletter-copy h4 span {
    color: var(--primary);
}

.footer-newsletter-copy p {
    margin: 0;
    color: #8f8f8f;
    font-size: 0.85rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 300px;
    max-width: 460px;
}

.footer-newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 13px 16px;
    border-radius: 11px;
    background: rgba(10, 10, 12, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 0.88rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.footer-newsletter-form input::placeholder {
    color: #6b6b6b;
}

.footer-newsletter-form input:focus {
    border-color: rgba(255, 45, 45, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.1);
}

.footer-newsletter-form .btn {
    padding: 13px 24px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.footer-newsletter-msg {
    flex-basis: 100%;
    margin: 0;
    font-size: 0.84rem;
    color: var(--primary);
}

.footer-newsletter-msg.is-error {
    color: #ff6b6b;
}

/* --- Bottom bar --- */
.footer .footer-bottom {
    margin-top: 45px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.footer .footer-bottom-content p {
    margin: 0;
    color: #6f6f6f;
    font-size: 0.8rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-right a {
    color: #8f8f8f;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-bottom-right a:hover {
    color: var(--primary);
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9a9a9a;
    font-size: 0.8rem;
}

.footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    animation: footerStatusPulse 2.2s infinite;
}

@keyframes footerStatusPulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
    70% { box-shadow: 0 0 0 7px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .footer .footer-content {
        grid-template-columns: 1.6fr 1fr 1fr;
        gap: 40px;
    }

    .footer-column-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    /* !important is needed to beat a legacy mobile override further up
       that forces .footer-content to a single column. */
    .footer .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 24px !important;
        text-align: left;
    }

    .footer .footer-brand {
        justify-content: flex-start;
    }

    .footer-newsletter {
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        margin-top: 40px;
    }

    .footer-newsletter-form {
        max-width: none;
        min-width: 0;
    }

    .footer .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-right {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    /* Keep the link lists two-up so the footer doesn't become a mile long */
    .footer .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 18px !important;
    }

    .footer .footer-column h4 {
        margin-bottom: 14px;
    }

    .footer .footer-links {
        gap: 9px;
    }

    .footer .footer-links a {
        font-size: 0.83rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-form .btn {
        width: 100%;
    }
}


/* =========================================
   PRODUCTS — "HELP ME CHOOSE" SECTION
   Replaces a flat h2 + two buttons. Three concrete routes answer the
   question directly, and only the first is styled as the primary action
   so the hierarchy reads at a glance.
   ========================================= */
.choose-help {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.choose-help-glow {
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 110%);
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(255, 45, 45, 0.13) 0%, rgba(255, 45, 45, 0.04) 45%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.choose-help-head {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 42px;
}

.choose-help-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.32);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    box-shadow: 0 0 22px rgba(255, 45, 45, 0.15);
}

.choose-help-head h2 {
    margin: 20px 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.9rem, 4.2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #fff;
}

.choose-help-head h2 span {
    color: var(--primary);
    text-shadow: 0 0 28px rgba(255, 45, 45, 0.45);
}

.choose-help-head p {
    margin: 14px 0 0;
    color: #8f8f8f;
    font-size: 0.98rem;
}

/* --- cards --- */
.choose-help-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.choose-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    /* generous target area — well past the 44px minimum */
    padding: 28px 24px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.014) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.choose-card:hover,
.choose-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 45, 0.42);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 45, 45, 0.12);
    outline: none;
}

/* keep a visible focus ring for keyboard users */
.choose-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.45), 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* only one primary action on the section */
.choose-card.is-primary {
    background: linear-gradient(180deg, rgba(255, 45, 45, 0.12) 0%, rgba(255, 45, 45, 0.03) 100%);
    border-color: rgba(255, 45, 45, 0.38);
}

.choose-card.is-primary:hover {
    border-color: var(--primary);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 34px rgba(255, 45, 45, 0.22);
}

.choose-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--primary);
    color: #140f03;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.choose-card-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(255, 45, 45, 0.12);
    border: 1px solid rgba(255, 45, 45, 0.28);
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 4px;
    transition: background .22s ease, box-shadow .22s ease;
}

.choose-card:hover .choose-card-icon {
    background: rgba(255, 45, 45, 0.22);
    box-shadow: 0 0 22px rgba(255, 45, 45, 0.3);
}

.choose-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #fff;
}

.choose-card-text {
    color: #909090;
    font-size: 0.87rem;
    line-height: 1.6;
    flex: 1;
}

.choose-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--primary);
    font-size: 0.83rem;
    font-weight: 700;
}

.choose-card-action i {
    font-size: 0.72rem;
    transition: transform .22s ease;
}

.choose-card:hover .choose-card-action i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .choose-help {
        padding: 55px 0 70px;
    }

    .choose-help-head {
        margin-bottom: 30px;
    }

    .choose-help-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .choose-card {
        padding: 22px 20px 20px;
    }
}

/* someone with reduced-motion shouldn't get the lift/slide */
@media (prefers-reduced-motion: reduce) {
    .choose-card,
    .choose-card-icon,
    .choose-card-action i {
        transition: none;
    }

    .choose-card:hover {
        transform: none;
    }

    .choose-card:hover .choose-card-action i {
        transform: none;
    }
}


/* =========================================
   HOMEPAGE — FEATURE BENTO + STEPS (2026 refresh)
   The old cards were icon + title + one line, which left large empty
   areas in the wide bento tiles. Each card now leads with a real number
   so the space carries proof instead of padding.
   ========================================= */

/* --- freshness strip under the section header --- */
.freshness-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.freshness-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a2a2a2;
    font-size: 0.75rem;
    font-weight: 600;
}

.freshness-chip i {
    color: var(--primary);
    font-size: 0.75rem;
}

.freshness-chip.is-live {
    background: rgba(46, 204, 113, 0.08);
    border-color: rgba(46, 204, 113, 0.28);
    color: #46d98d;
}

.freshness-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    animation: freshPulse 2.2s infinite;
}

@keyframes freshPulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
    70% { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* --- bento --- */
.feature-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.fb-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.014) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* soft gold wash in the corner, brightens on hover */
.fb-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.16), transparent 65%);
    opacity: .55;
    transition: opacity .25s ease;
    pointer-events: none;
}

.fb-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 45, 0.4);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.45), 0 0 30px rgba(255, 45, 45, 0.12);
}

.fb-card:hover::after { opacity: 1; }

.fb-card--wide { grid-column: span 2; }

.fb-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.fb-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 45, 45, 0.12);
    border: 1px solid rgba(255, 45, 45, 0.3);
    color: var(--primary);
    transition: background .25s ease, box-shadow .25s ease;
}

.fb-icon .material-symbols-outlined { font-size: 24px; }

.fb-card:hover .fb-icon {
    background: rgba(255, 45, 45, 0.22);
    box-shadow: 0 0 24px rgba(255, 45, 45, 0.32);
}

.fb-live,
.fb-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.fb-live {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #46d98d;
}

.fb-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    animation: freshPulse 2.2s infinite;
}

.fb-chip {
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.3);
    color: var(--primary);
}

.fb-stat {
    margin-top: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255, 45, 45, 0.35);
}

.fb-stat span {
    font-size: 0.42em;
    letter-spacing: 0;
    color: #9a9a9a;
    margin-left: 4px;
    text-shadow: none;
}

.fb-card h3 {
    margin: 4px 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: #fff;
}

.fb-card p {
    margin: 0;
    color: #909090;
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
}

.fb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--primary);
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
}

.fb-link i { font-size: 0.72rem; transition: transform .25s ease; }
.fb-link:hover i { transform: translateX(4px); }

/* --- steps --- */
.steps-track {
    position: relative;
    list-style: none;
    margin: 46px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* the connecting rail behind the numbers */
.steps-track::before {
    content: '';
    position: absolute;
    top: 19px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 45, 45, 0.5), rgba(255, 45, 45, 0.22));
    z-index: 0;
}

.step-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

.step-node-dot {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #140f03;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 0 0 6px rgba(10, 10, 12, 1), 0 0 24px rgba(255, 45, 45, 0.45);
}

.step-node-card {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid rgba(255, 255, 255, 0.075);
    text-align: center;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.step-node:hover .step-node-card {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 45, 0.38);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 26px rgba(255, 45, 45, 0.1);
}

.step-node-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 45, 45, 0.11);
    border: 1px solid rgba(255, 45, 45, 0.26);
    color: var(--primary);
}

.step-node-icon .material-symbols-outlined { font-size: 22px; }

.step-node-card h3 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
}

.step-node-card p {
    margin: 0;
    color: #8f8f8f;
    font-size: 0.86rem;
    line-height: 1.6;
    flex: 1;
}

.step-node-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #9d9d9d;
    font-size: 0.71rem;
    font-weight: 600;
}

.step-node-time i { color: var(--primary); font-size: 0.68rem; }

.steps-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 44px;
}

/* --- responsive --- */
@media (max-width: 1024px) {
    .feature-bento { grid-template-columns: repeat(2, 1fr); }
    .fb-card--wide { grid-column: span 2; }

    .steps-track { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
    .steps-track::before { display: none; }
}

@media (max-width: 640px) {
    .feature-bento { grid-template-columns: 1fr; gap: 14px; }
    .fb-card--wide { grid-column: span 1; }
    .fb-card { padding: 22px; }

    .steps-track { grid-template-columns: 1fr; gap: 22px; }
    .freshness-chip { font-size: 0.7rem; padding: 6px 12px; }
    .steps-cta .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .fb-card, .step-node-card, .fb-link i, .fb-icon { transition: none; }
    .fb-card:hover, .step-node:hover .step-node-card { transform: none; }
    .fb-link:hover i { transform: none; }
    .freshness-dot, .fb-live-dot { animation: none; }
}

/* Footer link icons — fixed-width gutter so the labels stay aligned
   regardless of how wide each glyph is. */
.footer .footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .footer-links a i {
    width: 15px;
    flex-shrink: 0;
    text-align: center;
    font-size: 0.78rem;
    color: #6f6f6f;
    transition: color .2s ease;
}

.footer .footer-links a:hover i {
    color: var(--primary);
}


/* =========================================
   SHARED PAGE-END CTA
   Same three-card ending the FAQ page uses, made reusable so every page
   closes the same way instead of trailing off into the footer.
   ========================================= */
.page-cta {
    position: relative;
    overflow: hidden;
    padding: 70px 20px 90px;
    text-align: center;
}

.page-cta-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 115%);
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 45, 45, 0.11) 0%, rgba(255, 45, 45, 0.03) 45%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.page-cta-inner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.page-cta h2 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.8px;
    color: #fff;
}

.page-cta h2 span {
    color: var(--primary);
    text-shadow: 0 0 26px rgba(255, 45, 45, 0.4);
}

.page-cta > .page-cta-inner > p {
    margin: 12px auto 30px;
    max-width: 480px;
    color: #8f8f8f;
    font-size: 0.97rem;
    line-height: 1.6;
}

.page-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.page-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 26px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.014) 100%);
    border: 1px solid rgba(255, 255, 255, 0.075);
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.page-cta-card:hover,
.page-cta-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 45, 0.45);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 45, 45, 0.14);
    outline: none;
}

.page-cta-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.45), 0 16px 38px rgba(0, 0, 0, 0.45);
}

.page-cta-ico {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(255, 45, 45, 0.11);
    border: 1px solid rgba(255, 45, 45, 0.28);
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 4px;
    transition: background .25s ease, box-shadow .25s ease;
}

.page-cta-card:hover .page-cta-ico {
    background: rgba(255, 45, 45, 0.2);
    box-shadow: 0 0 22px rgba(255, 45, 45, 0.3);
}

.page-cta-card strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.page-cta-card em {
    color: #8f8f8f;
    font-size: 0.84rem;
    font-style: normal;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .page-cta { padding: 50px 18px 60px; }
    .page-cta-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .page-cta-card, .page-cta-ico { transition: none; }
    .page-cta-card:hover { transform: none; }
}

/* Nav gained a 7th item (Free Trial), which pushed labels onto two lines on
   mid-size laptops. Keep each label on one line and let the gap flex down. */
.nav-links a {
    white-space: nowrap;
}

@media (max-width: 1400px) {
    .nav-links { gap: 22px; }
}

@media (max-width: 1240px) {
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 0.8rem; letter-spacing: 0.6px; gap: 6px; }
}

@media (max-width: 1100px) {
    .nav-links a i { display: none; }
}

/* =========================================
   SECTION TAG → PILL
   It was display:block with a glow, so it stretched the full width of the
   section header and read as a strange glowing bar. Matches the
   "Need a hand?" eyebrow pill everywhere now.
   ========================================= */
.section-tag,
.section-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    padding: 7px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.32);
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 0 22px rgba(255, 45, 45, 0.16);
}

.section-tag i {
    font-size: 0.72rem;
    color: var(--primary);
}

/* The CTA glow sat at top:-150px inside an overflow:hidden section, so the
   gradient was still bright where it got clipped — that left a hard
   horizontal seam across the top of the section. Starting it at the section
   edge means the transparent end of the gradient is what meets the cut. */
.page-cta-glow {
    top: 0;
    height: 460px;
    width: min(900px, 100%);
}

/* =========================================
   CHECKOUT MODAL — order summary, payment detail, trust row
   ========================================= */
.checkout-summary {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 45, 45, 0.05);
    border: 1px solid rgba(255, 45, 45, 0.2);
}

.checkout-summary-head {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #8f8f8f;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.checkout-summary-items {
    list-style: none;
    margin: 11px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.checkout-summary-items li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.86rem;
    color: #d2d2d2;
}

.cs-name { flex: 1; min-width: 0; }

.cs-name em {
    display: block;
    color: #8a8a8a;
    font-size: 0.76rem;
    font-style: normal;
    margin-top: 2px;
}

.cs-qty { color: #8a8a8a; font-size: 0.8rem; }
.cs-price { color: #fff; font-weight: 700; white-space: nowrap; }

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-top: 11px;
    font-size: 0.83rem;
}

.checkout-summary-row.is-discount { color: #46d98d; }
.checkout-summary-row.is-discount i { margin-right: 5px; }

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: #c9c9c9;
}

.checkout-summary-total strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
}

.checkout-summary-total em {
    font-size: 0.62rem;
    font-style: normal;
    color: #8a8a8a;
    margin-left: 3px;
}

/* payment options */
.payment-method-card {
    display: flex;
    align-items: center;
    gap: 13px;
}

.pm-text { flex: 1; min-width: 0; }

.pm-text strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
}

.pm-text em {
    display: block;
    color: #8a8a8a;
    font-size: 0.76rem;
    font-style: normal;
    line-height: 1.45;
    margin-top: 2px;
}

.pm-badge {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #46d98d;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pm-badge.is-manual {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #9a9a9a;
}

.checkout-error {
    margin: 14px 0 0;
    padding: 10px 13px;
    border-radius: 10px;
    background: rgba(255, 91, 91, 0.1);
    border: 1px solid rgba(255, 91, 91, 0.3);
    color: #ff8080;
    font-size: 0.83rem;
}

.checkout-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #7f7f7f;
    font-size: 0.75rem;
}

.checkout-trust i { color: var(--primary); margin-right: 6px; }

#submit-checkout { min-width: 170px; }

@media (max-width: 480px) {
    .checkout-summary { padding: 14px; }
    .checkout-summary-total strong { font-size: 1.25rem; }
    .pm-badge { display: none; }
    .checkout-trust { gap: 6px 12px; font-size: 0.7rem; }
}

/* =========================================
   CHECKOUT MODAL — corrections
   .payment-method-card span { flex:1 } was also catching .pm-badge, so the
   Instant/Manual tags stretched to fill half the row. Pin them to their
   content and shrink them back to a proper tag.
   ========================================= */
.payment-method-card .pm-badge {
    flex: 0 0 auto;
    width: auto;
    align-self: center;
    padding: 4px 9px;
    border-radius: 6px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    line-height: 1.4;
    text-transform: uppercase;
    background: rgba(46, 204, 113, 0.14);
    border: 1px solid rgba(46, 204, 113, 0.35);
    color: #46d98d;
}

.payment-method-card .pm-badge.is-manual {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: #9a9a9a;
}

.payment-method-card .pm-text {
    flex: 1 1 auto;
    min-width: 0;
}

/* icons were oversized next to the new two-line labels */
.payment-method-card i {
    flex: 0 0 auto;
    width: 26px;
    font-size: 1.35rem;
    text-align: center;
}

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

.payment-method-card {
    border-radius: 14px;
    border-width: 1px;
    padding: 14px 16px;
    gap: 13px;
}

.payment-method-option input:checked + .payment-method-card {
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.07);
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.14);
}

/* --- modal shell --- */
.checkout-form-content {
    padding: 30px 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, #16161a 0%, #101013 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(255, 45, 45, 0.06);
}

.checkout-form-modal input {
    border-radius: 11px !important;
}

.checkout-form-close {
    border-radius: 10px;
}

@media (max-width: 480px) {
    .checkout-form-content { padding: 22px 18px; border-radius: 18px; }
    .payment-method-card { padding: 12px 13px; gap: 10px; }
    .payment-method-card .pm-badge { display: inline-block; }
}

/* =========================================
   COUPON INPUT — mobile fix
   .coupon-input had flex:1 but no min-width, and a flex item defaults to
   min-width:auto — so it refused to shrink below the intrinsic width of its
   placeholder (234px). On phones <=375px that pushed the Apply button off the
   screen edge and made the field impossible to use.
   ========================================= */
.coupon-input {
    min-width: 0;
}

.coupon-input-group {
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .coupon-input-group {
        gap: 8px;
    }

    /* 16px stops iOS auto-zooming the page when the field is focused */
    .coupon-input {
        flex: 1 1 140px;
        font-size: 16px;
        padding: 12px 14px;
        min-height: 46px;
    }

    .btn-coupon {
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 0.88rem;
        min-height: 46px;
    }
}

@media (max-width: 340px) {
    /* no room for both on one line — stack them rather than clip */
    .coupon-input { flex: 1 1 100%; }
    .btn-coupon { flex: 1 1 100%; width: 100%; }
}

/* Same trap in the checkout modal's own inputs */
.checkout-form-modal input { min-width: 0; }

@media (max-width: 480px) {
    .checkout-form-modal input { font-size: 16px !important; }
}

/* =========================================
   CHECKOUT BANNER
   Brand image across the top of the modal, fading into the panel so it
   reads as part of the sheet rather than a pasted-in picture.
   ========================================= */
.checkout-form-content {
    /* the banner bleeds to the panel edges */
    padding-top: 0 !important;
    overflow: hidden;
}

.checkout-banner {
    position: relative;
    margin: 0 -28px 0;
    height: 150px;
    overflow: hidden;
}

.checkout-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

/* fades the image into the panel background */
.checkout-banner-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(18, 18, 22, 0.15) 0%,
        rgba(18, 18, 22, 0.42) 45%,
        rgba(19, 19, 23, 0.92) 82%,
        #131317 100%);
    pointer-events: none;
}

/* close button now sits over the image */
.checkout-banner .checkout-form-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background .2s ease, color .2s ease;
}

.checkout-banner .checkout-form-close:hover {
    background: rgba(255, 45, 45, 0.9);
    color: #140f03;
}

.checkout-form-header {
    margin-top: 14px;
    padding-bottom: 4px;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .checkout-banner { margin: 0 -18px 0; height: 116px; }
    .checkout-form-header { margin-top: 12px; }
}

/* =========================================
   CHECKOUT MODAL — fit on screen, no scrolling
   =========================================
   Two separate problems were making checkout unreachable:

   1. The `overflow: hidden` added alongside the banner overrode the panel's
      `overflow-y: auto`, so the 1197px form was clipped inside a 760px panel
      with no way to scroll — the Pay button simply could not be reached.
   2. Even with scrolling restored, the form was far taller than the viewport.

   Scrolling is restored below as a safety net (content must never be trapped
   again), but the real fix is the compaction: the whole form now fits on a
   normal phone screen, so the Pay button is visible without scrolling at all.
   ========================================= */

.checkout-form-content {
    /* Never trap content again. Horizontal stays clipped so the banner keeps
       its rounded corners; vertical is always escapable. */
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 94vh;
    padding-bottom: 18px !important;
}

/* Decorative banner: gone entirely when height is scarce (see media query
   below), so it only ever renders where there is room for it.

   The artwork is 960x540 (16:9). Squeezing that into a ~6:1 strip with
   `object-fit: cover` displayed barely a quarter of its height and sliced the
   logo in half. `contain` shows the whole thing, and the panel-coloured
   backdrop lets the letterboxing disappear into the modal. */
/* The artwork is 960x540 (16:9). `contain` showed all of it but left it
   floating as an island with hard edges against the panel. `cover` keeps it
   full-bleed, and a taller strip means the crop is gentle enough to keep the
   whole logo — the earlier 74px band was what sliced it in half. */
.checkout-banner {
    height: 132px;
    background: #131317;
}

.checkout-banner img {
    object-fit: cover;
    object-position: center 42%;
}

.checkout-form-header { margin-top: 10px !important; margin-bottom: 14px !important; }
.checkout-form-header h2 { font-size: 1.22rem; line-height: 1.22; }

/* Order summary */
.checkout-summary { margin-bottom: 12px; padding: 10px 12px; }
.checkout-summary-head { padding-bottom: 6px; font-size: 0.62rem; }
.checkout-summary-items li { padding: 4px 0; font-size: 0.8rem; }
.checkout-summary-total { padding-top: 6px; }
.checkout-summary-total strong { font-size: 1.2rem; }

/* Field groups */
.checkout-form-content .form-group { margin-bottom: 12px; }
.checkout-form-content .form-group label { margin-bottom: 6px; font-size: 0.8rem; }
.checkout-form-content .form-group small { margin-top: 4px; font-size: 0.7rem; line-height: 1.35; }
.checkout-form-modal input { padding: 11px 13px; }

/* Payment methods — the single tallest block before compaction */
.payment-methods { gap: 7px; }
.payment-method-card { padding: 9px 12px; gap: 10px; border-radius: 12px; }
.payment-method-card i { font-size: 1.05rem; }
.payment-method-card strong { font-size: 0.86rem; }
/* The per-method blurb wrapped to two lines and was the single biggest cost
   (~25px x 3 cards). The Instant/Manual badge already carries the part that
   actually affects the buyer's choice, so the prose goes. */
.payment-method-card .pm-text em { display: none; }

/* Actions + trust row */
.checkout-form-content .form-actions { margin-top: 16px !important; }
.checkout-error { margin-top: 10px !important; }
/* Kept on one line — wrapping to two cost ~30px for no added reassurance. */
.checkout-trust { margin-top: 12px !important; gap: 10px; font-size: 0.62rem; flex-wrap: nowrap; white-space: nowrap; }

/* Short viewports: drop the decoration rather than the usability. */
@media (max-height: 900px) {
    .checkout-banner { display: none; }
    .checkout-form-content { padding-top: 20px !important; }
}

/* Very short viewports (small phones, or a phone in landscape): drop the
   explanatory copy and tighten every gap so the Pay button still lands on
   screen. Scrolling remains available if a device is shorter still. */
@media (max-height: 680px) {
    .checkout-form-content .form-group small { display: none; }
    .checkout-trust { display: none; }
    .checkout-form-header { margin-top: 4px !important; margin-bottom: 8px !important; }
    .checkout-form-header h2 { font-size: 1.05rem; }
    .checkout-summary { margin-bottom: 8px; padding: 8px 10px; }
    .checkout-summary-items li { padding: 3px 0; }
    .checkout-form-content .form-group { margin-bottom: 8px; }
    .checkout-form-content .form-group label { margin-bottom: 4px; }
    .checkout-form-modal input { padding: 9px 12px; }
    .payment-methods { gap: 6px; }
    .payment-method-card { padding: 7px 11px; }
    .checkout-form-content .form-actions { margin-top: 10px !important; }
}


/* =========================================
   ACCEPTED PAYMENT METHOD BADGES
   Official brand marks, served locally from
   /assets/payment-methods/brands/.

   Chips sit on a light plate because card network
   marks are drawn for white backgrounds and lose
   contrast on the dark theme. Every chip shares one
   size so the row reads as an even strip.
   ========================================= */
.accepted-payments {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.accepted-payments__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.accepted-payments__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Uniform box for every brand, regardless of the source
       artwork's aspect ratio - object-fit does the rest. */
    width: 46px;
    height: 30px;
    padding: 5px 7px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex: 0 0 auto;
    transition: transform 0.15s ease;
}

.pay-chip:hover { transform: translateY(-1px); }

.pay-chip img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* -----------------------------------------
   Product page: the badges are injected into
   .product-total-section, which is a flex row
   holding Total + Add to Cart. Let that row wrap
   and give the badges a full-width line of their
   own underneath, instead of squeezing them into
   a third column.
   ----------------------------------------- */
.product-total-section { flex-wrap: wrap; }

.product-total-section .accepted-payments {
    flex: 0 0 100%;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* -----------------------------------------
   Compact variant: inline marks inside the
   checkout form's payment-method option.
   ----------------------------------------- */
.accepted-payments--compact {
    align-items: flex-start;
    width: auto;
    margin-top: 8px;
    gap: 0;
}

.accepted-payments--compact .accepted-payments__row {
    justify-content: flex-start;
    gap: 5px;
}

.accepted-payments--compact .pay-chip {
    width: 34px;
    height: 23px;
    padding: 3px 4px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.accepted-payments--compact .pay-chip:hover { transform: none; }

.pm-methods { display: block; }

@media (max-width: 480px) {
    .pay-chip { width: 42px; height: 28px; }
    .accepted-payments--compact .pay-chip { width: 31px; height: 21px; }
}

/* =========================================
   CART: KEEP CHECKOUT REACHABLE
   .cart-footer (coupon + totals + checkout button) is markup-nested inside
   #cart-content, which is the scrolling container - so it scrolled out of
   reach and the user had to scroll to find the checkout button.

   Sticky pins it to the bottom of the scroll area. Because it is the last
   child it still occupies its own space in normal flow, so the final cart
   item is never hidden behind it. Done in CSS because this markup is
   duplicated across 21 pages.
   ========================================= */
.cart-footer {
    position: sticky;
    bottom: 0;
    z-index: 3;
    /* The footer already sets background/border-top; these make it read
       clearly while items scroll behind it. */
    background: var(--bg-surface);
    box-shadow: 0 -12px 24px -8px rgba(0, 0, 0, 0.65);
    /* Trimmed from 25px 30px so more of the cart is visible at once. */
    padding: 18px 30px 20px;
}

/* The scroller must be allowed to shrink, or the sticky child has no
   scrolling context to stick within. */
.cart-content {
    min-height: 0;
}

/* Reclaim vertical space above the footer so short carts need no scroll. */
.cart-items {
    padding: 16px 30px 8px;
}

/* On short viewports the footer must never dominate the panel. */
@media (max-height: 720px) {
    .cart-footer {
        padding: 12px 24px 14px;
        max-height: 62vh;
        overflow-y: auto;
    }
    .cart-items { padding: 12px 24px 6px; }
}

/* =========================================
   NAV WALLET BALANCE
   Hidden entirely for signed-out visitors (wallet-nav.js
   toggles [hidden]), so the navbar is unchanged for guests.
   ========================================= */
.nav-wallet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 4px 4px 12px;
    margin-right: 4px;
    background: rgba(255, 45, 45, 0.10);
    border: 1px solid rgba(255, 45, 45, 0.28);
    border-radius: 999px;
}

.nav-wallet[hidden] { display: none; }

.nav-wallet__balance {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary, #ffb800);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-wallet__add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary, #ffb800);
    color: #0b0700;
    font-size: 12px;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.nav-wallet__add:hover { transform: scale(1.08); filter: brightness(1.08); }

/* Insufficient-balance state for the cart's credits option. */
.payment-method-option.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.payment-method-option.is-disabled .payment-method-card { pointer-events: none; }

@media (max-width: 600px) {
    .nav-wallet { padding-left: 9px; }
    .nav-wallet__balance { font-size: 13px; }
}

/* =========================================
   MOBILE FIXES — nav wallet, badges, cart
   The navbar had no mobile override: .navbar kept 40px side padding and
   .nav-icons a fixed 15px gap. Adding the wallet pill pushed the row wider
   than the viewport, so the account button was clipped off-screen.
   ========================================= */
@media (max-width: 900px) {
    .navbar { padding: 0 16px; gap: 10px; }

    /* Without min-width:0 a flex child refuses to shrink below its content,
       which is what forced the overflow instead of compressing. */
    .nav-icons { gap: 10px; min-width: 0; flex-shrink: 0; }

    /* The logo must be the thing that gives way, not the icons. */
    .logo { flex-shrink: 1; min-width: 0; overflow: hidden; }
    /* Explicit height, never `auto`: this selector outranks the earlier
       `.logo-image { height: 45px }` at <=768px, so `auto` let the logo render
       at its full intrinsic size and shove the icons off-screen. */
    .logo .logo-image { height: 42px; width: 42px; max-width: 100%; }

    .nav-wallet { padding: 3px 3px 3px 9px; gap: 5px; margin-right: 0; }
    .nav-wallet__balance { font-size: 12px; }
    .nav-wallet__add { width: 22px; height: 22px; font-size: 10px; }

    .account-nav-button { padding: 0 10px; min-height: 36px; }
}

@media (max-width: 560px) {
    .navbar { padding: 0 12px; }
    .nav-icons { gap: 7px; }
    .logo .logo-image { height: 34px; width: 34px; }
    .logo-copy { display: none; }

    /* Icon-only account button: the label is what overflowed on small phones. */
    .account-nav-button span,
    .account-nav-button .account-nav-label { display: none; }
    .account-nav-button { padding: 0 9px; }

    .nav-wallet { padding: 2px 2px 2px 8px; }
    .nav-wallet__balance { font-size: 11.5px; }
}

/* Nothing in the layout should be able to scroll the page sideways. */
@media (max-width: 900px) {
    html, body { max-width: 100%; overflow-x: hidden; }
}

/* -----------------------------------------
   Product page badges.
   At <=768px .product-total-section switches to
   flex-direction: column, so the desktop
   "full-width third row" rules do not apply.
   ----------------------------------------- */
@media (max-width: 768px) {
    .product-total-section .accepted-payments {
        flex: 0 0 auto;
        width: 100%;
        padding-top: 14px;
        margin-top: 2px;
    }
    .accepted-payments__row { gap: 6px; }
    .pay-chip { width: 40px; height: 27px; padding: 4px 5px; }
}

/* -----------------------------------------
   Cart panel on phones: full width, and the
   sticky footer must not eat the whole sheet.
   ----------------------------------------- */
@media (max-width: 560px) {
    .cart-content-wrapper { max-width: 100%; }
    .cart-footer { padding: 14px 18px 16px; max-height: 58vh; overflow-y: auto; }
    .cart-items { padding: 12px 18px 6px; }

    /* Checkout modal was overflowing the viewport instead of scrolling
       inside itself, which put the Pay button out of reach on short phones. */
    .checkout-form-content { max-height: 88vh; overflow-y: auto; }
    .payment-method-card { padding: 12px; gap: 10px; }
    .pm-text strong { font-size: 0.9rem; }
    .pm-text em { font-size: 0.75rem; }
    .accepted-payments--compact .pay-chip { width: 29px; height: 20px; }
}
