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

:root {
    /* ASCEND Color Scheme - Dark Red Theme */
    --primary-color: #E31E24;
    --primary-dark: #B01218;
    --primary-glow: rgba(227, 30, 36, 0.4);
    --secondary-color: #8B0000;
    --accent-red: #FF3333;

    --dark-bg: #0a0a0a;
    --dark-bg-secondary: #1a1a1a;
    --dark-bg-tertiary: #2a2a2a;

    --silver: #c0c0c0;
    --silver-dark: #808080;
    --silver-light: #e0e0e0;

    --success-color: #E31E24;
    --danger-color: #E31E24;
    --warning-color: #ff9800;

    --text-color: #e0e0e0;
    --text-muted: #999999;
    --border-color: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.2);
    border-bottom: 2px solid var(--primary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Nav Brand */
.nav-brand a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.nav-brand h1 {
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--primary-glow);
}

.nav-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -5px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--silver-light);
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link .nav-icon {
    font-size: 1.1rem;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid var(--primary-color);
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Cart Button */
.cart-btn {
    background: linear-gradient(145deg, var(--dark-bg-tertiary), var(--dark-bg-secondary));
    color: var(--silver-light);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.cart-btn:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.cart-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 0 10px var(--primary-glow);
    min-width: 20px;
    text-align: center;
}

/* Login Button */
.btn-login {
    background: var(--dark-bg-tertiary);
    color: var(--silver-light);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-login:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-btn {
    background: linear-gradient(145deg, var(--dark-bg-tertiary), var(--dark-bg-secondary));
    color: var(--silver-light);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-btn .user-avatar {
    font-size: 1.2rem;
}

.nav-dropdown-btn .dropdown-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
}

.nav-dropdown-btn:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    padding-top: 0.5rem; /* Padding statt margin für nahtlose Verbindung */
    background: transparent;
    min-width: 220px;
    z-index: 1000;
}

.nav-dropdown-content-inner {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--primary-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown-content:hover {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Header */
.dropdown-header {
    padding: 1rem 1.2rem;
    background: rgba(227, 30, 36, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.user-info strong {
    color: var(--silver-light);
    font-size: 1rem;
}

.user-info small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Dropdown Items */
.dropdown-item {
    color: var(--silver-light);
    padding: 0.9rem 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.dropdown-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(227, 30, 36, 0.1);
    border-left-color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown-item.active {
    background: rgba(227, 30, 36, 0.15);
    border-left-color: var(--primary-color);
    color: white;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.dropdown-logout {
    color: #ff6b6b !important;
}

.dropdown-logout:hover {
    background: rgba(255, 107, 107, 0.1) !important;
    border-left-color: #ff6b6b !important;
}

/* Main Content */
main {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg,
        rgba(227, 30, 36, 0.9) 0%,
        rgba(139, 0, 0, 0.8) 50%,
        rgba(227, 30, 36, 0.9) 100%
    );
    color: white;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow:
        0 10px 40px rgba(227, 30, 36, 0.3),
        inset 0 0 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
}

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

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--silver-light);
    font-weight: 700;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    text-shadow: 0 2px 10px rgba(227, 30, 36, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    margin-bottom: 0;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(227, 30, 36, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse-featured 2s infinite;
}

@keyframes pulse-featured {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sale Badge */
.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #E31E24, #FF3333);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.5);
    animation: pulse-sale 1.5s infinite;
}

@keyframes pulse-sale {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(227, 30, 36, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(227, 30, 36, 0.7);
    }
}

/* Sale Price Styling */
.price-container {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-sale {
    color: #E31E24 !important;
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(227, 30, 36, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), transparent, var(--primary-color));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.product-card:hover::before {
    opacity: 0.4;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 48px rgba(227, 30, 36, 0.3),
        0 0 30px var(--primary-glow);
    border-color: var(--primary-color);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.product-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg-tertiary), var(--dark-bg-secondary));
    border-radius: 8px;
    font-size: 4rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--silver-light);
    font-weight: 700;
}

.product-card .description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 3rem;
    line-height: 1.5;
}

.product-card .stock {
    font-size: 0.85rem;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Stock Badges */
.stock-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stock-low {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
}

.stock-out {
    background: linear-gradient(135deg, #666, #444);
    color: white;
    box-shadow: 0 2px 10px rgba(102, 102, 102, 0.3);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--primary-glow);
}

/* Filters */
.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--dark-bg-secondary);
    color: var(--silver-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-icon {
    font-size: 1.1rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    background: rgba(227, 30, 36, 0.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Buttons */
.btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--primary-color));
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--silver-dark), var(--silver));
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--silver), var(--silver-light));
    box-shadow: 0 6px 25px rgba(192, 192, 192, 0.5);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--primary-color));
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.5);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-bg-secondary), var(--dark-bg));
    box-shadow: -5px 0 30px rgba(227, 30, 36, 0.3);
    transition: right 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--primary-color);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
}

.cart-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.btn-close:hover {
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

/* Empty States */
.empty-state,
.empty-cart {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.empty-state {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    border-radius: 12px;
    border: 2px dashed var(--border-color);
    margin-top: 2rem;
}

.empty-state p,
.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.empty-state .btn,
.empty-cart .btn {
    margin-top: 1rem;
}

.cart-item {
    background: var(--dark-bg-tertiary);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.cart-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

.cart-item-info h4 {
    margin-bottom: 0.5rem;
    color: var(--silver-light);
    font-weight: 700;
}

.cart-item-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--primary-color));
    box-shadow: 0 0 15px var(--primary-glow);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--primary-color);
    background: var(--dark-bg-secondary);
}

/* Coupon System */
.cart-coupon {
    margin-bottom: 1.5rem;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--dark-bg-tertiary);
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.coupon-input::placeholder {
    color: var(--text-muted);
}

.btn-coupon {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-coupon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--primary-glow);
}

.btn-coupon:active {
    transform: translateY(0);
}

.coupon-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

.coupon-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.coupon-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #F44336;
    color: #F44336;
}

/* Cart Summary */
.cart-summary {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.cart-subtotal,
.cart-discount,
.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--silver-light);
}

.cart-discount {
    color: #4CAF50;
    font-weight: 600;
}

.discount-value {
    color: #4CAF50 !important;
}

.cart-total-row {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
    font-size: 1.4rem;
    font-weight: 900;
}

.total-amount {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cart-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon {
    font-size: 1.1rem;
}

/* Auth Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.auth-box {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    padding: 3rem;
    border-radius: 12px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px var(--primary-color);
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--primary-color);
}

.auth-box h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--silver-light);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--silver-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--dark-bg-tertiary);
    color: var(--text-color);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    background: var(--dark-bg-secondary);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-link {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
}

.auth-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.auth-link a:hover {
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
    border-left: 4px solid;
}

.alert-error {
    background-color: rgba(227, 30, 36, 0.1);
    color: var(--accent-red);
    border-color: var(--primary-color);
}

.alert-success {
    background-color: rgba(227, 30, 36, 0.1);
    color: var(--accent-red);
    border-color: var(--primary-color);
}

/* Orders */
.orders-list {
    display: grid;
    gap: 1.5rem;
}

.order-card {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    padding: 2rem;
    border-radius: 12px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(227, 30, 36, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.order-card:hover {
    border-color: var(--primary-color);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 0 30px var(--primary-glow);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.order-header h3 {
    color: var(--silver-light);
    font-weight: 700;
}

.order-status {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.status-pending {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.status-processing {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.status-completed {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.status-failed {
    background: linear-gradient(135deg, #666, #444);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
}

.order-details p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.order-details strong {
    color: var(--silver-light);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-bg), var(--dark-bg-secondary));
    color: var(--text-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(227, 30, 36, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section h3 {
    color: var(--silver-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--dark-bg-tertiary), var(--dark-bg-secondary));
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    color: var(--silver-light);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.footer-payment {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-icon {
    padding: 0.4rem 0.8rem;
    background: linear-gradient(145deg, var(--dark-bg-tertiary), var(--dark-bg-secondary));
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--silver-light);
    font-weight: 600;
    transition: all 0.3s;
}

.payment-icon:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Sections */
section {
    margin-bottom: 3rem;
}

/* Admin Panel Styles */
.dashboard-actions {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.dashboard-actions h2 {
    color: var(--silver-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, var(--dark-bg-tertiary), var(--dark-bg-secondary));
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--silver-light);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-3px);
    color: white;
}

.action-icon {
    font-size: 2.5rem;
}

.action-btn span:last-child {
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-orders {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.dashboard-orders h2 {
    color: var(--silver-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.orders-table {
    overflow-x: auto;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid;
    margin-bottom: 1.5rem;
    animation: slideIn 0.3s ease;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
    color: #4CAF50;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #f44336;
}

.alert-info {
    background: rgba(33, 150, 243, 0.1);
    border-color: #2196F3;
    color: #2196F3;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-state h2,
.empty-state h3 {
    color: var(--silver-light);
    margin: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .auth-box {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .footer-payment {
        justify-content: center;
    }

    .filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-red), var(--primary-color));
}

/* Dashboard Styles */
.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    color: var(--silver-light);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.dashboard-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(227, 30, 36, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    line-height: 1;
}

.stat-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-weight: 900;
}

.stat-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.dashboard-orders {
    margin-bottom: 3rem;
}

.dashboard-orders h2 {
    margin-bottom: 1.5rem;
}

.dashboard-table {
    width: 100%;
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.dashboard-table thead {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.dashboard-table th {
    padding: 1rem;
    text-align: left;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.dashboard-table td {
    padding: 1rem;
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
}

.dashboard-table tbody tr {
    transition: all 0.3s;
}

.dashboard-table tbody tr:hover {
    background: rgba(227, 30, 36, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.status-processing {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.status-completed {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
}

.status-failed, .status-refunded {
    background: linear-gradient(135deg, #666, #444);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.dashboard-account {
    margin-bottom: 3rem;
}

.dashboard-account h2 {
    margin-bottom: 1.5rem;
}

.account-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(227, 30, 36, 0.15);
}

.info-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: var(--silver-light);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Wallet Page Styles */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 1200px) {
    .amount-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.amount-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border: 3px solid #444;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 100px;
}

.amount-option:hover {
    border-color: #e31e24;
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.4);
    transform: translateY(-3px);
}

.amount-option.active {
    background: linear-gradient(145deg, rgba(227, 30, 36, 0.25), rgba(227, 30, 36, 0.15));
    border-color: #e31e24;
    box-shadow: 0 0 30px rgba(227, 30, 36, 0.5);
    transform: scale(1.05);
}

.amount-option.active::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e31e24;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
    line-height: 24px;
    text-align: center;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.5);
}

.amount-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #c8c8c8;
    line-height: 1;
}

.amount-option.active .amount-value {
    color: white;
}

.amount-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amount-option.active .amount-label {
    color: rgba(255, 255, 255, 0.9);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.payment-method-option {
    position: relative;
    cursor: pointer;
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-method-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border: 3px solid #444;
    border-radius: 16px;
    transition: all 0.3s ease;
    min-height: 160px;
}

.payment-method-option:hover .payment-method-content {
    border-color: #e31e24;
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.4);
    transform: translateY(-5px);
}

.payment-method-option input[type="radio"]:checked + .payment-method-content {
    background: linear-gradient(145deg, rgba(227, 30, 36, 0.25), rgba(227, 30, 36, 0.15));
    border-color: #e31e24;
    box-shadow: 0 0 30px rgba(227, 30, 36, 0.5);
    transform: scale(1.02);
}

.payment-method-option input[type="radio"]:checked + .payment-method-content::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e31e24;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 28px;
    text-align: center;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.5);
}

.payment-icon {
    font-size: 3.5rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.payment-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.payment-info strong {
    color: #c8c8c8;
    font-size: 1.4rem;
    font-weight: 700;
}

.payment-info small {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.3;
}

.payment-method-option input[type="radio"]:checked + .payment-method-content strong {
    color: white;
}

.payment-method-option input[type="radio"]:checked + .payment-method-content small {
    color: rgba(255, 255, 255, 0.9);
}

/* Admin Page Styles */
.admin-page-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.admin-page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.admin-page-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.admin-page-header .btn {
    margin-top: 0.5rem;
}

/* Button Variants */
.btn-danger {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    border: 1px solid #d32f2f;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    box-shadow: 0 6px 25px rgba(244, 67, 54, 0.5);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    max-height: 90vh;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
    animation: slideUp 0.3s ease;
    overflow-y: auto;
}

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

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--silver-light);
    font-size: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
}

.close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--silver-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 0.7rem;
    background: var(--dark-bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input[type="number"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-group p {
    margin: 0;
    padding: 0.5rem 0;
    color: var(--silver-light);
}

/* Sales Page Specific */
.sale-price-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    padding: 1rem;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.dashboard-table-container {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    overflow-x: auto;
}

/* Table Cell Alignment */
.dashboard-table td strong {
    color: var(--silver-light);
}

.dashboard-table td .status-badge {
    display: inline-block;
}

.dashboard-table td form {
    margin: 0;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-sale {
    color: var(--primary-color) !important;
    font-weight: bold;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.admin-tab {
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    top: 2px;
}

.admin-tab:hover {
    color: var(--silver-light);
    border-bottom-color: var(--primary-color);
}

.admin-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 700;
}

/* Input styling improvements */
.form-group input[type="text"],
.form-group input[type="datetime-local"] {
    width: 100%;
    padding: 0.7rem;
    background: var(--dark-bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="datetime-local"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}