/* ===== DADA GAMING SHOP - Professional Styles ===== */

:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --secondary: #a855f7;
    --accent: #ec4899;
    --dark: #0f0c29;
    --dark-2: #1a1a2e;
    --dark-3: #16213e;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #e0e0e0;
    --text-muted: #8888a0;
    --success: #00d2a0;
    --warning: #ffc107;
    --danger: #ff4757;
    --gradient-1: linear-gradient(135deg, #6c5ce7, #a855f7);
    --gradient-2: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --gradient-3: linear-gradient(135deg, #6c5ce7, #a855f7, #ec4899);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(15, 12, 41, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
    z-index: 1050;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(15, 12, 41, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 991px) {
    .navbar .navbar-collapse {
        background: rgba(15, 12, 41, 0.98);
        border-radius: 12px;
        padding: 15px;
        margin-top: 10px;
        border: 1px solid var(--card-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    .navbar .navbar-collapse .nav-link {
        padding: 10px 15px !important;
        border-radius: 8px;
        margin-bottom: 2px;
    }
    .navbar .navbar-collapse .nav-link:hover {
        background: rgba(108, 92, 231, 0.15);
    }
    .navbar .navbar-collapse .btn-glow {
        display: block;
        text-align: center;
        margin-top: 8px;
        margin-left: 0 !important;
    }
}
.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: #fff !important;
    background: rgba(108, 92, 231, 0.15);
}

/* Dropdown Menu */
.dropdown-menu-dark {
    background: rgba(15, 12, 41, 0.98);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 8px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.dropdown-menu-dark .dropdown-item {
    color: rgba(255,255,255,0.7);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s;
}
.dropdown-menu-dark .dropdown-item:hover {
    background: rgba(108,92,231,0.15);
    color: #fff;
}
.dropdown-menu-dark .dropdown-item i { width: 20px; margin-right: 8px; }
.dropdown-menu-dark .dropdown-divider { border-color: var(--card-border); }

/* ===== BUTTONS ===== */
.btn-glow {
    background: var(--gradient-1);
    color: #fff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.5);
    color: #fff !important;
}
.btn-outline-glow {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-outline-glow:hover {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite reverse;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero-title span {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 1.5rem;
}
.hero-stat h3 {
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0;
}
.hero-image {
    position: relative;
    z-index: 1;
}
.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--dark-2); }
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.section-title span {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

/* ===== CARDS ===== */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Category Card (legacy) */
.category-card {
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.category-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.3s;
}
.category-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4);
}
.category-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}
.category-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Category Slider (Horizontal Swipe Carousel) */
/* Navbar Logo */
.navbar-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}
@media (max-width: 768px) {
    .navbar-logo {
        max-height: 32px;
    }
}

/* Footer Logo */
.footer-brand-link {
    display: inline-block;
    margin-bottom: 12px;
}
.footer-logo {
    max-height: 42px;
    width: auto;
    object-fit: contain;
}

.category-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 5px;
}
.category-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 16px;
}
.category-slider::-webkit-scrollbar { display: none; }
.category-slide {
    flex: 0 0 130px;
    min-width: 130px;
    scroll-snap-align: start;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 18px 10px 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.category-slide:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.category-slide-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.3rem;
    color: #fff;
    transition: all 0.3s;
}
.category-slide:hover .category-slide-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}
.category-slide h6 {
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 3px;
    line-height: 1.2;
}
.category-slide span {
    color: var(--text-muted);
    font-size: 0.7rem;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.85);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.slider-arrow:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}
.slider-arrow-left { left: 0; }
.slider-arrow-right { right: 0; }
@media (max-width: 768px) {
    .category-slide {
        flex: 0 0 110px;
        min-width: 110px;
        padding: 14px 8px 12px;
    }
    .category-slide-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .category-slide h6 { font-size: 0.72rem; }
    .category-slide span { font-size: 0.65rem; }
    .slider-arrow { display: none; }
}

/* Feature Slider (Horizontal Swipe Carousel) */
.feature-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 5px;
}
.feature-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 16px;
}
.feature-slider::-webkit-scrollbar { display: none; }
.feature-slide {
    flex: 0 0 140px;
    min-width: 140px;
    scroll-snap-align: start;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px 10px 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.feature-slide:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.feature-slide-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s;
}
.feature-slide:hover .feature-slide-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}
.feature-slide h6 {
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 4px;
    line-height: 1.2;
}
.feature-slide span {
    color: var(--text-muted);
    font-size: 0.68rem;
    line-height: 1.3;
    display: block;
}
@media (max-width: 768px) {
    .feature-slide {
        flex: 0 0 120px;
        min-width: 120px;
        padding: 16px 8px 12px;
    }
    .feature-slide-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .feature-slide h6 { font-size: 0.72rem; }
    .feature-slide span { font-size: 0.62rem; }
}

/* Product Card */
.product-card {
    overflow: hidden;
    padding: 0;
}
.product-card .product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-card .product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-1);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.product-card .product-body {
    padding: 20px;
}
.product-card .product-category {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-card .product-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card .product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}
.product-card .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-top: 1px solid var(--card-border);
}
.product-card .product-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.product-card .product-price .old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    -webkit-text-fill-color: var(--text-muted);
    font-weight: 400;
    margin-left: 5px;
}

/* ===== AUTH PAGES ===== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: var(--gradient-2);
}
.auth-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
}
.auth-card h2 {
    font-weight: 800;
    margin-bottom: 10px;
}
.auth-card .form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
}
.auth-card .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.2);
}
.auth-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.auth-card .form-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}
.auth-card .input-group-text {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    border-radius: 10px 0 0 10px;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    color: var(--text-muted);
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== SIDEBAR TOGGLE BTN ===== */
.sidebar-toggle-btn {
    font-size: 1.2rem;
    padding: 6px 10px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}
.sidebar-toggle-btn:hover {
    background: rgba(108, 92, 231, 0.15);
}

/* ===== SIDEBAR & DASHBOARD ===== */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 70px;
}
.sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 50%, #0f0f1a 100%);
    border-right: 1px solid rgba(108, 92, 231, 0.15);
    padding: 20px 0;
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1030;
    transition: transform 0.3s ease, width 0.3s ease;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.3);
}
.sidebar-user-info {
    padding: 20px 20px 15px;
    margin: 0 12px 10px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(168, 85, 247, 0.1));
    border-radius: 14px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}
.sidebar-user-info h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.sidebar-user-info small {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
}
.sidebar-user-info .user-avatar-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}
.sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px !important;
    margin: 2px 12px;
    color: rgba(255,255,255,0.55) !important;
    font-weight: 500;
    font-size: 0.88rem;
    border-radius: 10px !important;
    border-left: none;
    transition: all 0.25s ease;
    position: relative;
}
.sidebar .nav-link:hover {
    color: #fff !important;
    background: rgba(108, 92, 231, 0.12) !important;
}
.sidebar .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.25), rgba(168, 85, 247, 0.15)) !important;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.15);
}
.sidebar .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gradient-1);
    border-radius: 0 4px 4px 0;
}
.sidebar .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
}
.sidebar .nav-link.active i {
    opacity: 1;
    color: var(--primary);
}
.sidebar .sidebar-heading {
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 18px 20px 6px 32px;
    font-weight: 700;
}
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1029;
    backdrop-filter: blur(2px);
}
.dashboard-content {
    padding: 90px 30px 30px;
    min-height: 100vh;
}
/* Main content with sidebar (for non-dashboard pages) */
.main-with-sidebar {
    margin-left: 260px;
    padding-top: 0;
    transition: margin-left 0.3s ease;
}
/* When sidebar is hidden on desktop */
body.sidebar-hidden .sidebar {
    transform: translateX(-100%);
}
body.sidebar-hidden .main-with-sidebar {
    margin-left: 0;
}

/* Stat Cards */
.stat-card {
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}
.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.stat-purple { background: linear-gradient(135deg, #6c5ce7, #8b5cf6); }
.stat-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.stat-green { background: linear-gradient(135deg, #10b981, #34d399); }
.stat-orange { background: linear-gradient(135deg, #f59e0b, #f97316); }
.stat-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }

/* ===== TABLES ===== */
.table-dark-custom {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}
.table-dark-custom table {
    margin: 0;
    color: var(--text);
}
.table-dark-custom th {
    background: rgba(108, 92, 231, 0.15);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--card-border);
}
.table-dark-custom td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}
.table-dark-custom tbody tr:hover {
    background: rgba(108, 92, 231, 0.05);
}

/* Status Badges */
.badge-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-pending { background: rgba(255, 193, 7, 0.15); color: var(--warning); }
.badge-pending_payment { background: rgba(255, 152, 0, 0.15); color: #ff9800; }
.badge-approved { background: rgba(0, 210, 160, 0.15); color: var(--success); }
.badge-rejected { background: rgba(255, 71, 87, 0.15); color: var(--danger); }
.badge-completed { background: rgba(108, 92, 231, 0.15); color: var(--primary); }

/* ===== PRODUCT DETAIL ===== */
.product-detail-section {
    padding: 100px 0 50px;
}
.product-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.product-detail-image img {
    width: 100%;
    display: block;
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-list li i {
    color: var(--success);
    width: 20px;
}

/* ===== PAYMENT PAGE ===== */
.payment-method-card {
    cursor: pointer;
    transition: all 0.3s;
}
.payment-method-card:hover, .payment-method-card.selected {
    border-color: var(--primary) !important;
    background: rgba(108, 92, 231, 0.1);
}
.payment-method-card.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--success);
    font-size: 1.2rem;
}

/* ===== DEVELOPER SECTION ===== */
.developer-card {
    text-align: center;
}
.developer-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    padding: 4px;
    margin: 0 auto 20px;
    overflow: hidden;
}
.developer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ===== FEATURES SECTION ===== */
.feature-card .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark-2);
    padding: 50px 0 20px;
    border-top: 1px solid var(--card-border);
}
.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}
.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-contact li {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--gradient-1);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== MISC ===== */
.page-header {
    padding: 100px 0 40px;
    background: var(--gradient-2);
    border-bottom: 1px solid var(--card-border);
}
.breadcrumb-item a { color: var(--primary); text-decoration: none; }
.breadcrumb-item.active { color: var(--text-muted); }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.search-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    color: #fff;
    width: 100%;
}
.search-box:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.filter-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
}

/* Pagination */
.pagination .page-link {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}
.pagination .page-link:hover, .pagination .page-item.active .page-link {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
}

/* Modal */
.modal-content {
    background: var(--dark-2);
    border: 1px solid var(--card-border);
    border-radius: 16px;
}
.modal-header { border-bottom: 1px solid var(--card-border); }
.modal-footer { border-top: 1px solid var(--card-border); }

/* Toast / Notification */
.toast-notification {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    animation: slideIn 0.5s ease;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 15px; flex-wrap: wrap; margin-top: 1rem; }
    .sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 1040;
    }
    .sidebar.show { transform: translateX(0); }
    .sidebar.show + .sidebar-overlay { display: block; }
    .dashboard-content { padding: 100px 15px 15px; }
    .main-with-sidebar { margin-left: 0; }
    body.sidebar-hidden .sidebar { transform: translateX(-100%); }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; margin-bottom: 0.8rem; }
    .hero-subtitle { font-size: 0.8rem; line-height: 1.4; margin-bottom: 0.8rem; }
    .hero-section { text-align: center; padding-top: 70px; min-height: auto; padding-bottom: 30px; }
    .hero-section .col-lg-6:last-child { display: none; }
    .hero-section .mb-3 { margin-bottom: 0.5rem !important; }
    .hero-section .d-flex.gap-3 { gap: 0.5rem !important; }
    .hero-section .btn-lg { font-size: 0.85rem; padding: 10px 18px; }
    .hero-stat h3 { font-size: 1.4rem; }
    .hero-stat p { font-size: 0.72rem; }
    .hero-stats { justify-content: center; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.7rem; }
    .auth-card { padding: 25px; }
}

/* Admin specific */
.admin-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.5s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* File upload styling */
.file-upload-area {
    border: 2px dashed rgba(108, 92, 231, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(108, 92, 231, 0.03);
}
.file-upload-area:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.08);
}
.file-upload-area i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Select styling */
.form-select {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
}
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.2);
}
.form-select option {
    background: var(--dark-2);
    color: #fff;
}
