/* 
 * PULLING HITTERS UNIFIED THEME v1.0
 * Brand: RED, WHITE, BLACK
 * Style: Premium Glassmorphism
 */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --ph-red: #ff0000;
    --ph-red-glow: rgba(255, 0, 0, 0.6);
    --ph-white: #ffffff;
    --ph-black: #000000;
    
    /* UNIFIED GLASSMORPHISM LANGUAGE */
    --glass-bg: rgba(255, 255, 255, 0.035);
    --glass-bg-hover: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px) saturate(180%);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    --glass-border-red: rgba(255, 0, 0, 0.3);
}

html {
    overflow-x: hidden;
    overflow-x: clip;
}

body.ph-unified-v7 {
    background: #050505 !important;
    color: var(--ph-white) !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-x: clip !important;
    font-family: 'Rajdhani', sans-serif !important;
    min-height: 100vh;
    position: relative;
}

/* ABSTRACT POKEBALL GRADIENT BACKGROUND — MATCHES REFERENCE PAGE */
body.ph-unified-v7::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(180deg, 
        rgba(255, 0, 0, 0.4) 0%, 
        rgba(255, 0, 0, 0.3) 30%, 
        rgba(0, 0, 0, 1) 48%, 
        rgba(0, 0, 0, 1) 52%, 
        rgba(255, 255, 255, 0.2) 70%, 
        rgba(255, 255, 255, 0.3) 100%
    );

    z-index: -2;
    pointer-events: none;
}


body.ph-unified-v7::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,0.4) 100%);
    z-index: -1;
    pointer-events: none;
}
/* BACKGROUND ELEMENTS */
#particleCanvas {
    position: fixed !important;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1 !important;
    pointer-events: none !important;
}

.aurora-bg { 
    position: fixed !important;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.05) 0%, transparent 40%);
    z-index: -1 !important;
    pointer-events: none !important;
}

.grid-floor {
    position: fixed;
    bottom: 0; left: -25%;
    width: 150%; height: 60%;
    perspective: 800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.grid-floor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,0,0,0.15) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,0,0,0.15) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: rotateX(75deg);
    transform-origin: bottom;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* POKEBALL CENTER LOGO - LATEST V7 */
.ph-center-ball { 
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 800px !important;
    height: 800px !important;
    border-radius: 50% !important;
    background: linear-gradient(180deg, #ff0000 48.5%, #000000 48.5%, #000000 51.5%, #ffffff 51.5%) !important;
    z-index: -1 !important;
    pointer-events: none !important;
    box-shadow: 0 0 150px rgba(255,0,0,0.3);
    opacity: 0.4;
    border: 15px solid #000;
}

.ph-center-ball::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px; height: 140px;
    background: #fff;
    border: 12px solid #000;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.ph-center-ball::after {
    content: 'PH';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: #000;
    letter-spacing: 4px;
}

/* GLOBAL LAYOUT SYSTEM */
.ph-page-shell {
    max-width: 1800px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

.ph-content-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
}

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

.ph-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

/* NAVIGATION - HIDDEN BY DEFAULT, SHOW ON HOVER */
.ph-nav-v7 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 80px;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* HIDDEN by default - slides up */
.ph-nav-v7.nav-hidden {
    transform: translateY(-100%);
}

/* Hover zone: 8px strip at top of screen */
.ph-nav-hover-zone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    z-index: 9999;
}

.ph-nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ph-nav-v7 a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ph-nav-v7 a:hover, .ph-nav-v7 a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* NAVIGATION DROPDOWNS */
.ph-nav-v7 .dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.ph-nav-v7 .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    min-width: 240px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 12px 12px;
    z-index: 10001;
    padding: 10px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.ph-nav-v7 .dropdown:hover .dropdown-content,
.ph-nav-v7 .dropdown.active .dropdown-content {
    display: block;
}

/* Fix for the multi-column systems menu */
.ph-nav-v7 .dropdown-content.systems-grid-v2 {
    min-width: 500px;
    max-width: 650px;
    left: 0;
    transform: none;
    display: none;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    flex-direction: row;
    flex-wrap: wrap;
}

.ph-nav-v7 .dropdown-content.systems-grid-v2 .systems-column {
    display: flex;
    flex-direction: column;
    min-width: 100px;
    max-width: 120px;
    flex: 1 0 auto;
}

.ph-nav-v7 .dropdown-content.systems-grid-v2 .systems-column a {
    display: block;
    padding: 5px 3px;
    font-size: 0.65rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ph-nav-v7 .dropdown-content.systems-grid-v2 .column-title {
    display: block;
    font-weight: 800;
    font-size: 0.55rem;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--ph-red);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ph-nav-v7 .dropdown:hover .dropdown-content.systems-grid-v2 {
    display: flex;
}

/* NAV CONTAINER INNER (from JS injectGlobalStyles) */
.nav-container-v7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    width: 100%;
}
.nav-left { display: flex; align-items: center; gap: 20px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-badge { width: 40px; height: 40px; background: #ff0000; color: #000; display: flex; align-items: center; justify-content: center; font-weight: 900; border-radius: 4px; font-size: 1rem; font-family: 'Orbitron', sans-serif; }
.brand-copy strong { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; letter-spacing: 2px; color: #fff; }
.ph-nav-auth { display: flex; align-items: center; gap: 15px; }
.user-badge { font-size: 0.55rem; letter-spacing: 1px; color: var(--ph-red); font-weight: 900; border: 1px solid var(--ph-red); padding: 3px 8px; border-radius: 4px; text-transform: uppercase; white-space: nowrap; }
.auth-btn { font-size: 0.65rem; font-weight: 800; color: #fff; text-decoration: none; opacity: 0.6; transition: opacity 0.3s; }
.auth-btn:hover { opacity: 1; }
.auth-btn-primary { background: var(--ph-red); color: #000; padding: 8px 16px; border-radius: 4px; font-size: 0.65rem; font-weight: 800; text-decoration: none; box-shadow: 0 0 15px var(--ph-red-glow); }

/* Hamburger menu toggle */
.menu-toggle-v7 {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}
.menu-toggle-v7 span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    /* Always keep the nav bar (and its upper-left hamburger) visible on touch screens */
    .ph-nav-v7.nav-hidden { transform: none !important; }
    .ph-nav-v7 { padding: 0 12px !important; }
    .nav-container-v7 { padding: 0 6px !important; }
    .brand-copy strong { font-size: 0.85rem !important; letter-spacing: 1px !important; }
    .ph-nav-auth { gap: 10px !important; }
    .menu-toggle-v7 { display: flex; }
    .ph-nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10,10,10,0.85);
        backdrop-filter: blur(30px);
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 80px 20px !important;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        border-right: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
        display: flex !important;
        overflow-y: auto;
        gap: 0 !important;
    }
    .ph-nav-links.active { left: 0; }
    .ph-nav-links a, .ph-nav-links .dropdown > a {
        font-size: 0.9rem !important;
        width: 100%;
        padding: 15px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: block !important;
    }
    .dropdown { width: 100%; display: block !important; height: auto !important; }
    .dropdown-content {
        position: static !important;
        background: rgba(255,255,255,0.03) !important;
        box-shadow: none !important;
        padding: 10px !important;
        display: none !important;
        width: 100% !important;
        transform: none !important;
        border: none !important;
        border-radius: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-wrap: wrap !important;
    }
    .dropdown:hover .dropdown-content { display: flex !important; }
    .systems-grid-v2 { flex-direction: row !important; min-width: auto !important; transform: none !important; left: 0 !important; padding: 10px !important; gap: 15px !important; }
    .systems-column { border: none !important; padding: 0 !important; min-width: 140px !important; flex: 1 !important; }
    .column-title { padding: 10px 5px 5px !important; font-size: 0.55rem !important; }
    .dropdown-content a { padding: 8px 5px !important; font-size: 0.75rem !important; border-bottom: 1px solid rgba(255,255,255,0.02) !important; display: block !important; }
}

/* CARDS & GLASS EFFECTS */
.ph-glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 30px;
    transition: all 0.3s ease;
}

.ph-glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-red);
    transform: translateY(-4px);
}

/* BUTTONS */
.ph-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 15px 35px;
    border: 2px solid var(--ph-red);
    background: transparent;
    color: var(--ph-red);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.ph-btn:hover {
    background: var(--ph-red);
    color: var(--ph-black);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.ph-secondary-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 15px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ph-secondary-btn:hover {
    border-color: var(--ph-red);
    color: var(--ph-red);
}

/* UTILITIES */
.ph-glow-red { text-shadow: 0 0 20px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.4); }
.ph-text-red { color: var(--ph-red); }

/* LIVESTREAM SPECIFIC */
.livestream-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0,0,0,0.5);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.chat-panel {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,0,0,0.2);
}

/* STATS ROW */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ph-red);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-top: 10px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-content {
    background: rgba(10,10,10,0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
::-webkit-scrollbar-thumb { background: var(--ph-red); border-radius: 3px; }

/* ============================================================
   ADMIN MENU — shown only to admins (role === 'admin')
   Full dropdown of all Pulling Hitters backend pages.
   ============================================================ */
.ph-nav-v7 .admin-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.ph-nav-v7 .admin-trigger {
    color: var(--ph-red);
    font-weight: 900;
    white-space: nowrap;
}
.ph-nav-v7 .admin-trigger:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--ph-red-glow);
}

.ph-nav-v7 .admin-menu-panel {
    display: none;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1280px, calc(100vw - 40px));
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 0, 0, 0.25);
    border-radius: 0 0 16px 16px;
    padding: 22px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 22px;
    align-items: start;
    z-index: 10001;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 0, 0, 0.08);
}

.ph-nav-v7 .admin-dropdown:hover .admin-menu-panel,
.ph-nav-v7 .admin-dropdown.active .admin-menu-panel {
    display: grid;
}

.ph-nav-v7 .admin-menu-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ph-nav-v7 .admin-menu-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ph-red);
    padding: 6px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 6px;
    white-space: nowrap;
}

.ph-nav-v7 .admin-menu-group a {
    display: block;
    padding: 6px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    white-space: normal;
    line-height: 1.25;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.ph-nav-v7 .admin-menu-group a:hover {
    color: #fff;
    background: rgba(255, 0, 0, 0.15);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* ADMIN MENU — mobile (inside the slide-out panel) */
@media (max-width: 1024px) {
    .ph-nav-v7 .admin-dropdown {
        width: 100% !important;
        display: block !important;
        height: auto !important;
    }
    .ph-nav-v7 .admin-trigger {
        width: 100%;
        font-size: 0.9rem !important;
        padding: 15px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: block !important;
    }
    .ph-nav-v7 .admin-menu-panel {
        position: static !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-height: none !important;
        overflow-y: visible !important;
        display: none !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
        align-items: start !important;
        padding: 14px 10px 14px 16px !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.03) !important;
    }
    .ph-nav-v7 .admin-dropdown:hover .admin-menu-panel,
    .ph-nav-v7 .admin-dropdown.active .admin-menu-panel {
        display: grid !important;
    }
    .ph-nav-v7 .admin-menu-title { padding: 8px 6px 5px !important; }
    .ph-nav-v7 .admin-menu-group a { padding: 8px 6px !important; font-size: 0.72rem !important; }
}

/* ============================================================
   MOBILE RESPONSIVE — every page must fit on phone widths.
   Overrides inline styles on the landing page (index.html) and
   general layout at narrow widths.
   ============================================================ */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; overflow-x: clip; }

    /* PAGE SHELL */
    .ph-page-shell { padding: 84px 14px 40px !important; }

    /* HERO */
    .hero-section { padding-top: 90px !important; padding-bottom: 36px !important; }
    .hero-shell { padding: 0 6px !important; gap: 28px !important; }
    .hero-copy { padding: 30px 16px !important; border-radius: 18px !important; }
    .live-pill { margin-bottom: 18px !important; }
    .hero-subtitle { font-size: 1.12rem !important; margin: 16px 0 18px !important; letter-spacing: 0.5px !important; }
    .hero-lead { font-size: 1rem !important; line-height: 1.6 !important; }
    .hero-cta-row { flex-direction: column !important; gap: 12px !important; margin: 24px 0 !important; }
    .hero-cta-row a { width: 100% !important; padding: 15px 16px !important; box-sizing: border-box !important; text-align: center; }
    .ph-title-master { font-size: clamp(2.3rem, 11vw, 3.2rem) !important; letter-spacing: -1px !important; }
    .hero-feature-grid { grid-template-columns: 1fr !important; gap: 10px !important; }

    /* STREAM WINDOW */
    .hero-copy, .unified-stream-window, .modal-content { box-sizing: border-box !important; }
    .unified-stream-window { width: 100% !important; padding: 0 !important; }
    .stream-title-bar { flex-direction: column !important; align-items: flex-start !important; padding: 14px 16px !important; gap: 6px !important; }
    .stream-title-bar > div { flex-wrap: wrap !important; gap: 10px !important; }
    .stream-content-horizontal { flex-direction: column !important; height: auto !important; }
    .video-container { min-height: 210px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .video-container h2 { font-size: 1.5rem !important; letter-spacing: 2px !important; }
    .video-container p { font-size: 0.9rem !important; margin-bottom: 18px !important; }
    .stream-chat-container { height: 240px; }

    /* SECTION HEADINGS */
    .section-title { font-size: 2rem !important; }
    .section-head { margin-bottom: 30px !important; }

    /* CAROUSELS */
    .carousel-wrapper { padding: 0 12px !important; }
    .carousel-track-wrapper { padding: 20px 0 !important; min-height: 380px; }
    .carousel-track .product-card { flex: 0 0 calc(100% - 30px) !important; }
    .carousel-track .product-card h4 { height: auto !important; min-height: 40px; }
    .carousel-track .product-card .card-copy { height: auto !important; }
    .scroll-btn { width: 36px !important; height: 36px !important; font-size: 0.9rem !important; }
    .scroll-btn.left { left: -2px !important; }
    .scroll-btn.right { right: -2px !important; }

    /* RAFFLES BANNER */
    .raffles-flex-row { flex-direction: column !important; gap: 22px !important; padding: 30px 16px !important; }

    /* HIT WALL */
    .raffle-screen { padding: 26px 14px !important; }
    .raffle-screen h3 { font-size: 1.8rem !important; }

    /* FOOTER */
    .page-footer { padding: 30px 16px !important; }

    /* MODALS */
    .modal-content { padding: 26px 14px !important; }
    .close-modal-x { top: 12px !important; right: 14px !important; font-size: 1.6rem !important; }
    .bundle-grid-mini { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .raffle-modal-inner { flex-direction: column !important; gap: 16px !important; align-items: center !important; }
    .raffle-modal-image { width: 100% !important; height: 220px !important; }
    .raffle-modal-copy h3 { font-size: 1.3rem !important; }

    /* SHOP: let category headers wrap so nothing overflows */
    .category-section > .flex { flex-wrap: wrap !important; gap: 8px !important; }
}
