/* Premium/VIP Theme CSS - Bootstrap Compatible */

:root {
    /* Antrasit + Beyaz tema */
    --premium-black: #0f0f0f;
    --premium-dark: #1a1a1a;
    --premium-anthracite: #2d2d2d;
    --premium-anthracite-light: #3d3d3d;
    /* Accent = beyaz (eski gold yerine) */
    --premium-gold: #ffffff;
    --premium-gold-light: rgba(255, 255, 255, 0.95);
    --premium-gold-dark: rgba(255, 255, 255, 0.85);
    --premium-white: #ffffff;
    --premium-gray: #9ca3af;
    --premium-gray-light: #e5e7eb;
    --premium-gray-dark: #374151;
    
    /* Light Mode Colors */
    --light-bg: #ffffff;
    --light-card: #f8f9fa;
    --light-text: #212529;
    --light-text-secondary: #6c757d;
    --light-border: #dee2e6;

    
    /* Gaming Colors (for admin) */
    --gaming-dark: #0a0a0f;
    --gaming-darker: #050508;
    --gaming-blue: #00d4ff;
    --gaming-cyan: #06b6d4;
    --gaming-purple: #a855f7;
    --gaming-pink: #ec4899;
    --gaming-green: #10b981;
    --gaming-orange: #f97316;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   PREMIUM/VIP STYLES (Customer Side)
   ============================================ */

.premium-body {
    font-family: 'Montserrat', sans-serif;
    background: var(--premium-black);
    color: var(--premium-white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Premium Background */
.premium-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.premium-container {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
}

/* Premium Navbar */
.premium-navbar {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 0;
}

.premium-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
}

.premium-logo {
    color: var(--premium-white);
    letter-spacing: 3px;
}

.premium-logo-sub {
    color: var(--premium-white);
    font-weight: 400;
}

.premium-nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.premium-nav-link:hover,
.premium-nav-link.active {
    color: var(--premium-white) !important;
}

.premium-badge {
    background: var(--premium-white) !important;
    color: var(--premium-black) !important;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Premium Header */
.premium-header {
    padding: 3rem 0;
}

.premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--premium-white);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.premium-title-small {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--premium-white);
    letter-spacing: 2px;
}

.premium-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--premium-gray);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--premium-white), transparent);
    margin: 1.5rem 0;
}

.premium-accent {
    color: var(--premium-white);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Premium Section Title */
.premium-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--premium-white);
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Premium Card */
.premium-card {
    background: var(--premium-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--premium-white), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.premium-card:hover::before {
    transform: scaleX(1);
}

/* Premium Product Card */
.premium-product-card {
    height: 100%;
    text-align: center;
    cursor: pointer;
}

.premium-product-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    filter: grayscale(0.2);
}

.premium-product-card:hover .premium-product-emoji {
    transform: scale(1.1) rotate(5deg);
    filter: grayscale(0);
}

.premium-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--premium-white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.premium-product-description {
    font-size: 0.875rem;
    color: var(--premium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.premium-product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--premium-white);
    letter-spacing: 1px;
}

/* Premium Buttons */
.premium-btn {
    background: var(--premium-white);
    border: none;
    color: var(--premium-black);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.premium-btn:hover {
    background: var(--premium-gold-light);
    color: var(--premium-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.premium-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--premium-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.premium-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--premium-white);
    border-color: var(--premium-white);
}

/* Premium Category Buttons */
.premium-btn-category {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.premium-btn-category:hover {
    border-color: var(--premium-white);
    color: var(--premium-white);
    background: rgba(255, 255, 255, 0.05);
}

.premium-btn-category.active {
    background: var(--premium-white);
    border-color: var(--premium-white);
    color: var(--premium-black);
    font-weight: 600;
}

/* Premium Input */
.premium-search-wrapper {
    position: relative;
}

.premium-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    z-index: 2;
}

.premium-input {
    background: var(--premium-dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--premium-white) !important;
    border-radius: 4px;
    padding: 1rem !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.premium-search-wrapper .premium-input {
    padding-left: 3rem !important;
}

.premium-input:focus {
    background: var(--premium-dark) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08) !important;
    color: var(--premium-white) !important;
    outline: none;
}

.premium-input::placeholder {
    color: var(--premium-gray);
    font-weight: 300;
}

/* Premium Text Colors */
.premium-text {
    color: var(--premium-white);
    font-weight: 400;
}

.premium-text-secondary {
    color: var(--premium-gray);
    font-weight: 300;
}

.premium-price {
    color: var(--premium-white);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
}

.premium-price-large {
    color: var(--premium-white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
}

/* Premium Summary Card */
.premium-summary-card {
    position: sticky;
    top: 20px;
}

.premium-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-summary-item.premium-total {
    border-bottom: none;
    padding-top: 1rem;
}

.premium-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.6;
}

.premium-empty-icon {
    font-size: 5rem;
    color: var(--premium-gray);
    opacity: 0.3;
}

/* Premium Table */
.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--premium-white);
    background: transparent !important;
}

.premium-table thead {
    background: var(--premium-dark) !important;
}

.premium-table-header {
    background: var(--premium-dark) !important;
    color: var(--premium-white) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.25rem 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    border-top: none !important;
}

.premium-table tbody {
    background: transparent !important;
}

.premium-table-row {
    background: var(--premium-dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.premium-table-row:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.premium-table-cell {
    background: transparent !important;
    padding: 1.25rem 1rem;
    vertical-align: middle;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--premium-white) !important;
    border-top: none !important;
}

.premium-table tbody tr:last-child {
    border-bottom: none;
}

/* Override Bootstrap table styles */
.premium-table.table > :not(caption) > * > * {
    background-color: transparent !important;
    border-bottom-width: 0;
}

.premium-table.table > :not(:first-child) {
    border-top: none;
}

/* Light Theme Styles */
[data-theme="light"] {
    --premium-black: var(--light-bg);
    --premium-dark: var(--light-card);
    --premium-white: var(--light-text);
    --premium-gray: var(--light-text-secondary);
}

body.light-theme {
    background: var(--light-bg);
    color: var(--light-text);
}

body.light-theme::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 45, 45, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 45, 45, 0.02) 0%, transparent 50%);
}

body.light-theme .premium-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(45, 45, 45, 0.2);
}

body.light-theme .premium-nav-link {
    color: var(--light-text-secondary) !important;
}

body.light-theme .premium-nav-link:hover,
body.light-theme .premium-nav-link.active {
    color: var(--premium-anthracite) !important;
}

body.light-theme .premium-card {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    color: var(--light-text);
}

body.light-theme .premium-card:hover {
    border-color: var(--premium-anthracite);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

body.light-theme .premium-input {
    background: var(--light-card) !important;
    border: 1px solid var(--light-border) !important;
    color: var(--light-text) !important;
}

body.light-theme .premium-input:focus {
    background: var(--light-card) !important;
    border-color: var(--premium-anthracite) !important;
    color: var(--light-text) !important;
}

body.light-theme .premium-input::placeholder {
    color: var(--light-text-secondary);
}

body.light-theme .premium-table-header {
    background: var(--light-card) !important;
    color: var(--premium-anthracite) !important;
    border-bottom: 2px solid rgba(45, 45, 45, 0.25);
}

body.light-theme .premium-table-row {
    background: var(--light-card) !important;
    border-bottom: 1px solid var(--light-border);
}

body.light-theme .premium-table-row:hover {
    background: rgba(45, 45, 45, 0.06) !important;
}

body.light-theme .premium-table-cell {
    color: var(--light-text) !important;
    background: transparent !important;
}

body.light-theme .premium-table tbody {
    background: transparent !important;
}

body.light-theme .premium-modal {
    background: var(--light-card) !important;
    border: 1px solid var(--light-border) !important;
    color: var(--light-text) !important;
}

body.light-theme .premium-modal-header {
    border-bottom: 1px solid var(--light-border) !important;
}

body.light-theme .premium-modal-footer {
    border-top: 1px solid var(--light-border) !important;
}

body.light-theme .premium-btn-outline {
    border-color: var(--premium-anthracite);
    color: var(--premium-anthracite);
}

body.light-theme .premium-btn-outline:hover {
    background: var(--premium-anthracite);
    color: #fff;
}

body.light-theme .premium-cart-item {
    background: var(--light-card);
    border: 1px solid var(--light-border);
}

body.light-theme .premium-cart-item:hover {
    border-color: var(--premium-anthracite);
}

body.light-theme .premium-summary-item {
    border-bottom: 1px solid var(--light-border);
}

body.light-theme .premium-info-box {
    background: rgba(45, 45, 45, 0.06);
    border: 1px solid rgba(45, 45, 45, 0.2);
    color: var(--light-text);
}

body.light-theme .premium-divider {
    background: linear-gradient(90deg, transparent, var(--premium-anthracite), transparent);
}

body.light-theme .premium-tabs {
    border-bottom: 1px solid var(--light-border);
}

body.light-theme .premium-tab-link {
    color: var(--light-text-secondary) !important;
}

body.light-theme .premium-tab-link:hover {
    color: var(--premium-anthracite) !important;
}

body.light-theme .premium-tab-link.active {
    color: var(--premium-anthracite) !important;
    border-bottom-color: var(--premium-anthracite) !important;
}

body.light-theme .premium-btn-filter {
    border: 1px solid var(--light-border);
    color: var(--light-text-secondary);
}

body.light-theme .premium-btn-filter:hover {
    border-color: var(--premium-anthracite);
    color: var(--premium-anthracite);
}

body.light-theme .premium-btn-filter.active {
    background: var(--premium-anthracite);
    color: #fff;
}

body.light-theme .premium-btn-category {
    border: 1px solid var(--light-border);
    color: var(--light-text-secondary);
}

body.light-theme .premium-btn-category:hover {
    border-color: var(--premium-anthracite);
    color: var(--premium-anthracite);
}

body.light-theme .premium-btn-category.active {
    background: var(--premium-anthracite);
    color: #fff;
}

body.light-theme ::-webkit-scrollbar-track {
    background: var(--light-card);
}

body.light-theme ::-webkit-scrollbar-thumb {
    background: var(--premium-anthracite);
}

body.light-theme ::-webkit-scrollbar-thumb:hover {
    background: var(--premium-anthracite-light);
}

/* Premium Cart Item */
.premium-cart-item {
    background: var(--premium-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.premium-cart-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Premium Tabs */
.premium-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.premium-tab-link {
    color: rgba(255, 255, 255, 0.6) !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 1rem 1.5rem !important;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.premium-tab-link:hover {
    color: var(--premium-white) !important;
    border-bottom-color: rgba(255, 255, 255, 0.25) !important;
    background: transparent !important;
}

.premium-tab-link.active {
    color: var(--premium-white) !important;
    border-bottom-color: var(--premium-white) !important;
    background: transparent !important;
    font-weight: 600;
}

/* Premium Filter Buttons */
.premium-btn-filter {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.premium-btn-filter:hover {
    border-color: var(--premium-white);
    color: var(--premium-white);
    background: rgba(255, 255, 255, 0.05);
}

.premium-btn-filter.active {
    background: var(--premium-white);
    border-color: var(--premium-white);
    color: var(--premium-black);
    font-weight: 600;
}

/* Premium Status Badge */
.premium-status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.premium-status-badge.status-pending {
    background: rgba(234, 179, 8, 0.15);
    color: #fbbf24;
    border-color: rgba(234, 179, 8, 0.4);
}

.premium-status-badge.status-preparing {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.4);
}

.premium-status-badge.status-ready {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.4);
}

.premium-status-badge.status-delivered {
    background: rgba(107, 114, 128, 0.15);
    color: #9ca3af;
    border-color: rgba(107, 114, 128, 0.4);
}

/* Premium Modal */
.premium-modal {
    background: var(--premium-dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--premium-white) !important;
}

.premium-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 1.5rem !important;
}

.premium-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 1.5rem !important;
}

.premium-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.premium-modal .btn-close:hover {
    opacity: 1;
}

/* Responsive Premium */
@media (max-width: 768px) {
    .premium-title {
        font-size: 2.5rem;
    }
    
    .premium-title-small {
        font-size: 1.75rem;
    }
    
    .premium-section-title {
        font-size: 1.5rem;
    }
    
    .premium-card {
        padding: 1.5rem;
    }
    
    .premium-btn,
    .premium-btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .premium-table {
        font-size: 0.85rem;
    }
    
    .premium-table-header,
    .premium-table-cell {
        padding: 0.75rem 0.5rem;
    }
}

/* ============================================
   GAMING STYLES (Admin Side - Keep as is)
   ============================================ */

body:not(.premium-body) {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--gaming-darker) 0%, var(--gaming-dark) 50%, var(--gaming-darker) 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

body:not(.premium-body)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.gaming-container {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
}

.gaming-navbar {
    background: rgba(10, 10, 15, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 0;
}

.gaming-brand {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.neon-text-blue {
    color: var(--gaming-blue);
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor,
        0 0 20px currentColor;
}

.neon-text-cyan {
    color: var(--gaming-cyan);
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor;
}

.neon-text-purple {
    color: var(--gaming-purple);
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor;
}

.neon-text-pink {
    color: var(--gaming-pink);
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor;
}

.gaming-card {
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gaming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.gaming-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.gaming-card:hover::before {
    left: 100%;
}

.gaming-btn {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-cyan) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.gaming-btn:hover {
    background: linear-gradient(135deg, var(--gaming-cyan) 0%, var(--gaming-blue) 100%);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    color: white;
}

.gaming-btn-secondary {
    background: linear-gradient(135deg, var(--gaming-purple) 0%, var(--gaming-pink) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    text-decoration: none;
    display: inline-block;
}

.gaming-btn-secondary:hover {
    background: linear-gradient(135deg, var(--gaming-pink) 0%, var(--gaming-purple) 100%);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    color: white;
}

.gaming-btn-category {
    background: rgba(5, 5, 8, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #cccccc;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.gaming-btn-category:hover {
    border-color: rgba(0, 212, 255, 0.5);
    color: white;
    transform: scale(1.05);
}

.gaming-btn-category.active {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-cyan) 100%);
    border-color: var(--gaming-blue);
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.gaming-btn-filter {
    background: rgba(5, 5, 8, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #cccccc;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.gaming-btn-filter:hover {
    border-color: rgba(0, 212, 255, 0.5);
    color: white;
}

.gaming-btn-filter.active {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-cyan) 100%);
    border-color: var(--gaming-blue);
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.gaming-input {
    background: rgba(5, 5, 8, 0.5) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    color: white !important;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.gaming-input:focus {
    background: rgba(5, 5, 8, 0.7) !important;
    border-color: var(--gaming-blue) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25) !important;
    color: white !important;
}

.gaming-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.gaming-input-group .input-group-text {
    background: rgba(5, 5, 8, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-right: none;
    color: var(--gaming-blue);
}

.gaming-input-icon {
    background: rgba(5, 5, 8, 0.5) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    border-right: none !important;
    color: var(--gaming-blue) !important;
}

.gaming-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gaming-cyan);
    margin-bottom: 1.5rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid;
}

.status-pending {
    background: rgba(234, 179, 8, 0.2);
    color: #fbbf24;
    border-color: rgba(234, 179, 8, 0.5);
}

.status-preparing {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.5);
}

.status-ready {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.5);
}

.status-delivered {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border-color: rgba(107, 114, 128, 0.5);
}

.gaming-divider {
    border-color: rgba(0, 212, 255, 0.2);
    opacity: 1;
}

.gaming-alert {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #a5f3fc;
}

.gaming-modal {
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.95) 0%, rgba(10, 10, 15, 0.95) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: white;
}

.gaming-modal .modal-header {
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.gaming-modal .modal-footer {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.gaming-modal .btn-close {
    filter: invert(1);
}

.gaming-tabs {
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.gaming-tabs .nav-link {
    color: rgba(255, 255, 255, 0.5);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.gaming-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(0, 212, 255, 0.3);
}

.gaming-tabs .nav-link.active {
    color: var(--gaming-blue);
    border-bottom-color: var(--gaming-blue);
    background: transparent;
}

.text-gaming-blue { color: var(--gaming-blue); }
.text-gaming-cyan { color: var(--gaming-cyan); }
.text-gaming-purple { color: var(--gaming-purple); }
.text-gaming-pink { color: var(--gaming-pink); }
.text-gaming-green { color: var(--gaming-green); }
.text-gaming-orange { color: var(--gaming-orange); }
.text-gray-400 { color: rgba(255, 255, 255, 0.5); }
.text-gray-300 { color: rgba(255, 255, 255, 0.7); }

.bg-gaming-orange { background-color: var(--gaming-orange) !important; }

.product-card {
    height: 100%;
    cursor: pointer;
}

.product-card .product-emoji {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-emoji {
    transform: scale(1.1);
}

.cart-item-card {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .gaming-container {
        padding: 1rem 0.5rem;
    }
    
    .gaming-card {
        padding: 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .gaming-section-title {
        font-size: 1.5rem;
    }
    
    .gaming-btn, .gaming-btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-up {
    animation: slideUp 0.3s ease-out;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--premium-black);
}

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

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

body:not(.premium-body) ::-webkit-scrollbar-track {
    background: var(--gaming-darker);
}

body:not(.premium-body) ::-webkit-scrollbar-thumb {
    background: var(--gaming-blue);
}

body:not(.premium-body) ::-webkit-scrollbar-thumb:hover {
    background: var(--gaming-cyan);
}

/* Light Mode'da Hamburger İkonunu Görünür Yapma */
[data-theme="light"] .navbar-toggler-icon {
    /* İkonu siyaha yakın bir tona çevirir */
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* Eğer butona tıkladığında etrafında çıkan mavi çerçeveyi de sevmiyorsan bunu da ekleyebilirsin */
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}