/* =========================================
   GROVE STREET CBD - MAIN STYLESHEET
   Version: 2.0.0 - Optimized & Merged
   ========================================= */

/* ===== VARIABLES ===== */
:root {
    /* Primary Colors */
    --grove-green: #2ECC71;
    --grove-green-dark: #27ae60;
    --grove-green-light: #58d68d;
    --ballas-purple: #8B00FF;
    --ballas-purple-dark: #6b00c4;
    
    /* Background Colors */
    --bg-black: #0F0F0F;
    --bg-dark: #1A1A1A;
    --bg-gray: #2B2B2B;
    --bg-light: #3D3D3D;
    
    /* Text Colors */
    --text-white: #F2F2F2;
    --text-gray: #CCCCCC;
    --text-muted: #888888;
    
    /* Accent Colors */
    --accent-red: #E74C3C;
    --accent-orange: #F39C12;
    --accent-yellow: #FFD700;
    
    /* Fonts */
    --font-logo: 'Pirata One', cursive;
    --font-title: 'Anton', sans-serif;
    --font-ui: 'Chakra Petch', sans-serif;
    --font-body: 'Courier Prime', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(46, 204, 113, 0.4);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ===== AMBIENT BACKGROUND - OPTIMIZED ===== */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.ambient-bg::before,
.ambient-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    will-change: transform;
}

.ambient-bg::before {
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.4) 0%, transparent 70%);
    top: -20%;
    left: -15%;
    animation: ambientFloat1 25s ease-in-out infinite;
}

.ambient-bg::after {
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(139, 0, 255, 0.35) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: ambientFloat2 30s ease-in-out infinite;
}

@keyframes ambientFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 8%) scale(1.1); }
}

@keyframes ambientFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-5%, -8%) scale(1.15); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .ambient-bg::before,
    .ambient-bg::after {
        animation: none;
    }
}

/* ===== LOADER - OPTIMIZED ===== */
.gta-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.gta-loader .lowrider-gif {
    width: 200px;
    height: auto;
}

.gta-loader-logo {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    color: var(--grove-green);
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
}

.gta-loader-bar {
    width: 250px;
    height: 6px;
    background: var(--bg-gray);
    border-radius: 3px;
    overflow: hidden;
}

.gta-loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--grove-green), var(--grove-green-light));
    animation: loaderProgress 1.5s ease-out forwards;
}

@keyframes loaderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

.gta-loader-text {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== HEADER ===== */
.grove-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
    transition: transform var(--transition-normal), background var(--transition-normal);
    will-change: transform;
}

.grove-header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.grove-header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    max-width: 1600px;
    margin: 0 auto;
    gap: 20px;
}

/* Header Marquee */
.header-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: 400px;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
}

.marquee-item {
    display: inline-block;
    padding: 0 30px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--grove-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header Logo */
.header-logo a {
    display: block;
}

.header-logo .logo-img,
.header-logo .custom-logo {
    height: 50px;
    width: auto;
    transition: transform var(--transition-normal);
}

.header-logo .logo-img:hover,
.header-logo .custom-logo:hover {
    transform: scale(1.05);
}

/* Header Account */
.account-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    transition: all var(--transition-normal);
}

.account-btn:hover {
    background: rgba(46, 204, 113, 0.2);
    border-color: var(--grove-green);
    box-shadow: var(--shadow-glow);
}

.account-icon {
    font-size: 1.2rem;
}

.account-text {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 3px;
    background: var(--grove-green);
    margin: 3px 0;
    border-radius: 2px;
    transition: all var(--transition-normal);
}

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

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu - Full Screen with Categories */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    overflow-y: auto;
    padding: 80px 20px 100px;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-section:last-child {
    border-bottom: none;
}

.mobile-section-title {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--grove-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding-left: 10px;
}

/* Main Links */
.mobile-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-normal);
    border-radius: 8px;
}

.mobile-link:hover,
.mobile-link:active {
    color: var(--grove-green);
    background: rgba(46, 204, 113, 0.1);
}

.mobile-link-icon {
    font-size: 1.3rem;
}

.mobile-cart-badge {
    margin-left: auto;
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 10px;
}

/* Categories in Mobile Menu */
.mobile-categories {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-cat-group {
    display: flex;
    flex-direction: column;
}

.mobile-cat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.mobile-cat-link:hover {
    color: var(--grove-green);
    background: rgba(46, 204, 113, 0.08);
}

.mobile-cat-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mobile-cat-toggle {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.mobile-cat-group.open .mobile-cat-toggle {
    transform: rotate(90deg);
}

/* Sub Categories */
.mobile-sub-cats {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
    border-left: 2px solid rgba(46, 204, 113, 0.2);
    margin-left: 15px;
}

.mobile-cat-group.open .mobile-sub-cats {
    max-height: 500px;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-sub-link:hover {
    color: var(--grove-green);
}

/* ===== GTA PHONE NAVIGATION ===== */
.gta-phone {
    position: fixed;
    bottom: -120px;
    right: 20px;
    z-index: 998;
    transition: bottom 0.3s ease;
}

.gta-phone:hover {
    bottom: 20px;
}

.phone-frame {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--bg-light);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Indicateur visible quand le téléphone est caché */
.gta-phone::before {
    content: '';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.gta-phone:hover::before {
    opacity: 0;
}

.phone-screen {
    background: linear-gradient(180deg, #0d0d0d, #151515);
    border-radius: 12px;
    padding: 15px;
    min-width: 140px;
}

.phone-header {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    color: var(--grove-green);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

.phone-apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.phone-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all var(--transition-normal);
    position: relative;
}

.phone-app:hover,
.phone-app.active {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
}

.phone-app.active {
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
}

.app-icon {
    font-size: 1.4rem;
}

.app-label {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.phone-cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-cart-badge:empty,
.phone-cart-badge[data-count="0"] {
    display: none;
}

/* ===== MISSION PASSED ANIMATION ===== */
.mission-passed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mission-passed.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.mission-passed-title {
    font-family: var(--font-logo);
    font-size: clamp(2rem, 8vw, 4rem);
    color: var(--accent-yellow);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.5),
        4px 4px 0 rgba(0, 0, 0, 0.5);
    animation: missionPulse 0.5s ease-out;
}

.mission-passed-subtitle {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    color: var(--grove-green);
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

@keyframes missionPulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ===== PRODUCT POPUP ===== */
.sa-product-popup {
    position: fixed;
    bottom: 100px;
    right: 180px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.98), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 250px;
    max-width: 300px;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sa-product-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sa-popup-header {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--grove-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.sa-popup-name {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.sa-popup-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

.sa-popup-price {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    color: var(--grove-green);
    font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn-gta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-gta-green {
    background: var(--grove-green);
    color: #000;
    border: none;
}

.btn-gta-green:hover {
    background: var(--grove-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

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

.btn-gta-outline:hover {
    background: rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
}

.btn-gta-small {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Button scan effect */
.btn-scan {
    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;
    pointer-events: none;
}

.btn-gta:hover .btn-scan {
    left: 100%;
}

/* ===== BADGES ===== */
.grove-badge {
    display: inline-block;
    padding: 4px 12px;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.grove-badge.sale {
    background: var(--accent-red);
    color: white;
}

.grove-badge.hot {
    background: var(--accent-orange);
    color: white;
}

.grove-badge.new {
    background: var(--grove-green);
    color: black;
}

/* ===== FORM ELEMENTS ===== */
.grove-input,
.grove-select,
.grove-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-ui);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.grove-input:focus,
.grove-select:focus,
.grove-textarea:focus {
    outline: none;
    border-color: var(--grove-green);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.15);
}

.grove-input::placeholder {
    color: var(--text-muted);
}

.grove-textarea {
    min-height: 120px;
    resize: vertical;
}

.grove-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CARDS BASE ===== */
.grove-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.grove-card:hover {
    border-color: rgba(46, 204, 113, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card), 0 0 20px rgba(46, 204, 113, 0.1);
}

/* ===== PANELS ===== */
.grove-panel {
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.grove-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: rgba(46, 204, 113, 0.08);
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

.grove-panel-header h2,
.grove-panel-header h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.grove-panel-body {
    padding: 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    line-height: 1.2;
    margin: 0;
}

.gta-text-glow {
    text-shadow: 
        0 0 15px rgba(46, 204, 113, 0.5),
        0 0 30px rgba(46, 204, 113, 0.3);
}

.section-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--grove-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.hidden {
    opacity: 0;
    transform: translateY(30px);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Stagger delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-gray);
    border-top-color: var(--grove-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== TOAST NOTIFICATIONS ===== */
.grove-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 15px 25px;
    background: var(--bg-dark);
    border: 1px solid var(--grove-green);
    border-radius: 8px;
    font-family: var(--font-ui);
    color: var(--text-white);
    z-index: 9999;
    opacity: 0;
    transition: all var(--transition-normal);
}

.grove-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.grove-toast.error {
    border-color: var(--accent-red);
    background: rgba(231, 76, 60, 0.15);
}

.grove-toast.success {
    border-color: var(--grove-green);
    background: rgba(46, 204, 113, 0.15);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-light);
    border-radius: 4px;
}

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

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-green { color: var(--grove-green); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header-marquee {
        display: none;
    }
    
    .header-content {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .account-text {
        display: none;
    }

    .account-btn {
        padding: 10px;
    }

    .header-logo .logo-img,
    .header-logo .custom-logo {
        height: 35px;
    }

    .grove-header {
        padding: 0;
    }

    .header-content {
        padding: 8px 15px;
    }

    /* GTA Phone Mobile - Bottom bar style */
    .gta-phone {
        bottom: 0;
        left: 0;
        right: 0;
        position: fixed;
        z-index: 998;
    }

    .gta-phone::before {
        display: none;
    }

    .phone-frame {
        border-radius: 20px 20px 0 0;
        padding: 8px 15px 12px;
        border-bottom: none;
    }

    .phone-header {
        display: none;
    }

    .phone-screen {
        padding: 0;
        min-width: auto;
        background: transparent;
        border-radius: 0;
    }

    .phone-apps {
        display: flex;
        justify-content: space-around;
        gap: 5px;
    }

    .phone-app {
        flex: 1;
        padding: 8px 5px;
        border-radius: 8px;
        background: transparent;
        border: none;
    }

    .phone-app:hover,
    .phone-app.active {
        background: rgba(46, 204, 113, 0.15);
    }

    .app-icon {
        font-size: 1.3rem;
    }

    .app-label {
        font-size: 0.5rem;
        letter-spacing: 0.5px;
    }

    .phone-cart-badge {
        top: 2px;
        right: 50%;
        transform: translateX(12px);
        width: 16px;
        height: 16px;
        font-size: 0.55rem;
    }

    .sa-product-popup {
        display: none;
    }

    /* Add padding to body for fixed phone bar */
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .header-logo .logo-img,
    .header-logo .custom-logo {
        height: 30px;
    }

    .phone-app {
        padding: 6px 3px;
    }

    .app-icon {
        font-size: 1.2rem;
    }

    .app-label {
        font-size: 0.45rem;
    }
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.age-modal-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--grove-green);
    border-radius: 16px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 0 60px rgba(46, 204, 113, 0.3),
        0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalAppear 0.4s ease-out;
}

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

.age-modal-header {
    margin-bottom: 25px;
}

.age-modal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, var(--grove-green), var(--grove-green-dark));
    border-radius: 50%;
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.5);
}

.age-modal-title {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.age-modal-body {
    margin-bottom: 30px;
}

.age-modal-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.age-modal-question {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    color: var(--grove-green);
    font-weight: 600;
    margin: 0;
}

.age-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.age-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1rem;
}

.age-modal-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    opacity: 0.7;
}

/* Rejected state */
.age-modal-content.rejected {
    border-color: var(--accent-red);
    animation: modalShake 0.5s ease;
}

.age-modal-content.rejected .age-modal-badge {
    background: linear-gradient(145deg, var(--accent-red), #c0392b);
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.5);
}

.age-modal-content.rejected .age-modal-title {
    color: var(--accent-red);
}

@keyframes modalShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
}

@media (max-width: 480px) {
    .age-modal-content {
        padding: 30px 20px;
    }

    .age-modal-title {
        font-size: 1.5rem;
    }

    .age-modal-badge {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* ===== PHONE NOTIFICATION POPUP ===== */
.grove-phone-notif {
    position: fixed;
    top: 90px;
    left: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    border: 1px solid var(--grove-green);
    border-left: 4px solid var(--grove-green);
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(46, 204, 113, 0.2);
    opacity: 0;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.grove-phone-notif.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.grove-phone-notif.hiding {
    opacity: 0;
    transform: translateX(-120%);
    transition: transform 0.4s ease-in, opacity 0.3s ease;
}

.phone-notif-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    animation: notif-buzz 0.6s ease-in-out 1s 2;
}

@keyframes notif-buzz {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-12deg); }
    40% { transform: rotate(12deg); }
    60% { transform: rotate(-8deg); }
    80% { transform: rotate(8deg); }
}

.phone-notif-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.phone-notif-sender {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--grove-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.phone-notif-text {
    font-family: var(--font-ui);
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.3;
}

.phone-notif-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    border-radius: 6px;
    transition: color var(--transition-fast), background var(--transition-fast);
    flex-shrink: 0;
}

.phone-notif-close:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .grove-phone-notif {
        left: 10px;
        right: 10px;
        min-width: unset;
        max-width: unset;
        top: 75px;
    }
}

/* Admin bar offset */
.admin-bar .grove-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .grove-header {
        top: 46px;
    }
}
