/* ==========================================================================
   ALLIN1PROSOLUTION - CUSTOM VANILLA CSS
   Design System: Glassmorphism / Cosmic Dark Cyberpunk
   ========================================================================== */

/* Variables & Base Theme */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Theme Colors */
    --bg-dark: #070312;
    --bg-panel: rgba(17, 10, 36, 0.75);
    --bg-card: rgba(28, 18, 59, 0.45);
    --bg-card-hover: rgba(40, 26, 85, 0.65);
    
    --border-color: rgba(138, 43, 226, 0.25);
    --border-hover: rgba(0, 245, 255, 0.45);
    
    --accent-purple: #8a2be2;
    --accent-purple-glow: rgba(138, 43, 226, 0.45);
    --accent-cyan: #00f5ff;
    --accent-cyan-glow: rgba(0, 245, 255, 0.4);
    --accent-emerald: #00ff87;
    --accent-emerald-glow: rgba(0, 255, 135, 0.35);
    --accent-gold: #ffb800;
    --accent-gold-glow: rgba(255, 184, 0, 0.3);
    
    --text-main: #f3effa;
    --text-secondary: #aaa0cc;
    --text-muted: #726796;
    
    --shadow-neon: 0 0 20px var(--accent-purple-glow);
    --shadow-cyan: 0 0 20px var(--accent-cyan-glow);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease;
}

/* Reset & Base Elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-primary);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Utility Display Classes */
.d-none {
    display: none !important;
}
.text-success {
    color: var(--accent-emerald) !important;
}
.text-cyan {
    color: var(--accent-cyan) !important;
}
.mt-2 {
    margin-top: 1rem !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.w-100 {
    width: 100% !important;
}

/* Dynamic Aurora Background */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.08;
    z-index: -3;
    pointer-events: none;
}

.aurora-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.18;
    z-index: -2;
    pointer-events: none;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
}

.glow-2 {
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Glassmorphism Common Style */
.card-glass {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.card-glass:hover {
    border-color: var(--border-hover);
}

/* Typography Enhancements */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(10, 5, 26, 0.75);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0,245,255,0.1), rgba(138,43,226,0.1));
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-icon {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan);
    transform: rotate(5deg) scale(1.05);
}

.neon-icon {
    color: var(--accent-cyan);
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 5px var(--accent-cyan-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.nav-item i {
    width: 16px;
    height: 16px;
}

.nav-item:hover {
    color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.05);
}

.nav-item.active {
    color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Simulated Admin Toggle */
.admin-toggle-wrapper {
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.admin-toggle-wrapper:hover {
    border-color: rgba(138, 43, 226, 0.4);
}

.switch-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.admin-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-purple);
    vertical-align: middle;
    margin-right: 4px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: .3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-purple);
}

input:checked + .slider:before {
    transform: translateX(16px);
}

/* Cart Trigger Badge */
.cart-trigger {
    position: relative;
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.cart-trigger:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan);
}

.cart-trigger i {
    width: 18px;
    height: 18px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-cyan);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cartBounce 0.3s ease-out;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* User Account Area */
.auth-section {
    display: flex;
    gap: 8px;
}

.user-profile-circle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.user-profile-circle:hover {
    border-color: var(--accent-cyan);
}

.avatar-initial {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
}

.username-txt {
    font-size: 13px;
    font-weight: 500;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.35);
}

.btn-primary:hover:not(:disabled) {
    box-shadow: 0 4px 25px rgba(0, 245, 255, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Views & Routing Framework */
.main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 24px 80px 24px;
}

.view {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.view.active-view {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.view-title {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    color: var(--accent-cyan);
    width: 28px;
    height: 28px;
}

.view-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 6px;
}

/* VIEW 1: SHOP & HERO */
.hero {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 60px 0 80px 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: neonPulse 1.5s infinite alternate;
}

@keyframes neonPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 1; }
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 45px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-color);
}

/* Toolbar & Catalog Filtering */
.listing-toolbar {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media(min-width: 768px) {
    .listing-toolbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.search-wrapper {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

#search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    background: rgba(17, 10, 36, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

#search-input:focus {
    border-color: var(--accent-cyan);
    background: rgba(17, 10, 36, 0.7);
    box-shadow: var(--shadow-cyan);
}

#search-input:focus ~ .search-icon {
    color: var(--accent-cyan);
}

.filter-wrapper {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.filter-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.filter-chip:hover {
    color: var(--text-main);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255, 255, 255, 0.05);
}

.filter-chip.active {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(138, 43, 226, 0.1));
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.1);
}

/* Products Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media(min-width: 640px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), var(--shadow-cyan);
    background: var(--bg-card-hover);
}

.card-image-wrap {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(138,43,226,0.1), rgba(0,245,255,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-wrap canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.product-card:hover .card-image-wrap canvas {
    transform: scale(1.05);
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 5, 26, 0.85);
    border: 1px solid var(--border-color);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

.card-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(10, 5, 26, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}

.card-rating i {
    width: 10px;
    height: 10px;
    fill: #ffd700;
}

.card-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.product-card:hover .card-title {
    color: var(--accent-cyan);
}

.card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-price {
    display: flex;
    flex-direction: column;
}

.price-lbl {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-amt {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
}

.card-btns {
    display: flex;
    gap: 8px;
}

.btn-icon-only {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.02);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-icon-only:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.05);
}

.btn-icon-only i {
    width: 16px;
    height: 16px;
}

.btn-buy {
    padding: 0 16px;
    height: 38px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-buy:hover {
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
    transform: scale(1.02);
}

.btn-buy.added-success {
    background: var(--accent-emerald);
    box-shadow: 0 0 15px var(--accent-emerald-glow);
    color: var(--bg-dark);
}

/* Loading Shimmer Card */
.shimmer-card {
    height: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.shimmer-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 20%,
        rgba(255, 255, 255, 0.06) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.8s infinite;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* VIEW 2: CHECKOUT WIZARD */
.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media(min-width: 1024px) {
    .checkout-grid { grid-template-columns: 1.6fr 1fr; }
}

.checkout-form-side {
    padding: 32px;
}

.checkout-header {
    margin-bottom: 24px;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    background: rgba(10, 5, 26, 0.4);
    padding: 12px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.step-label {
    font-size: 13px;
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 12px;
    border-radius: 1px;
}

.step.active {
    opacity: 1;
}

.step.active .step-num {
    background: var(--accent-cyan);
    color: var(--bg-dark);
    box-shadow: var(--shadow-cyan);
}

.step.active .step-label {
    color: var(--accent-cyan);
}

.step.completed .step-num {
    background: var(--accent-emerald);
    color: var(--bg-dark);
}

.step.completed .step-label {
    color: var(--accent-emerald);
}

.step-line.completed {
    background: var(--accent-emerald);
}

/* Forms: Inputs & Floating Labels */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: viewFade 0.4s ease-out;
}

@keyframes viewFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: rgba(10, 5, 26, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 14px;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.15);
    background: rgba(10, 5, 26, 0.85);
}

.form-label {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

.form-control:focus ~ .form-icon {
    color: var(--accent-cyan);
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: 0;
    transform: translateY(-50%) scale(0.8);
    left: 16px;
    padding: 0 8px;
    background: #110a24;
    color: var(--accent-cyan);
    font-weight: 600;
}

.form-help {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
}

.step-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Selector & Dropdowns forms */
.form-group-select {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.select-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    padding-left: 4px;
}

.select-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 5, 26, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
    cursor: pointer;
}

.select-control:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.15);
}

.select-control option {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

/* Form Error / Shaking animation */
.form-error-banner {
    background: rgba(255, 59, 105, 0.1);
    border: 1px solid rgba(255, 59, 105, 0.3);
    color: #ff3b69;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* Payment Selector Cards */
.payment-method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.payment-card {
    background: rgba(10, 5, 26, 0.4);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.payment-card i {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.payment-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.payment-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.02);
}

.payment-card.active {
    border-color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.06);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.1);
}

.payment-card.active i,
.payment-card.active span {
    color: var(--accent-cyan);
}

/* Payment Detail Boxes */
.payment-details-box {
    background: rgba(10, 5, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 16px;
    min-height: 200px;
}

.payment-instructions {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
}

.qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.qr-svg {
    width: 140px;
    height: 140px;
    padding: 12px;
    background: #fff;
    color: #070312;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.bank-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.bank-detail-item {
    display: flex;
    flex-direction: column;
}

.b-lbl {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.b-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

/* Copy Buttons bank */
.bank-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.bd-lbl {
    color: var(--text-secondary);
}

.bd-val {
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy {
    background: none;
    border: none;
    color: var(--accent-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-copy:hover {
    transform: scale(1.1);
    color: var(--text-main);
}

.btn-copy i {
    width: 14px;
    height: 14px;
}

/* Screenshot Upload Area */
.upload-dropzone {
    border: 2px dashed var(--border-color);
    background: rgba(10, 5, 26, 0.3);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.upload-dropzone:hover, 
.upload-dropzone.dragover {
    border-color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.02);
}

.dz-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 50%;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.upload-dropzone:hover .dz-icon {
    background: rgba(0, 245, 255, 0.1);
    transform: translateY(-4px);
}

.upload-pulse {
    width: 24px;
    height: 24px;
    animation: float 2s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.dz-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.dz-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.dz-hint {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Upload Preview State */
.dz-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.preview-img-container {
    width: 100%;
    max-width: 240px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.preview-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 320px;
    background: rgba(10, 5, 26, 0.7);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.preview-info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.preview-info i {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
}

.preview-meta {
    display: flex;
    flex-direction: column;
}

.preview-filename {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-filesize {
    font-size: 11px;
    color: var(--text-muted);
}

.btn-remove {
    background: none;
    border: none;
    color: #ff3b69;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.btn-remove:hover {
    background: rgba(255, 59, 105, 0.1);
    transform: scale(1.05);
}

.btn-remove i {
    width: 16px;
    height: 16px;
}

/* Uploading Progress Bar */
.upload-status-box {
    background: rgba(10, 5, 26, 0.7);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
}

.status-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.status-msg {
    font-weight: 600;
    color: var(--accent-cyan);
}

.status-pct {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    border-radius: 4px;
    transition: width 0.1s linear;
}

/* Checkout Summary Side - Right */
.checkout-summary-side {
    padding: 32px;
    height: fit-content;
}

.summary-title {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}

.summary-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 4px;
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.sum-item-meta {
    display: flex;
    flex-direction: column;
}

.sum-name {
    font-weight: 600;
    color: var(--text-main);
}

.sum-qty {
    font-size: 11px;
    color: var(--text-muted);
}

.sum-price {
    font-weight: 700;
    color: var(--text-main);
}

.summary-pricing {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
}

.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    margin-top: 4px;
    font-size: 16px;
    color: var(--text-main);
    font-weight: 700;
}

.grand-total {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-cyan);
}

.payment-reminder {
    display: flex;
    gap: 12px;
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid var(--border-color);
    padding: 14px;
    border-radius: 12px;
}

.payment-reminder i {
    width: 20px;
    height: 20px;
    color: var(--accent-purple);
    flex-shrink: 0;
}

.payment-reminder p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* VIEW 3: CUSTOMER ORDERS DASHBOARD */
.orders-header {
    margin-bottom: 40px;
}

.orders-list-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.orders-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.orders-empty-state i {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.orders-empty-state h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.orders-empty-state p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Order Cards */
.order-card {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: rgba(20, 12, 44, 0.55);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.order-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
}

.order-card-header {
    background: rgba(10, 5, 26, 0.6);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media(min-width: 768px) {
    .order-card-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.order-meta-left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-field {
    display: flex;
    flex-direction: column;
}

.meta-lbl {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.meta-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.status-badge.pending {
    background: rgba(255, 165, 0, 0.08);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #ffa500;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.05);
    animation: badgePulse 2s infinite alternate;
}

@keyframes badgePulse {
    0% { border-color: rgba(255, 165, 0, 0.2); }
    100% { border-color: rgba(255, 165, 0, 0.6); }
}

.status-badge.completed {
    background: rgba(0, 255, 135, 0.08);
    border: 1px solid var(--accent-emerald);
    color: var(--accent-emerald);
    box-shadow: 0 0 10px var(--accent-emerald-glow);
}

.status-badge.rejected {
    background: rgba(255, 59, 105, 0.08);
    border: 1px solid rgba(255, 59, 105, 0.3);
    color: #ff3b69;
}

/* Order Details/Items inside order card */
.order-card-body {
    padding: 24px;
}

.order-items-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 5, 26, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 14px 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.order-product-row:hover {
    background: rgba(10, 5, 26, 0.5);
    border-color: rgba(138,43,226,0.15);
}

.item-info {
    display: flex;
    flex-direction: column;
}

.item-category {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    font-weight: 600;
}

.item-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
}

/* Admin Simulation Actions */
.order-action-btn-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-admin-approve {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid var(--accent-purple);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-admin-approve:hover {
    background: var(--accent-purple);
    box-shadow: var(--shadow-neon);
}

/* ==========================================================================
   RESELLER PORTAL SECTION
   ========================================================================== */

/* 1. Reseller Landing Screen */
.reseller-landing {
    max-width: 900px;
    margin: 40px auto;
    padding: 50px 40px;
    text-align: center;
}

.reseller-landing-header h2 {
    font-size: 38px;
    margin-top: 16px;
    margin-bottom: 12px;
}

.reseller-landing-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.reseller-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.25);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reseller-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media(min-width: 768px) {
    .reseller-benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
    background: rgba(10, 5, 26, 0.4);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    text-align: left;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.02);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.reseller-pending-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    background: rgba(255, 165, 0, 0.08);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #ffa500;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin: 30px auto;
    max-width: 600px;
}

.reseller-pending-badge i {
    color: #ffa500;
    width: 20px;
    height: 20px;
}

/* 2. Reseller Dashboard Header */
.reseller-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

/* Widgets Grid */
.reseller-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

@media(min-width: 640px) {
    .reseller-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 1024px) {
    .reseller-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Admin Control Center — 10 metric widgets */
.admin-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

@media(min-width: 640px) {
    .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 1024px) {
    .admin-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(min-width: 1280px) {
    .admin-stats-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Admin panel extensions */
.admin-tabs-scroll {
    flex-wrap: wrap;
    gap: 8px;
}

.admin-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.order-status-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
    margin-bottom: 20px;
}

.order-status-filters .filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.chip-count {
    background: rgba(0, 245, 255, 0.15);
    color: var(--accent-cyan);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.admin-settings-grid {
    max-width: 560px;
    padding: 32px;
}

.settings-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin: 24px 0 12px;
}

.settings-block-title:first-child {
    margin-top: 0;
}

.admin-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
}

.admin-toggle-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-cyan);
}

.screenshot-modal-card {
    max-width: 540px;
    padding: 24px;
}

.screenshot-viewer-wrap {
    max-width: 100%;
    height: 280px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: #070312;
    overflow: hidden;
}

.screenshot-viewer-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.screenshot-modal-actions {
    display: flex;
    gap: 12px;
}

.notif-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
    text-transform: uppercase;
}

.notif-email { background: rgba(0, 245, 255, 0.12); color: var(--accent-cyan); }
.notif-sms { background: rgba(138, 43, 226, 0.12); color: var(--accent-purple); }
.notif-whatsapp { background: rgba(0, 255, 135, 0.12); color: var(--accent-emerald); }

.btn-featured {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--accent-gold);
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    line-height: 1;
}
.btn-featured.active {
    background: rgba(255, 184, 0, 0.15);
    border-color: var(--accent-gold);
}

.form-label-static {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 8px;
}

.admin-file-upload input[type="file"] {
    padding: 10px;
    font-size: 12px;
}

.featured-badge {
    top: auto !important;
    bottom: 8px !important;
    left: 8px !important;
    background: rgba(255, 184, 0, 0.9) !important;
    color: #0b0c10 !important;
    font-weight: 800;
}

.r-stat-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.r-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.r-stat-icon i {
    width: 22px;
    height: 22px;
}

/* Colors for stat icon containers */
.r-stat-icon.purple { background: rgba(138, 43, 226, 0.1); color: var(--accent-purple); border: 1px solid rgba(138,43,226,0.25); }
.r-stat-icon.cyan { background: rgba(0, 245, 255, 0.1); color: var(--accent-cyan); border: 1px solid rgba(0,245,255,0.25); }
.r-stat-icon.emerald { background: rgba(0, 255, 135, 0.1); color: var(--accent-emerald); border: 1px solid rgba(0,255,135,0.25); }
.r-stat-icon.gold { background: rgba(255, 184, 0, 0.1); color: var(--accent-gold); border: 1px solid rgba(255,184,0,0.25); }

.r-stat-meta {
    display: flex;
    flex-direction: column;
}

.r-lbl {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.r-val {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
}

/* Special Wallet card with Payout trigger button */
.wallet-card {
    border-color: rgba(255, 184, 0, 0.3);
    padding-right: 110px; /* Make space for action btn */
}

.wallet-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px var(--accent-gold-glow);
}

.btn-payout-trigger {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-purple));
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.25);
    border: none;
    color: #fff;
    padding: 10px 16px;
    font-size: 12px;
}

.btn-payout-trigger:hover {
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4) !important;
}

/* Reseller Dashboard Sub-Navigation Tabs */
.reseller-tabs-nav {
    display: flex;
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 32px;
    gap: 6px;
    flex-wrap: wrap;
}

.r-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    min-width: 120px;
}

.r-tab-btn i {
    width: 16px;
    height: 16px;
}

.r-tab-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
}

.r-tab-btn.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent-cyan);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dashboard Tab contents layout */
.reseller-tab-content {
    display: none;
    animation: viewFade 0.4s ease-out;
}

.reseller-tab-content.active {
    display: block;
}

.panel-section-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* 1. Tab content: Reseller Products CRUD list details */
.reseller-products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reseller-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 5, 26, 0.4);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.reseller-product-row:hover {
    border-color: var(--accent-cyan);
    background: rgba(10, 5, 26, 0.6);
}

.rp-meta {
    display: flex;
    flex-direction: column;
}

.rp-category {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
}

.rp-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}

.rp-price {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.rp-actions {
    display: flex;
    gap: 8px;
}

.btn-edit {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: var(--accent-cyan);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-edit:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
    box-shadow: var(--shadow-cyan);
}

.btn-delete {
    background: rgba(255, 59, 105, 0.05);
    border: 1px solid rgba(255, 59, 105, 0.2);
    color: #ff3b69;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-delete:hover {
    background: #ff3b69;
    color: #fff;
}

/* 2. Tables for Reports (Sales & Withdrawals) */
.reseller-table-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
    color: var(--text-secondary);
}

.report-table th {
    background: rgba(10, 5, 26, 0.85);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.report-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.report-table tbody tr {
    transition: var(--transition-smooth);
}

.report-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.015);
    color: var(--text-main);
}

.report-table tbody tr:last-child td {
    border-bottom: none;
}

/* Withdrawals balance badge banner inside modal */
.wallet-balance-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.25);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.banner-lbl {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.banner-amt {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
}

/* ==========================================================================
   ADMIN EMAIL LOG ENVELOPES
   ========================================================================== */
.email-logs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 550px;
    overflow-y: auto;
    padding-right: 4px;
}

.email-log-item {
    background: rgba(10, 5, 26, 0.4);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.email-log-item:hover {
    border-color: var(--accent-cyan);
    background: rgba(10, 5, 26, 0.6);
}

.email-log-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
}

.email-log-body {
    font-family: monospace;
    font-size: 12px;
    color: var(--text-secondary);
    white-space: pre-line;
    line-height: 1.5;
}

/* ==========================================================================
   SHOPPING CART DRAWER (Slide-out from Right)
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 3, 13, 0.65);
    backdrop-filter: blur(5px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: rgba(15, 8, 33, 0.92);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
    z-index: 160;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(20px);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.btn-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-cyan);
    border-color: rgba(255,255,255,0.05);
}

.btn-close i {
    width: 16px;
    height: 16px;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Cart Item Cards */
.cart-item {
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
    position: relative;
    transition: var(--transition-smooth);
}

.cart-item:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    padding-right: 18px;
}

.cart-item-price {
    font-size: 13px;
    color: var(--accent-cyan);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.qty-btn i {
    width: 12px;
    height: 12px;
}

.qty-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    min-width: 16px;
    text-align: center;
}

.cart-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-item-remove:hover {
    color: #ff3b69;
}

.cart-item-remove i {
    width: 14px;
    height: 14px;
}

/* Empty Cart State */
.cart-empty {
    text-align: center;
    margin-top: 80px;
}

.cart-empty i {
    width: 44px;
    height: 44px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cart-empty p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Cart Footer Panel */
.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 5, 26, 0.8);
}

.cart-price-totals {
    margin-bottom: 20px;
}

.cart-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
}

.cart-price-row span:last-child {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-cyan);
}

.cart-price-note {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* MODAL OVERLAYS COMMON styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 3, 13, 0.65);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 16px;
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--accent-cyan);
    background: rgba(255,255,255,0.05);
}

.modal-close i {
    width: 18px;
    height: 18px;
}

/* MODAL: AUTHENTICATION */
.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 32px;
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalSlideUp {
    from { transform: translateY(30px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.auth-tabs {
    display: flex;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 28px;
}

.auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.auth-tab-btn.active {
    color: var(--accent-cyan);
}

.tab-slider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.auth-forms-container {
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.auth-form {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-form.active {
    display: block;
    opacity: 1;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-form-header h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.auth-form-header p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* MODAL: PRODUCT DETAILS (Quick View) */
.details-card {
    width: 100%;
    max-width: 800px;
    padding: 32px;
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media(min-width: 768px) {
    .details-grid { grid-template-columns: 1fr 1.2fr; }
}

.details-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details-img-wrap {
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(138,43,226,0.1), rgba(0,245,255,0.1));
}

.details-img-wrap canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-info {
    display: flex;
    flex-direction: column;
}

.details-category {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.details-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.details-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 13px;
}

.details-rating {
    color: #ffd700;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.details-rating i {
    width: 14px;
    height: 14px;
    fill: #ffd700;
}

.details-downloads {
    color: var(--text-secondary);
}

.details-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.details-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.feature-item i {
    width: 16px;
    height: 16px;
    color: var(--accent-emerald);
}

.details-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.details-price {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
}

/* MODAL: DOWNLOAD PROGRESS SYSTEM (Breathtaking Screen Overlay) */
.download-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 2, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 16px;
}

.download-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.download-card {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dl-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.dl-main-icon {
    width: 32px;
    height: 32px;
}

.pulse-glow {
    animation: downloadPulse 1.5s infinite ease-in-out;
}

@keyframes downloadPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--accent-cyan-glow)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 10px var(--accent-cyan)); }
}

#dl-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

#dl-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.dl-bar-wrapper {
    margin-bottom: 24px;
}

.dl-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.dl-security-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    background: rgba(10, 5, 26, 0.4);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.02);
}

.chk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.chk-item::before {
    content: '○';
    display: inline-block;
    width: 14px;
    flex-shrink: 0;
    text-align: center;
    font-size: 11px;
}

.chk-item.active::before {
    content: '◎';
    color: var(--accent-cyan);
}

.chk-item.completed::before {
    content: '✓';
    color: var(--accent-emerald);
    font-weight: 700;
}

.chk-item i,
.chk-item svg {
    display: none;
}

.chk-item.active {
    color: var(--accent-cyan);
}

.chk-item.completed {
    color: var(--accent-emerald);
}

/* Global Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 400;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
}

.toast {
    background: rgba(15, 8, 33, 0.9);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: 12px;
    color: var(--text-main);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: toastSlideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: var(--transition-smooth);
}

.toast.toast-success {
    border-color: var(--accent-emerald);
    border-left: 4px solid var(--accent-emerald);
}

.toast.toast-error {
    border-color: rgba(255, 59, 105, 0.6);
    border-left: 4px solid #ff3b69;
}

.toast-icon-success {
    color: var(--accent-emerald);
}

.toast-icon-error {
    color: #ff3b69;
}

@keyframes toastSlideIn {
    from { transform: translateX(100%) scale(0.9); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

.toast.toast-fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

/* Marketing: Homepage Slider */
.homepage-slider-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 24px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
}

.homepage-slider {
    position: relative;
    min-height: 320px;
}

.slider-slide {
    display: none;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-color: rgba(10, 10, 30, 0.85);
    padding: 48px 32px;
    align-items: center;
}

.slider-slide.active {
    display: flex;
}

.slider-slide-content {
    max-width: 640px;
    z-index: 2;
}

.slider-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.15;
}

.slider-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 520px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
}

.slider-dot.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* Store sale banner */
.store-sale-banner {
    max-width: 1200px;
    margin: 0 auto 16px;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(0, 230, 118, 0.12), rgba(0, 245, 255, 0.12));
    border: 1px solid rgba(0, 230, 118, 0.35);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--accent-emerald);
    font-size: 14px;
}

/* Promo banners */
.promo-banners-wrap {
    max-width: 1200px;
    margin: 0 auto 24px;
    display: grid;
    gap: 16px;
}

.promo-banner {
    min-height: 120px;
    background-size: cover;
    background-position: center;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 20, 0.88), rgba(5, 5, 20, 0.4));
}

.promo-banner-link {
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: inherit;
    display: block;
}

.promo-banner h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.promo-banner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Checkout coupon */
.coupon-apply-box {
    margin: 16px 0 8px;
}

.coupon-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.coupon-input-row .form-control {
    flex: 1;
}

/* Admin marketing thumbnails */
.mkt-thumb {
    width: 72px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

/* Support tickets */
.support-thread {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 320px;
    overflow-y: auto;
    margin-bottom: 12px;
}

.support-msg {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
}

.support-msg.staff {
    border-color: rgba(0, 245, 255, 0.35);
    background: rgba(0, 245, 255, 0.06);
}

.support-msg small {
    display: block;
    color: var(--text-muted);
    margin: 4px 0 6px;
    font-size: 11px;
}

.support-msg p {
    margin: 0;
    font-size: 14px;
    white-space: pre-wrap;
}

.customer-support-panel {
    margin-top: 32px;
}

.support-ticket-card {
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 12px;
}
