/* ========================================
   GAMING MARKETPLACE — G2G-INSPIRED LIGHT THEME
   Design System & Complete Styles
   ======================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&display=swap');

/* ── CSS Variables (G2G Light Theme) ── */
/* ── CSS Variables (G2G Signature Orange & Performance Enhancements) ── */
:root {
    /* Main Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-navbar: #FFFFFF;
    --bg-dark: #0F172A;    /* Modern Slate-900 (G2G style dark mode sections) */
    --bg-dark-secondary: #1E293B;

    /* Primary Brand: Radiant G2G Orange */
    --primary: #FF7A00;
    --primary-hover: #E66E00;
    --primary-light: rgba(255, 122, 0, 0.06);
    --primary-dark: #CC6200;
    --bg-gradient: linear-gradient(135deg, #FF7A00 0%, #FF5100 100%);
    --bg-gradient-glow: linear-gradient(135deg, #FF7A00 0%, #FF9E3D 100%);

    /* Secondary: Teal/Aqua (Trust, badges) */
    --secondary: #00D285;  /* G2G green for instant delivery & protected badges */
    --accent-amber: #F59E0B;
    --accent-rose: #EF4444;
    --accent-green: #10B981;

    /* Text */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
    --text-white: #FFFFFF;

    /* Borders & Interaction */
    --border: #E2E8F0;
    --border-hover: #CBD5E1;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --radius-full: 9999px;

    /* Shadows & Effects (Optimized for smooth paint cycles) */
    --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.03);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-primary: 0 8px 24px rgba(255, 122, 0, 0.18);
    --shadow-lift: 0 20px 40px rgba(15, 23, 42, 0.1);

    /* Transitions (GPU-accelerated and cubic-bezier) */
    --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --container-width: 1200px;
    --navbar-height: 68px;

    /* Focused UI Additions */
    --shadow-focused: 0 2px 14px rgba(0, 0, 0, 0.02);
    --bg-accent-gradient: linear-gradient(135deg, #FF7A00 0%, #FF5100 100%);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ── Utilities ── */
/* ── Utilities (v3) ── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift) !important;
}

.rounded-4 { border-radius: 1rem !important; }
.fw-black { font-weight: 900 !important; }
.font-heading { font-family: 'Outfit', sans-serif !important; }

.bg-primary-light { background: var(--primary-light) !important; }

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-tertiary { color: var(--text-tertiary) !important; }

.section-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 500;
}

.badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.badge-v3.primary {
    background: var(--primary-light);
    color: var(--primary);
}

.badge-v3.teal {
    background: rgba(0, 181, 173, 0.08);
    color: var(--secondary);
}

/* ── NAVBAR (v3) ── */
.main-nav {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    height: var(--navbar-height);
    transition: all var(--transition-normal);
    z-index: 1050;
    box-shadow: var(--shadow-soft);
    padding: 0 !important;
}

.main-nav .container-fluid,
.main-nav .container-xl {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.nav-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.navbar-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: var(--shadow-primary);
}

.navbar-logo .logo-text-highlight {
    color: var(--primary);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 10px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-links a i {
    font-size: 18px;
}

/* ── Centered Capsule Search (v4) ── */
.nav-search-v4 {
    flex: 1 1 auto;
    max-width: 500px;
    margin: 0 15px;
    min-width: 150px;
}

.search-capsule {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 4px;
    transition: all var(--transition-fast);
}

.search-capsule:focus-within {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.search-capsule i.search-icon {
    padding-left: 20px;
    color: var(--text-tertiary);
    font-size: 15px;
}

.search-capsule input {
    flex: 1;
    min-width: 0;
    background: transparent;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.search-capsule button {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    transition: all var(--transition-fast);
}

.search-capsule button:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

/* ── Focused Hero Elements (v4) ── */
.hero-search-capsule {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.search-wrap {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: all var(--transition-normal);
}

.search-wrap:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(255, 122, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.search-wrap input {
    color: #FFFFFF !important;
}

.search-wrap input::placeholder {
    color: #94A3B8;
}

.game-card-v4 {
    display: block;
    padding: 36px 24px;
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    text-decoration: none;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.game-card-v4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--neon-color, var(--primary));
    opacity: 0.8;
}

.game-card-v4:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.07), 0 1px 3px rgba(15, 23, 42, 0.02);
    border-color: var(--neon-color, var(--primary));
}

.game-icon-bg {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.game-card-v4:hover .game-icon-bg {
    background: var(--primary-light);
    transform: rotate(-5deg);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    border: 1.5px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.btn-outline {
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-ghost {
    color: var(--text-secondary);
    padding: 8px 12px;
}

.btn-ghost:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-sell {
    background: var(--bg-primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sell:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none !important;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 20px;
    color: var(--text-primary);
}

.hero {
    margin-top: var(--navbar-height);
    padding: 120px 0 100px;
    background: radial-gradient(circle at top right, rgba(255, 122, 0, 0.12), transparent 45%), 
                radial-gradient(circle at bottom left, rgba(0, 210, 133, 0.06), transparent 45%), 
                #090D16;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Grid Overlay Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    opacity: 0.85;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 122, 0, 0.08);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: #FFFFFF;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #FF9E3D 0%, #FF5100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #94A3B8; /* Slate-400 */
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-search {
    max-width: 800px;
    margin: 0 auto;
}

.hero-search input {
    width: 100%;
    padding: 20px 160px 20px 60px;
    font-size: 16px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.hero-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.hero-search .btn-search {
    right: 12px;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

/* Hero Tags */
.hero-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-tags span.label {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.hero-tags a {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.hero-tags a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ── TRENDING GAMES ── */
.trending-games {
    padding: 60px 0;
    background: var(--bg-primary);
}

.trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.trending-header .see-all {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.trending-header .see-all:hover {
    gap: 10px;
}

.trending-carousel {
    position: relative;
}

.trending-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0 16px;
    cursor: grab;
}

.trending-track::-webkit-scrollbar {
    display: none;
}

.trending-track:active {
    cursor: grabbing;
}

.game-card {
    flex: 0 0 220px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.game-card-info {
    padding: 16px 20px;
}

.game-card-info h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.game-card-info .listing-count {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 38px;
    height: 38px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 14px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    z-index: 5;
}

.carousel-nav:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.carousel-nav.prev {
    left: -16px;
}

.carousel-nav.next {
    right: -16px;
}

/* ── NEWLY ADDED GAMES ── */
.newly-added {
    padding: 50px 0;
    background: var(--bg-accent-gradient);
    position: relative;
    overflow: hidden;
}

.newly-added::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.newly-added .container {
    position: relative;
    z-index: 1;
}

.newly-added .section-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.newly-added .section-title {
    color: var(--text-white);
    margin-bottom: 28px;
}

.newly-added .section-title span {
    color: #FDE68A;
}

.new-games-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.new-games-grid::-webkit-scrollbar {
    display: none;
}

.new-game-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform var(--transition-fast);
}

.new-game-item:hover {
    transform: translateY(-4px);
}

.new-game-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-fast);
}

.new-game-item:hover .new-game-icon {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.new-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-game-item .game-name {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── HOW IT WORKS ── */
.how-it-works {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.how-it-works .container {
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 24px;
    transition: all var(--transition-normal);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.step-card .step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: var(--bg-tertiary);
    line-height: 1;
}

.step-card .step-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.step-card:nth-child(1) .step-icon {
    background: #EEF2FF;
    color: #6366F1;
}

.step-card:nth-child(2) .step-icon {
    background: #FEF3C7;
    color: #F59E0B;
}

.step-card:nth-child(3) .step-icon {
    background: #ECFDF5;
    color: #10B981;
}

.step-card:nth-child(4) .step-icon {
    background: #FFF1F2;
    color: #F43F5E;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Step connector */
.step-connector {
    display: none;
}

/* ── FEATURED PRODUCTS ── */
.featured-products {
    padding: var(--section-gap) 0;
    background: var(--bg-primary);
}

.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.featured-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}

.featured-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-tertiary);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.featured-tab:hover {
    color: var(--text-secondary);
}

.featured-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Game Filter Pills */
.game-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.game-filters::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.filter-pill img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.filter-pill.active {
    background: var(--bg-accent-gradient);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 14px;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.product-card-wishlist:hover {
    background: var(--accent-rose);
    color: white;
    transform: scale(1.1);
}

.product-card-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 500;
    color: white;
}

.product-card-badge i {
    font-size: 12px;
}

.product-card-body {
    padding: 14px 16px;
}

.product-card-game {
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-amber-dark);
    margin-bottom: 12px;
}

.product-card-seller {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.seller-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--border);
}

.seller-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seller-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-amber);
}

.seller-rating i {
    font-size: 10px;
}

.seller-rating span {
    color: var(--text-tertiary);
    font-weight: 400;
    margin-left: 2px;
}

/* ── STATS BANNER ── */
.stats-banner {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-item:nth-child(1) .stat-icon {
    background: #EEF2FF;
    color: #6366F1;
}

.stat-item:nth-child(2) .stat-icon {
    background: #FEF3C7;
    color: #F59E0B;
}

.stat-item:nth-child(3) .stat-icon {
    background: #ECFDF5;
    color: #10B981;
}

.stat-item:nth-child(4) .stat-icon {
    background: #FFF1F2;
    color: #F43F5E;
}

.stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ── CTA SECTION ── */
.cta-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.cta-card {
    background: var(--bg-accent-gradient);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 460px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn-cta-primary {
    padding: 14px 28px;
    background: white;
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-fast);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ── FOOTER ── */
.footer {
    background: var(--text-primary);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
}

.footer-brand .footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-accent-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    padding: 5px 0;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay for grid children */
.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* ── RESPONSIVE ── */

/* ── Tablet & Laptop (1150px) ── */
@media (max-width: 1150px) {
    .nav-links {
        display: none;
    }
    
    .btn-sell span {
        display: none;
    }
    
    .nav-actions .btn {
        padding: 8px 12px;
    }
    
    .search-capsule button {
        padding: 8px 16px;
    }
    
    .btn-sell i {
        margin-right: 0 !important;
    }
    
    .nav-search-v4 {
        margin: 0 8px;
    }
}

/* ── Specific Tablet (1024px) ── */
@media (max-width: 1024px) {

    .nav-search-v4 {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .navbar .container {
        justify-content: space-between;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    /* Filter pills scroll */
    .filter-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .filter-pills::-webkit-scrollbar {
        display: none;
    }
}

/* ── Small Tablet / Large Phone (768px) ── */
@media (max-width: 768px) {
    :root {
        --section-gap: 50px;
        --navbar-height: 60px;
    }

    .container {
        padding: 0 16px;
    }

    /* Navbar */
    .navbar .container {
        gap: 8px;
    }

    .navbar-logo {
        font-size: 18px;
        gap: 8px;
    }

    .navbar-logo .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .btn-sell {
        display: none;
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .nav-actions .btn-outline {
        padding: 7px 12px;
        font-size: 12px;
    }

    .nav-actions .btn-primary {
        padding: 7px 12px;
        font-size: 12px;
    }

    .user-menu-name {
        display: none;
    }

    .user-menu-arrow {
        display: none;
    }

    .user-menu-btn {
        padding: 3px;
        border-radius: 50%;
    }

    /* Hero */
    .hero {
        padding: 40px 0 36px;
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .hero-search {
        margin-bottom: 24px;
    }

    .hero-search input {
        padding: 14px 110px 14px 40px;
        font-size: 14px;
    }

    .hero-search .search-icon {
        font-size: 16px;
        left: 14px;
    }

    .hero-search .btn-search {
        padding: 9px 16px;
        font-size: 13px;
    }

    .hero-tags {
        gap: 6px;
    }

    .hero-tags a {
        padding: 5px 10px;
        font-size: 11px;
    }

    /* Section headings */
    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* Trending games */
    .trending-games {
        padding: 40px 0;
    }

    .game-card {
        flex: 0 0 160px;
    }

    .game-card-image {
        height: 120px;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    /* Newly added */
    .newly-added {
        padding: 36px 0;
    }

    .new-game-icon {
        width: 60px;
        height: 60px;
    }

    /* How it works */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-card {
        display: flex;
        gap: 16px;
        padding: 18px;
        align-items: center;
    }

    .step-card .step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-card .step-number {
        display: none;
    }

    .step-card h3 {
        font-size: 15px;
    }

    .step-card p {
        font-size: 12px;
    }

    /* Featured products */
    .featured-tabs {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .featured-tabs::-webkit-scrollbar {
        display: none;
    }

    .featured-tab {
        padding: 8px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .filter-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 6px;
    }

    .filter-pills::-webkit-scrollbar {
        display: none;
    }

    .filter-pill {
        font-size: 11px;
        padding: 6px 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card-image {
        height: 140px;
    }

    .product-card-body {
        padding: 10px;
    }

    .product-card-body h4 {
        font-size: 13px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* CTA */
    .cta-card {
        padding: 32px 20px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 10px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ── Phone (480px) ── */
@media (max-width: 480px) {
    :root {
        --navbar-height: 56px;
        --section-gap: 40px;
    }

    .container {
        padding: 0 12px;
    }

    /* Navbar */
    .navbar-logo {
        font-size: 16px;
        gap: 6px;
    }

    .navbar-logo .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .nav-actions .btn-outline,
    .nav-actions .btn-ghost {
        display: none;
    }

    .nav-actions .btn-primary {
        padding: 6px 10px;
        font-size: 11px;
    }

    /* Hero */
    .hero {
        padding: 32px 0 28px;
    }

    .hero h1 {
        font-size: 22px;
        line-height: 1.25;
    }

    .hero p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .hero-search input {
        padding: 12px 100px 12px 38px;
        font-size: 13px;
        border-radius: var(--radius-md);
    }

    .hero-search .btn-search {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: var(--radius-sm);
    }

    .hero-search .search-icon {
        font-size: 14px;
        left: 12px;
    }

    .hero-tags {
        display: none;
    }

    /* Trending */
    .trending-games {
        padding: 32px 0;
    }

    .game-card {
        flex: 0 0 140px;
    }

    .game-card-image {
        height: 100px;
    }

    .game-card-info {
        padding: 10px;
    }

    .game-card-info h4 {
        font-size: 12px;
    }

    .carousel-nav {
        display: none;
    }

    /* Newly added */
    .newly-added {
        padding: 28px 0;
    }

    .new-game-icon {
        width: 52px;
        height: 52px;
    }

    .new-game-item .game-name {
        font-size: 10px;
        max-width: 60px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card {
        display: flex;
        flex-direction: row;
        height: auto;
    }

    .product-card-image {
        width: 120px;
        height: auto;
        min-height: 100px;
        flex-shrink: 0;
    }

    .product-card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 12px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* CTA */
    .cta-card {
        padding: 28px 16px;
        border-radius: var(--radius-lg);
    }

    .cta-content h2 {
        font-size: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer .social-links {
        gap: 8px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* User menu dropdown */
    .user-dropdown {
        right: -8px;
        width: 200px;
    }
}

/* ── Extra Small (360px) ── */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 20px;
    }

    .hero-search input {
        padding: 10px 90px 10px 36px;
        font-size: 12px;
    }

    .hero-search .btn-search {
        padding: 7px 10px;
        font-size: 11px;
    }

    .section-title {
        font-size: 18px;
    }

    .products-grid {
        gap: 10px;
    }

    .product-card-image {
        width: 100px;
    }
}

/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transform: translateY(-110%);
    transition: transform var(--transition-normal);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.mobile-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-menu .mobile-search {
    position: relative;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.mobile-menu .mobile-search input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
}

.mobile-menu .mobile-search i {
    position: absolute;
    left: 14px;
    top: calc(50% + 6px);
    transform: translateY(-50%);
    color: var(--text-tertiary);
}

/* ── USER MENU (Logged In) ── */
.user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px 5px 5px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.user-menu-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.user-avatar-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-accent-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.user-menu-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-arrow {
    font-size: 10px;
    color: var(--text-tertiary);
    transition: transform var(--transition-fast);
}

.user-dropdown.open+.user-menu-btn .user-menu-arrow,
.user-menu-btn:focus .user-menu-arrow {
    transform: rotate(180deg);
}

/* ── BUTTONS (v3) ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    transition: all var(--transition-fast);
    gap: 10px;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 77, 45, 0.35);
}

.btn-sell {
    background: var(--bg-primary);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-sell:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-ghost {
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* ── USER MENU ── */
.user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
}

.user-menu-btn:hover {
    border-color: var(--primary);
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1100;
    overflow: hidden;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    margin-bottom: 4px;
}

.user-avatar-medium {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-accent-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.user-dropdown-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.user-dropdown-role {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.user-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.user-dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.user-dropdown-logout:hover {
    background: #FEF2F2;
    color: #DC2626;
}

/* ── SKELETON LOADING ── */
.skeleton {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}