/**
 * DivineShopGaming - Cyber Neon Blue & Pure White Style System
 * High Performance & Ultra Clean Responsive Layout
 */

:root {
    --bg-primary: #030816;
    --bg-surface: #0a192f;
    --bg-surface-elevated: #0f2744;
    --bg-surface-hover: #16365c;
    
    --neon-blue: #00d2ff;
    --neon-blue-light: #38bdf8;
    --neon-blue-dark: #0070f3;
    --neon-blue-glow: rgba(0, 210, 255, 0.35);
    
    --ice-white: #ffffff;
    --text-white: #f8fafc;
    --text-sub: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-blue: rgba(56, 189, 248, 0.22);
    --border-blue-active: #00d2ff;
    
    --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* Global Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 50% 0%, #0d294d 0%, #030816 55%, #01040a 100%),
        radial-gradient(circle at 10% 20%, rgba(0, 210, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(0, 112, 243, 0.08) 0%, transparent 40%);
    color: var(--text-white);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    color: var(--neon-blue-light);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: var(--ice-white);
}

/* Blue Snow Particles */
#purple-snow {
    position: fixed;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.purple-snowflake {
    position: absolute;
    top: -20px;
    color: #38bdf8;
    font-size: var(--size, 12px);
    opacity: var(--opacity, 0.5);
    filter: drop-shadow(0 0 6px #00d2ff);
    animation: blueSnowFall var(--duration, 8s) linear infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes blueSnowFall {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: var(--opacity, 0.7);
    }
    50% {
        transform: translateY(50vh) translateX(var(--drift, 30px)) rotate(180deg);
    }
    85% {
        opacity: var(--opacity, 0.7);
    }
    100% {
        transform: translateY(105vh) translateX(var(--drift-small, -20px)) rotate(360deg);
        opacity: 0;
    }
}

/* ==========================================================================
   NAVBAR & HEADER - HIGH PERFORMANCE & RESPONSIVE
   ========================================================================== */
.site-navbar {
    background: rgba(5, 16, 36, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 210, 255, 0.25);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    padding: 10px 0;
    transition: all 0.3s ease;
    z-index: 1040;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.6));
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -0.3px;
    color: var(--ice-white);
    background: linear-gradient(135deg, #ffffff 40%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.brand-tagline {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--neon-blue);
    white-space: nowrap;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-link-custom {
    color: var(--text-sub) !important;
    font-weight: 600;
    font-size: 0.86rem;
    padding: 7px 13px !important;
    border-radius: 10px;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    white-space: nowrap !important;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nav-link-custom i {
    font-size: 1rem;
}

.nav-link-custom:hover {
    color: var(--ice-white) !important;
    background: rgba(0, 210, 255, 0.12) !important;
    border-color: rgba(0, 210, 255, 0.25) !important;
}

.nav-link-custom.active {
    color: var(--ice-white) !important;
    background: rgba(0, 112, 243, 0.28) !important;
    border: 1px solid var(--neon-blue) !important;
    box-shadow: 0 0 14px rgba(0, 210, 255, 0.25) !important;
}

.nav-btn-track {
    background: linear-gradient(135deg, #0070f3, #00d2ff) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 14px rgba(0, 112, 243, 0.4) !important;
    font-weight: 800 !important;
    padding: 7px 16px !important;
}

.nav-btn-track:hover {
    background: linear-gradient(135deg, #00d2ff, #38bdf8) !important;
    color: #030816 !important;
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.6) !important;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(5, 16, 36, 0.98);
        border: 1px solid var(--border-blue);
        border-radius: 16px;
        padding: 16px;
        margin-top: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }
    .navbar-nav {
        align-items: stretch !important;
    }
    .nav-link-custom {
        padding: 10px 14px !important;
        width: 100%;
        justify-content: flex-start;
    }
}

/* ==========================================================================
   HERO CAROUSEL
   ========================================================================== */
.hero-carousel-wrap {
    margin-top: 8px;
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 210, 255, 0.15);
    border: 1px solid var(--border-blue);
    background: #020814;
}

.hero-carousel-wrap .carousel-item {
    aspect-ratio: 16 / 6;
    max-height: 440px;
    background-color: #020814;
}

.hero-carousel-wrap img, .hero-carousel-wrap svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    width: 28px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.carousel-control-prev, .carousel-control-next {
    width: 8%;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

/* ==========================================================================
   SEARCH BAR & CATEGORY FILTER PILLS
   ========================================================================== */
.search-trigger-box {
    margin-bottom: 24px;
}

.search-input-mock {
    background: rgba(10, 25, 47, 0.85);
    border: 1px solid var(--border-blue);
    border-radius: 14px;
    padding: 12px 18px;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-input-mock:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 18px var(--neon-blue-glow);
    color: var(--ice-white);
}

.search-badge-hint {
    margin-left: auto;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--neon-blue-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.category-filter-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.category-filter-wrap::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    background: rgba(10, 25, 47, 0.75);
    border: 1px solid var(--border-blue);
    color: var(--text-sub);
    padding: 9px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cat-pill:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: var(--neon-blue);
    color: var(--ice-white);
}

.cat-pill.active {
    background: linear-gradient(135deg, #0070f3, #00d2ff);
    color: #ffffff;
    border-color: #38bdf8;
    box-shadow: 0 4px 16px rgba(0, 210, 255, 0.4);
    font-weight: 800;
}

/* ==========================================================================
   GAME GRID & CARDS
   ========================================================================== */
.game-section-box {
    background: rgba(10, 25, 47, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-blue);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.game-section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.game-section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--ice-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-section-title i {
    color: var(--neon-blue);
    font-size: 1.25rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1200px) {
    .game-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 992px) {
    .game-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .game-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .game-section-box { padding: 16px; }
}
@media (max-width: 480px) {
    .game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.game-card {
    background: linear-gradient(160deg, #0f2744 0%, #08152b 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-blue);
    box-shadow: 0 12px 28px rgba(0, 210, 255, 0.3);
}

.game-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #040d1a;
}

.game-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.game-badge.popular {
    background: linear-gradient(135deg, #00d2ff, #0070f3);
    color: #ffffff;
}

.game-badge.instant {
    background: rgba(16, 185, 129, 0.9);
    color: #ffffff;
}

.game-card-title {
    padding: 10px 10px 12px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a192f;
}

.game-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.see-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.btn-see-more-game {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid var(--border-blue);
    color: var(--neon-blue-light);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-see-more-game:hover {
    background: linear-gradient(135deg, #0070f3, #00d2ff);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(0, 210, 255, 0.4);
}

/* ==========================================================================
   TOP-UP MULTI-STEP ORDER FORM
   ========================================================================== */
.game-detail-header {
    background: rgba(10, 25, 47, 0.8);
    border: 1px solid var(--border-blue);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
}

.game-detail-img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 18px var(--neon-blue-glow);
}

.game-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.game-trust-pill {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ice-white);
    padding: 3px 8px;
    border-radius: 6px;
}

.step-box {
    background: rgba(10, 25, 47, 0.8);
    border: 1px solid var(--border-blue);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.step-box.step-active {
    border-color: var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0070f3, #00d2ff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 0 14px rgba(0, 210, 255, 0.4);
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--ice-white);
    margin-bottom: 2px;
}

.step-subtitle {
    font-size: 0.78rem;
    color: var(--text-sub);
}

/* Step 1 Account Grid */
.account-inputs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.account-inputs-grid.has-server {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
}

@media (max-width: 480px) {
    .account-inputs-grid.has-server {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px;
    }
}

.custom-form-control {
    background: #ffffff !important;
    border: 1.5px solid #94a3b8 !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    padding: 11px 14px !important;
    border-radius: 12px;
    transition: all 0.2s ease !important;
    width: 100%;
    box-sizing: border-box !important;
}

.input-group > .custom-form-control {
    width: 1% !important; /* Bootstrap's default for input-group inputs to share flex space */
}

.input-group > .custom-form-control {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.input-group > .input-group-text {
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    border: 1.5px solid #94a3b8 !important;
    border-right: 0 !important;
}

.custom-form-control::placeholder {
    color: #94a3b8 !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
}

.custom-form-control:focus {
    border-color: #0070f3 !important;
    box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.25) !important;
    outline: none !important;
}

.btn-help-id {
    background: none;
    border: none;
    color: var(--neon-blue-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-help-id:hover {
    color: var(--ice-white);
    text-decoration: underline;
}

/* Step 2 Subcategory Tabs & Denom Grid */
.package-subcat-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 16px;
    scrollbar-width: none;
}

.subcat-tab-btn {
    background: rgba(15, 39, 68, 0.8);
    border: 1px solid var(--border-blue);
    color: var(--text-sub);
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subcat-tab-btn.active {
    background: linear-gradient(135deg, #0070f3, #00d2ff);
    color: #ffffff;
    border-color: #38bdf8;
    box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3);
}

.denom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .denom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.denom-card {
    background: #0b1f38;
    border: 1.5px solid rgba(56, 189, 248, 0.25);
    border-radius: 14px;
    padding: 14px 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 88px;
}

.denom-card:hover {
    border-color: var(--neon-blue);
    background: #122d4f;
    box-shadow: 0 4px 18px var(--neon-blue-glow);
    transform: translateY(-2px);
}

.denom-card.selected {
    background: rgba(0, 210, 255, 0.15) !important;
    border: 2px solid var(--neon-blue) !important;
    box-shadow: 0 0 22px var(--neon-blue-glow) !important;
}

.denom-badge-star {
    position: absolute;
    top: -8px;
    right: 8px;
    background: linear-gradient(135deg, #00d2ff, #0070f3);
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.denom-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ice-white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.denom-price {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--neon-blue);
}

/* Step 3 Payment Methods */
.payment-group-header {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ice-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 16px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.payment-card {
    background: #0f2744;
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-card:hover {
    border-color: var(--neon-blue);
    background: #16365c;
}

.payment-card.selected {
    background: rgba(0, 210, 255, 0.15);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-blue-glow);
}

.payment-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 6px;
}

.payment-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ice-white);
}

.payment-badge-fee {
    font-size: 0.72rem;
    color: var(--text-sub);
}

.payment-price-calc {
    color: var(--neon-blue);
    font-weight: 800;
    font-size: 0.9rem;
}

/* Step 5 Checkout Button */
.btn-checkout-primary {
    background: linear-gradient(135deg, #0070f3 0%, #00d2ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 15px 24px;
    border-radius: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 112, 243, 0.4);
    transition: all 0.2s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.btn-checkout-primary:hover {
    background: linear-gradient(135deg, #00d2ff 0%, #38bdf8 100%);
    color: #030816;
    text-shadow: none;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.6);
    transform: translateY(-2px);
}

/* Sticky Mobile Checkout Bar */
.sticky-checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 16, 36, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-blue);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-checkout-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--neon-blue);
}

/* ==========================================================================
   ORDER LOOKUP & TRACKING PAGE
   ========================================================================== */
.order-search-box {
    max-width: 680px;
    margin: 0 auto 40px;
}

.order-status-badge {
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.order-status-badge.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

.order-status-badge.pending {
    background: rgba(0, 210, 255, 0.2);
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
}

.order-status-badge.processing {
    background: rgba(56, 189, 248, 0.2);
    color: var(--neon-blue-light);
    border: 1px solid var(--neon-blue-light);
}

.recent-order-box {
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid var(--border-blue);
    border-radius: 16px;
    padding: 20px;
}

.recent-order-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--ice-white);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recent-order-table {
    width: 100%;
    color: var(--text-white);
    font-size: 0.85rem;
}

.recent-order-table th {
    background: rgba(15, 39, 68, 0.8);
    padding: 10px 12px;
    font-weight: 700;
    color: var(--neon-blue-light);
    border-bottom: 1px solid var(--border-blue);
}

.recent-order-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    vertical-align: middle;
}

/* ==========================================================================
   MODAL & FOOTER
   ========================================================================== */
/* ==========================================================================
   MODERN FLOATING BOTTOM BAR & CEK PESANAN MODAL (ZEESHOP STYLE)
   ========================================================================== */
.floating-checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 16, 36, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(0, 210, 255, 0.35);
    padding: 12px 16px;
    z-index: 1050;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 210, 255, 0.15);
}

.checkout-popup-card {
    background: linear-gradient(165deg, #091c3d 0%, #040e22 100%) !important;
    border: 1px solid rgba(0, 210, 255, 0.4) !important;
    border-radius: 22px !important;
    color: #f8fafc !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 210, 255, 0.25) !important;
    overflow: hidden !important;
}

.modal-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0070f3, #00d2ff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 0 14px rgba(0, 210, 255, 0.45);
}

.popup-detail-list {
    background: rgba(10, 25, 47, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 16px;
    padding: 8px 16px;
}

.popup-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
    font-size: 0.9rem;
}

.popup-label {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.popup-value {
    color: #ffffff;
    font-weight: 700;
    text-align: right;
}

.popup-notice-box {
    background: rgba(0, 210, 255, 0.08);
    border: 1px dashed rgba(0, 210, 255, 0.4);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

.site-footer {
    background: #020814;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    padding: 48px 0 24px;
    margin-top: 60px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.1rem;
    margin-right: 8px;
    transition: all 0.2s ease;
}

.social-icon-btn:hover {
    background: linear-gradient(135deg, #0070f3, #00d2ff);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 210, 255, 0.4);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
}

/* Utilities */
.text-purple { color: var(--neon-blue) !important; }
.text-neon-blue { color: var(--neon-blue) !important; }
.bg-purple { background-color: var(--neon-blue-dark) !important; }
.bg-purple-subtle { background-color: rgba(0, 210, 255, 0.18) !important; }
.text-neon-accent { color: var(--neon-blue) !important; }
.hover-white:hover { color: #ffffff !important; }
