/* ═══════════════════════════════════════════════════════════
   AURORA DESIGN SYSTEM — Premium Glassmorphism Theme
   Arsitem © 2026
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* ── Aurora Color Palette ── */
    --aurora-dark: #030712;
    --aurora-navy: #0a0f1e;
    --aurora-surface: #111827;
    --aurora-card: rgba(17, 24, 39, 0.6);
    --aurora-card-border: rgba(255, 255, 255, 0.06);
    --aurora-emerald: #10b981;
    --aurora-violet: #8b5cf6;
    --aurora-blue: #3b82f6;
    --aurora-cyan: #06b6d4;
    --aurora-rose: #f43f5e;
    --aurora-amber: #f59e0b;
    --aurora-white: #f8fafc;
    --aurora-text: #e2e8f0;
    --aurora-text-muted: #94a3b8;
    --aurora-text-dim: #64748b;

    /* ── Gradients ── */
    --gradient-aurora: linear-gradient(135deg, #10b981 0%, #8b5cf6 50%, #3b82f6 100%);
    --gradient-hero: linear-gradient(135deg, #030712 0%, #0a0f1e 40%, #1a0a2e 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    --gradient-btn: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-btn-hover: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    --gradient-glow: 0 0 30px rgba(16, 185, 129, 0.3), 0 0 60px rgba(139, 92, 246, 0.15);

    /* ── UI Tokens ── */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50rem;
    --sidebar-width: 260px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.2);
    --shadow-glow-violet: 0 0 20px rgba(139, 92, 246, 0.2);

    --blur-glass: blur(20px);
    --blur-nav: blur(16px);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--aurora-dark);
    color: var(--aurora-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--aurora-white);
}

a {
    color: var(--aurora-emerald);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--aurora-cyan);
}

::selection {
    background: var(--aurora-emerald);
    color: white;
}

::-moz-selection {
    background: var(--aurora-emerald);
    color: white;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--aurora-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--aurora-violet);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--aurora-emerald);
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar-glass {
    background: rgba(3, 7, 18, 0.4);
    backdrop-filter: var(--blur-nav);
    -webkit-backdrop-filter: var(--blur-nav);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.75rem 0;
    min-height: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.navbar-glass.scrolled {
    background: rgba(3, 7, 18, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 1px rgba(16, 185, 129, 0.1);
    padding: 0.4rem 0;
    min-height: 64px;
}

.navbar-brand {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px !important;
    width: auto !important;
    max-width: 280px !important;
    object-fit: contain !important;
    transition: all 0.4s ease;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(16, 185, 129, 0.2));
}

.navbar-glass.scrolled .navbar-brand img {
    height: 45px !important;
}

.navbar-brand span {
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-glass .nav-link {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-glass .nav-link:hover,
.navbar-glass .nav-link.active {
    color: white !important;
}

.navbar-glass .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-aurora);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.navbar-glass .nav-link:hover::after,
.navbar-glass .nav-link.active::after {
    width: 60%;
    left: 20%;
}

/* ═══════════════════════════════════════
   HERO — Video & Gradient Support
   ═══════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
    padding: 120px 0 80px;
    color: white;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
    filter: brightness(0.4) saturate(1.2);
    pointer-events: none;
    /* FIX: Prevent click blocking */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.6) 0%, rgba(3, 7, 18, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
    /* FIX: Prevent click blocking */
}

/* Animated mesh gradient orbs */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation: floatOrb 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    /* FIX: Prevent click blocking */
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    animation: floatOrb 10s ease-in-out infinite reverse;
    z-index: 1;
    pointer-events: none;
    /* FIX: Prevent click blocking */
}

.hero-content {
    position: relative;
    z-index: 10;
    /* FIX: Increase Z-Index */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--aurora-emerald);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-highlight {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--aurora-text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stats div {
    text-align: center;
    color: var(--aurora-text-muted);
    font-size: 0.9rem;
}

.hero-stats span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    border-radius: var(--radius-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-aurora {
    background: var(--gradient-btn);
    border: none;
    color: white;
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-aurora:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-aurora-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
}

.btn-aurora-outline:hover {
    border-color: var(--aurora-emerald);
    background: rgba(16, 185, 129, 0.1);
    color: var(--aurora-emerald);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-btn);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    font-weight: 600;
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.35);
    color: white;
}

/* ═══════════════════════════════════════
   GLASSMORPHISM CARDS
   ═══════════════════════════════════════ */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--aurora-card-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-glow);
    transform: translateY(-6px);
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--aurora-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.card-img-wrapper {
    height: 240px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(139, 92, 246, 0.05));
    position: relative;
    overflow: hidden;
}

.card-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

/* Product card new (home page) */
.product-card-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--aurora-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 1;
    /* FIX: Prevent stretched-link from overlapping navbar */
}

.product-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    height: 260px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(139, 92, 246, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-new:hover .product-image img {
    transform: scale(1.08);
}

/* ═══════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════ */
.section-dark {
    background: var(--aurora-dark);
}

.section-navy {
    background: var(--aurora-navy);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--aurora-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature cards */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--aurora-card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.03);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--aurora-emerald);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--aurora-emerald);
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid var(--aurora-card-border);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    animation: floatOrb 12s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   FORMS
   ═══════════════════════════════════════ */
.form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--aurora-text);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: var(--aurora-text-dim);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--aurora-emerald);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    color: var(--aurora-white);
    outline: none;
}

.form-label {
    color: var(--aurora-text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.form-check-input:checked {
    background-color: var(--aurora-emerald);
    border-color: var(--aurora-emerald);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer-modern {
    background: linear-gradient(180deg, var(--aurora-navy) 0%, var(--aurora-dark) 100%) !important;
    border-top: 1px solid var(--aurora-card-border) !important;
    color: var(--aurora-text-muted);
}

.footer-modern h4,
.footer-modern h5,
.footer-modern h6 {
    color: var(--aurora-white) !important;
}

.footer-modern p,
.footer-modern span {
    color: var(--aurora-text-muted) !important;
}

.footer-modern a {
    color: var(--aurora-text-dim) !important;
    transition: all 0.3s ease;
}

.footer-modern a:hover {
    color: var(--aurora-emerald) !important;
    transform: translateX(3px);
}

.footer-modern .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--aurora-text-muted);
}

.footer-modern .btn-outline-secondary:hover {
    background: var(--aurora-emerald);
    border-color: var(--aurora-emerald);
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aurora-emerald), var(--aurora-violet), transparent);
}

/* ═══════════════════════════════════════
   DROPDOWN
   ═══════════════════════════════════════ */
.dropdown-menu {
    /* FIX: Force White Background for Readability */
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.2s ease;
    padding: 0.5rem 0;
}

.dropdown-item {
    /* FIX: Force Dark Text */
    color: #1f2937 !important;
    padding: 0.7rem 1.25rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--aurora-emerald) !important;
    transform: translateX(4px);
}

/* ═══════════════════════════════════════
   TABLES
   ═══════════════════════════════════════ */
.table {
    color: var(--aurora-text);
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--aurora-text-dim);
    border-bottom: 1px solid var(--aurora-card-border);
}

.table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.table-hover tbody tr:hover {
    background-color: rgba(16, 185, 129, 0.03);
}

/* ═══════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════ */
.alert {
    border-left: 4px solid;
    border-radius: var(--radius-md);
    animation: slideInLeft 0.3s ease;
}

.alert-info {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--aurora-cyan);
    color: var(--aurora-cyan);
}

.alert-danger {
    background: rgba(244, 63, 94, 0.1);
    border-color: var(--aurora-rose);
    color: var(--aurora-rose);
}

/* ═══════════════════════════════════════
   BADGES
   ═══════════════════════════════════════ */
.badge {
    transition: all 0.2s ease;
}

.badge:hover {
    transform: scale(1.05);
}

/* ═══════════════════════════════════════
   MODALS
   ═══════════════════════════════════════ */
.modal-content {
    background: var(--aurora-surface);
    border: 1px solid var(--aurora-card-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: var(--aurora-text);
}

.modal.fade .modal-dialog {
    transform: scale(0.95) translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, 10px) scale(1.05);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Utility animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ═══════════════════════════════════════
   LOADING & SKELETON
   ═══════════════════════════════════════ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--aurora-emerald);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-large {
    width: 80px;
    height: 80px;
    border-width: 4px;
}

.loading-text {
    color: var(--aurora-text-muted);
    margin-top: 1rem;
    font-weight: 500;
}

.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 2000px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════ */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.hover-primary:hover {
    color: var(--aurora-emerald) !important;
}

.hover-dark:hover {
    color: var(--aurora-white) !important;
}

.text-aurora {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-aurora-gradient {
    background: var(--gradient-aurora);
}

.border-aurora {
    border-color: rgba(16, 185, 129, 0.2) !important;
}

.glow-emerald {
    box-shadow: var(--shadow-glow);
}

.glow-violet {
    box-shadow: var(--shadow-glow-violet);
}

.transition-all {
    transition: all 0.3s ease;
}

.cursor-pointer {
    cursor: pointer;
}

.border-dashed {
    border-style: dashed !important;
}

.ls-1 {
    letter-spacing: 0.1em;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
}

/* ═══════════════════════════════════════
   CART, CHECKOUT, BLOG
   ═══════════════════════════════════════ */
.cart-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--aurora-card-border);
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: var(--shadow-glow);
    transform: translateX(4px);
}

.cart-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--aurora-card-border);
    position: sticky;
    top: 90px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--aurora-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.2);
}

.blog-card-image {
    height: 240px;
    background: var(--aurora-surface);
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--aurora-text-muted);
}

.blog-meta i {
    color: var(--aurora-emerald);
}

/* Checkout */
.checkout-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-btn);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-completed .step-number {
    background: var(--aurora-emerald);
}

.payment-method {
    border: 2px solid var(--aurora-card-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.payment-method:hover {
    border-color: var(--aurora-emerald);
    background: rgba(16, 185, 129, 0.03);
}

.payment-method.selected {
    border-color: var(--aurora-emerald);
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Price */
.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--aurora-white);
    font-family: 'Space Grotesk';
}

.price-old {
    text-decoration: line-through;
    color: var(--aurora-text-dim);
    font-size: 1.25rem;
    font-weight: 400;
}

.discount-badge {
    background: linear-gradient(135deg, var(--aurora-amber), #d97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 700;
}

/* Success */
.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--aurora-emerald), #059669);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

/* Category pills */
.category-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--aurora-card-border);
    border-radius: var(--radius-pill);
    color: var(--aurora-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-pill:hover {
    background: var(--aurora-emerald);
    color: white;
    border-color: var(--aurora-emerald);
}

/* ═══════════════════════════════════════
   ADMIN PANEL (Preserved)
   ═══════════════════════════════════════ */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
}

.admin-sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    color: white;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar-header {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #f1f5f9;
    color: #1e293b;
}

.admin-topbar {
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 900;
}

.admin-nav {
    padding: 1rem;
    list-style: none;
    margin: 0;
}

.admin-nav-item {
    margin-bottom: 0.25rem;
}

.admin-nav .nav-link {
    color: rgba(255, 255, 255, 0.6);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.admin-nav .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.admin-nav .nav-link.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.admin-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    color: #1e293b;
}

.admin-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.stats-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stats-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.stats-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stats-card .stretched-link::after {
    z-index: 3;
}

.stats-icon {
    font-size: 2rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.admin-main {
    padding: 2rem;
    min-height: calc(100vh - 70px);
}

.admin-page-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.admin-page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.admin-page-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

.admin-sidebar .nav-link {
    position: relative;
    overflow: hidden;
}

.admin-sidebar .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: #3b82f6;
    transition: height 0.3s ease;
    transform: translateY(-50%);
}

.admin-sidebar .nav-link:hover::before,
.admin-sidebar .nav-link.active::before {
    height: 70%;
}

.admin-sidebar .nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.admin-sidebar .nav-link:hover i {
    transform: scale(1.15);
}

/* Admin responsive */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 0;
    }
}

/* Admin tables */
.table-actions {
    opacity: 0;
    transition: opacity 0.2s ease;
}

tr:hover .table-actions {
    opacity: 1;
}

/* Empty state */
.empty-state {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--aurora-text-muted);
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: var(--aurora-text-muted);
    margin-bottom: 1.5rem;
}

/* Quick actions */
.quick-action-btn {
    transition: all 0.3s ease;
    border: 2px dashed rgba(255, 255, 255, 0.08);
}

.quick-action-btn:hover {
    border-color: var(--aurora-emerald);
    background: rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--aurora-emerald);
}

.status-badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--aurora-amber);
}

.status-badge-danger {
    background: rgba(244, 63, 94, 0.1);
    color: var(--aurora-rose);
}

.status-badge-info {
    background: rgba(6, 182, 212, 0.1);
    color: var(--aurora-cyan);
}

/* ═══════════════════════════════════════
   MISC & A11Y
   ═══════════════════════════════════════ */
*:focus-visible {
    outline: 2px solid var(--aurora-emerald);
    outline-offset: 2px;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--aurora-emerald);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

.img-placeholder {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(139, 92, 246, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aurora-text-dim);
}

.ribbon {
    position: absolute;
    top: 10px;
    right: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    width: 100px;
    display: block;
    background: linear-gradient(var(--aurora-amber), #d97706);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 19px;
    right: -21px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {

    .navbar,
    .footer,
    .admin-sidebar,
    .admin-topbar,
    .no-print {
        display: none !important;
    }

    .admin-content {
        margin-left: 0;
    }
}

/* Quantity control */
.quantity-control {
    display: inline-flex;
    border: 1px solid var(--aurora-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-control button {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--aurora-text);
}

.quantity-control button:hover {
    background: rgba(16, 185, 129, 0.1);
}

.quantity-control input {
    border: none;
    width: 60px;
    text-align: center;
    font-weight: 600;
    background: transparent;
    color: var(--aurora-text);
}

/* Image zoom */
.image-zoom {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.image-zoom img {
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.image-zoom:hover img {
    transform: scale(1.2);
}

/* Notification dot */
.notification-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    background: var(--aurora-rose);
    border: 2px solid var(--aurora-dark);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Progress */
.progress {
    overflow: visible;
    border-radius: var(--radius-pill);
    background: rgba(16, 185, 129, 0.1);
}

.progress-bar {
    border-radius: var(--radius-pill);
    transition: width 0.6s ease;
    position: relative;
    overflow: hidden;
    background: var(--gradient-btn);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Pagination */
.pagination .page-link {
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--aurora-card-border);
    color: var(--aurora-text-muted);
}

.pagination .page-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--aurora-emerald);
    color: white;
    border-color: var(--aurora-emerald);
}

/* Breadcrumb */
.breadcrumb-item+.breadcrumb-item::before {
    transition: transform 0.2s ease;
}

.breadcrumb-item a {
    color: var(--aurora-text-muted);
}

.breadcrumb-item a:hover {
    color: var(--aurora-emerald);
}

/* Form feedback */
.invalid-feedback {
    animation: slideInLeft 0.3s ease;
    color: var(--aurora-rose);
}

.valid-feedback {
    animation: slideInLeft 0.3s ease;
    color: var(--aurora-emerald);
}

/* Feature item */
.feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(16, 185, 129, 0.03);
    transform: translateX(8px);
}

/* Tooltip */
.tooltip-custom {
    position: relative;
    display: inline-block;
}

.tooltip-custom::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aurora-surface);
    color: var(--aurora-text);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--aurora-card-border);
}

.tooltip-custom:hover::after {
    opacity: 1;
}

/* Alert dismissible */
.alert-dismissible .btn-close {
    transition: transform 0.2s ease;
}

.alert-dismissible .btn-close:hover {
    transform: rotate(90deg);
}

/* Btn icons */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon i {
    transition: transform 0.3s ease;
}

.btn-icon:hover i {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════
   ADMIN PANEL — Aurora Dark Theme
   ═══════════════════════════════════════ */

.admin-layout {
    display: flex;
    min-height: 100vh;
    background: var(--aurora-dark);
}

.admin-sidebar {
    width: var(--sidebar-width);
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    padding: 0 0.75rem;
}

.admin-sidebar-header {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 0.5rem;
}

.admin-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav-item {
    margin-bottom: 2px;
}

.admin-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.admin-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
}

.admin-nav .nav-link.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--aurora-emerald);
    font-weight: 600;
}

.admin-nav .nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.admin-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    background: var(--aurora-dark);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(10, 15, 30, 0.6);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-topbar h5 {
    color: #fff !important;
}

.admin-topbar .btn-light {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.admin-topbar .dropdown-menu {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-topbar .dropdown-item {
    color: rgba(255, 255, 255, 0.7);
}

.admin-topbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.admin-topbar .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.06);
}

/* Stats Cards */
.stats-card {
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

.stats-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Admin Card */
.admin-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

/* Admin Tables */
.admin-card .table {
    color: rgba(255, 255, 255, 0.8);
    --bs-table-bg: transparent;
}

.admin-card .table thead {
    background: rgba(255, 255, 255, 0.03) !important;
}

.admin-card .table thead th {
    color: var(--aurora-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.admin-card .table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.admin-card .table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.admin-card .bg-light {
    background: rgba(255, 255, 255, 0.04) !important;
}

.admin-card .text-dark {
    color: rgba(255, 255, 255, 0.9) !important;
}

.admin-card .text-muted {
    color: var(--aurora-text-muted) !important;
}

/* Admin forms within admin layout */
.admin-layout .form-control,
.admin-layout .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.admin-layout .form-control:focus,
.admin-layout .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--aurora-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    color: #fff;
}

.admin-layout .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.admin-layout .form-label {
    color: var(--aurora-text-muted);
    font-weight: 500;
    font-size: 0.85rem;
}

.admin-layout .card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}

.admin-layout .card-header {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-layout .card-header,
.admin-layout .card-title,
.admin-layout h1,
.admin-layout h2,
.admin-layout h3,
.admin-layout h4,
.admin-layout h5,
.admin-layout h6 {
    color: #fff !important;
}

.admin-layout .btn-primary {
    background: var(--gradient-btn);
    border: none;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.admin-layout .btn-primary:hover {
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

.admin-layout .btn-outline-primary {
    border-color: var(--aurora-emerald);
    color: var(--aurora-emerald);
}

.admin-layout .btn-outline-primary:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--aurora-emerald);
    color: var(--aurora-emerald);
}

.admin-layout .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.admin-layout .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.admin-layout .text-dark {
    color: rgba(255, 255, 255, 0.9) !important;
}

.admin-layout .text-muted {
    color: var(--aurora-text-muted) !important;
}

.admin-layout .bg-light {
    background: rgba(255, 255, 255, 0.04) !important;
}

.admin-layout .bg-white {
    background: rgba(255, 255, 255, 0.03) !important;
}

.admin-layout .border {
    border-color: rgba(255, 255, 255, 0.06) !important;
}

.admin-layout .border-bottom {
    border-bottom-color: rgba(255, 255, 255, 0.04) !important;
}

.admin-layout .table {
    color: rgba(255, 255, 255, 0.8);
    --bs-table-bg: transparent;
    --bs-table-hover-bg: rgba(255, 255, 255, 0.02);
}

.admin-layout .table thead {
    background: rgba(255, 255, 255, 0.03);
}

.admin-layout .table thead th {
    border-bottom-color: rgba(255, 255, 255, 0.04);
    color: var(--aurora-text-muted);
}

.admin-layout .table td {
    border-bottom-color: rgba(255, 255, 255, 0.03);
}

.admin-layout .alert {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}

.admin-layout .alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.15);
    color: var(--aurora-blue);
}

.admin-layout .alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.15);
    color: var(--aurora-emerald);
}

.admin-layout .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.admin-layout .modal-content {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}

.admin-layout .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.04);
}

.admin-layout .modal-footer {
    border-top-color: rgba(255, 255, 255, 0.04);
}

.admin-layout .btn-close {
    filter: invert(1) brightness(0.8);
}

.admin-layout .input-group-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--aurora-text-muted);
}

/* Admin pagination */
.admin-layout .page-link {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
}

.admin-layout .page-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.admin-layout .page-item.active .page-link {
    background: var(--aurora-emerald);
    border-color: var(--aurora-emerald);
}

/* Admin mobile sidebar */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 0;
    }
}