/* ================================================================
   GXABOY SHOP — MODERN GAMING THEME v2.0
   Clean, Dark, Professional Gaming Store Design
   ================================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
    /* Core (overridden by PHP) */
    --main: #a855f7;
    --sub: #6366f1;
    --main-rgb: 168, 85, 247;
    --sub-rgb: 99, 102, 241;

    /* Surfaces */
    --bg-body: #07080c;
    --bg-surface: #0d0e14;
    --bg-card: #12131a;
    --bg-card-hover: #181924;
    --bg-elevated: #1a1b26;
    --bg-input: #0f1017;

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --border-active: rgba(var(--main-rgb), 0.4);

    /* Text */
    --text-primary: #f0f0f5;
    --text-secondary: #8b8d9e;
    --text-muted: #555770;

    /* Accents */
    --accent-gradient: linear-gradient(135deg, var(--main), var(--sub));
    --accent-glow: 0 0 20px rgba(var(--main-rgb), 0.3);
    --accent-glow-lg: 0 0 40px rgba(var(--main-rgb), 0.2);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
}

/* ===== GLOBAL RESETS ===== */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =================================================================
   NAVBAR
   ================================================================= */
.gxa-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

.gxa-navbar.scrolled {
    background: rgba(7, 8, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.gxa-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gxa-brand img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(var(--main-rgb), 0.3));
    transition: var(--transition);
}

.gxa-brand:hover img {
    filter: drop-shadow(0 0 15px rgba(var(--main-rgb), 0.5));
    transform: scale(1.05);
}

/* Nav Links */
.gxa-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 4px;
}

.gxa-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    white-space: nowrap;
}

.gxa-nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.gxa-nav-link.active {
    color: #fff;
    background: var(--accent-gradient);
    box-shadow: 0 2px 12px rgba(var(--main-rgb), 0.3);
}

.gxa-nav-link i {
    font-size: 13px;
}

.gxa-nav-dropdown {
    position: relative;
}

.gxa-nav-dropdown .gxa-nav-link::after {
    display: none;
}

/* Nav Actions */
.gxa-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dropdown Menu */
.gxa-dropdown-menu {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    animation: dropIn 0.2s var(--ease);
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gxa-dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.gxa-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    transform: translateX(4px);
}

.gxa-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 8px;
}

/* User Button */
.gxa-user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 12px 4px 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.gxa-user-btn:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.05);
}

.gxa-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.gxa-user-info {
    line-height: 1.2;
}

.gxa-user-greeting {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.gxa-user-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
}

/* User Dropdown */
.gxa-user-dropdown {
    min-width: 260px;
}

.gxa-user-balance {
    text-align: center;
    padding: 16px;
    background: rgba(var(--main-rgb), 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 6px;
}

.gxa-balance-label {
    font-size: 12px;
    color: var(--text-muted);
}

.gxa-balance-amount {
    font-size: 22px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mini Music Player */
.gxa-mini-player {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 4px 12px 4px 4px;
    height: 40px;
    max-width: 240px;
    transition: var(--transition);
}

.gxa-mini-player:hover {
    border-color: rgba(var(--main-rgb), 0.3);
}

.gxa-mini-player.playing {
    border-color: rgba(var(--main-rgb), 0.4);
    box-shadow: 0 0 15px rgba(var(--main-rgb), 0.1);
}

.gxa-player-thumb-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gxa-player-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: spin 8s linear infinite;
    animation-play-state: paused;
}

.gxa-mini-player.playing .gxa-player-thumb {
    animation-play-state: running;
}

.gxa-player-info {
    flex-direction: column;
    overflow: hidden;
    flex: 1;
    min-width: 80px;
}

.gxa-player-title-wrap {
    overflow: hidden;
    white-space: nowrap;
    height: 14px;
}

.gxa-player-title {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    display: inline-block;
    animation: marquee 12s linear infinite;
}

.gxa-player-artist {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gxa-player-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.gxa-player-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.gxa-player-btn:hover {
    background: var(--main);
    border-color: var(--main);
}

.gxa-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 45px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
}

.gxa-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    background: var(--main);
    border-radius: 50%;
    cursor: pointer;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

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

/* Hamburger */
.gxa-hamburger {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.gxa-hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Drawer */
.gxa-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.gxa-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    z-index: 1200;
    transition: right 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.gxa-mobile-drawer.open {
    right: 0;
}

body.drawer-open {
    overflow: hidden;
}

.gxa-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.gxa-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gxa-drawer-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.gxa-drawer-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.gxa-drawer-links {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gxa-drawer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 15px;
    transition: var(--transition);
}

.gxa-drawer-link:hover,
.gxa-drawer-link.active {
    background: rgba(var(--main-rgb), 0.08);
    color: var(--text-primary);
}

.gxa-drawer-link.active {
    color: var(--main);
    font-weight: 500;
}

.gxa-drawer-link i {
    width: 20px;
    text-align: center;
}

.gxa-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}

/* =================================================================
   BUTTONS
   ================================================================= */
.gxa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.gxa-btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

.gxa-btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.gxa-btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--main-rgb), 0.3);
}

.gxa-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--main-rgb), 0.4);
    filter: brightness(1.1);
    color: #fff;
}

.gxa-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.gxa-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.gxa-btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

.gxa-btn-danger:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: #fff;
}

/* =================================================================
   CARDS
   ================================================================= */
.gxa-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.gxa-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

/* =================================================================
   PRICING
   ================================================================= */
.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85em;
    margin-right: 6px;
}

.price-sale {
    color: #ef4444;
    font-weight: 700;
}

.price-normal {
    font-weight: 600;
    color: var(--text-primary);
}

.price-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 6px;
}

/* =================================================================
   SECTION HEADER
   ================================================================= */
.gxa-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.gxa-section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gxa-section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0;
}

/* =================================================================
   STAT CARDS
   ================================================================= */
.gxa-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.gxa-stat-card:hover {
    border-color: rgba(var(--main-rgb), 0.2);
    box-shadow: 0 0 20px rgba(var(--main-rgb), 0.05);
}

.gxa-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.gxa-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.gxa-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(var(--main-rgb), 0.08);
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* =================================================================
   PRODUCT CARDS
   ================================================================= */
.gxa-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.gxa-product-card:hover {
    border-color: rgba(var(--main-rgb), 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--main-rgb), 0.08);
}

.gxa-product-img-wrap {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    background: var(--bg-surface);
}

.gxa-product-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gxa-product-card:hover .gxa-product-img-wrap img {
    transform: scale(1.08);
}

.gxa-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.gxa-badge-instock {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.gxa-badge-new {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.gxa-badge-outstock {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gxa-product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gxa-product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gxa-product-price {
    font-size: 16px;
    margin-bottom: 12px;
    margin-top: auto;
}

.gxa-product-actions {
    margin-top: auto;
}

/* Product Hover Logo Overlay */
.gxa-product-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
    pointer-events: none;
}

.gxa-product-card:hover .gxa-product-hover-overlay {
    opacity: 1;
}

.hover-logo-center {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-logo-center img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.hover-ring {
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 50%;
    pointer-events: none;
}

.hover-ring.ring-1 {
    width: 78px;
    height: 78px;
    border: 1.5px solid rgba(var(--main-rgb), 0.6);
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: hoverSpin 4s linear infinite;
    box-shadow: 0 0 10px rgba(var(--main-rgb), 0.3), inset 0 0 6px rgba(var(--main-rgb), 0.1);
}

.hover-ring.ring-2 {
    width: 95px;
    height: 95px;
    border: 1px solid rgba(var(--main-rgb), 0.4);
    border-left-color: transparent;
    border-right-color: transparent;
    animation: hoverSpinReverse 5s linear infinite;
    box-shadow: 0 0 14px rgba(var(--main-rgb), 0.2);
}

.hover-spark {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.9);
    animation: hoverSpark 2.5s ease-in-out infinite;
}

.hover-spark.sp-1 {
    top: 32%;
    left: 28%;
    animation-delay: 0s;
}

.hover-spark.sp-2 {
    top: 26%;
    right: 30%;
    animation-delay: 0.7s;
}

.hover-spark.sp-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 1.4s;
}

.hover-spark.sp-4 {
    bottom: 24%;
    right: 27%;
    animation-delay: 0.3s;
}

.hover-spark.sp-5 {
    top: 50%;
    left: 18%;
    animation-delay: 1.8s;
}

.hover-spark.sp-6 {
    top: 50%;
    right: 18%;
    animation-delay: 1.1s;
}

@keyframes hoverSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes hoverSpinReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes hoverSpark {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.gxa-btn-buy {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.gxa-btn-buy:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--main-rgb), 0.3);
    color: #fff;
}

/* =================================================================
   NEWS TICKER
   ================================================================= */
.gxa-news-bar {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(var(--main-rgb), 0.25);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gxa-news-label {
    background: var(--accent-gradient);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.gxa-news-text,
.gxa-news-text marquee {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--main) !important;
    font-size: 14px;
    flex: 1;
}

/* =================================================================
   BANNER / HERO
   ================================================================= */
.gxa-hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--border);
}

.gxa-hero img {
    width: 100%;
    display: block;
}

/* =================================================================
   LATEST ORDERS
   ================================================================= */
.gxa-order-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.gxa-order-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.gxa-order-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.gxa-order-info {
    flex: 1;
    overflow: hidden;
}

.gxa-order-product {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gxa-order-meta {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    margin-top: 2px;
}

/* =================================================================
   COLLECTION CARDS
   ================================================================= */
.gxa-collection-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.gxa-collection-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.gxa-collection-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* =================================================================
   FOOTER
   ================================================================= */
.gxa-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 8, 12, 0.92);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border);
    padding: 10px 0;
    z-index: 900;
}

.gxa-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gxa-footer-copy {
    color: var(--text-muted);
    font-size: 13px;
}

.gxa-footer-copy strong {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* =================================================================
   SWAL OVERRIDE
   ================================================================= */
.gxa-swal-popup {
    border-radius: var(--radius-xl) !important;
    border: 1px solid var(--border) !important;
    backdrop-filter: blur(20px) !important;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 991.98px) {
    .gxa-mini-player {
        display: none;
    }

    body {
        padding-top: 64px;
        padding-bottom: 0;
    }

    .gxa-footer {
        display: none;
    }
}

@media (min-width: 992px) {
    body {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575.98px) {
    .gxa-section-title {
        font-size: 18px;
    }

    .gxa-stat-value {
        font-size: 22px;
    }
}

/* =================================================================
   UTILITIES
   ================================================================= */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-border {
    border-color: rgba(var(--main-rgb), 0.3) !important;
}

.glow-shadow {
    box-shadow: var(--accent-glow) !important;
}