/* Good Times Font */
@font-face {
    font-family: 'Good Times';
    src: url('../fonts/good-times.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Good Times';
    src: url('../fonts/good-times-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Dark Matter Research - Theme CSS */
/* Dual Theme Support: Dark (default) & Light */

/* ==========================================
   THEME VARIABLES - DARK THEME (Default)
   Similar to Dark Matter cosmic style
   ========================================== */
:root,
[data-theme="dark"] {
    /* Primary Colors - Cosmic Cyan */
    --primary-color: #06B6D4;
    --primary-dark: #0891B2;
    --primary-light: #67E8F9;
    --primary-gradient: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 50%, #06B6D4 100%);

    /* Accent Colors */
    --accent-green: #22c55e;
    --accent-red: #DA1311;
    --accent-violet: #8B5CF6;
    --accent-gold: #F59E0B;

    /* Text Colors - Dark Theme */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-inverse: #000000;

    /* Background Colors - Dark Theme (Pure Black) */
    --bg-primary: #030308;
    --bg-secondary: #050510;
    --bg-tertiary: #0a0a1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    /* Border Colors - Dark Theme */
    --border-color: rgba(6, 182, 212, 0.2);
    --border-light: rgba(6, 182, 212, 0.1);
    --border-accent: rgba(6, 182, 212, 0.4);

    /* Shadows - Dark Theme */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 10px 30px rgba(6, 182, 212, 0.4);

    /* Input Colors - Dark Theme */
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(6, 182, 212, 0.2);
    --input-text: #FFFFFF;
    --input-placeholder: rgba(255, 255, 255, 0.4);

    /* Nav specific - Dark Theme */
    --nav-bg: rgba(0, 0, 0, 0.95);
    --nav-border: rgba(6, 182, 212, 0.1);
    --nav-search-bg: rgba(255, 255, 255, 0.05);
    --nav-search-border: rgba(255, 255, 255, 0.08);
    --nav-hover-bg: rgba(255, 255, 255, 0.05);
    --dropdown-bg: rgba(10, 10, 10, 0.98);
    --dropdown-border: rgba(6, 182, 212, 0.2);
    --dropdown-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);

    /* Misc */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* ==========================================
   DARK THEME BOOTSTRAP OVERRIDES
   ========================================== */
[data-theme="dark"] .card {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .card-header {
    background: var(--bg-tertiary);
    border-bottom-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .card-body {
    background: transparent;
    color: var(--text-primary);
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select,
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="password"],
[data-theme="dark"] input[type="number"],
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: var(--bg-tertiary) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    background: var(--bg-tertiary) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15) !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] .form-control::placeholder,
[data-theme="dark"] .form-select::placeholder,
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .form-label {
    color: var(--text-primary);
}

[data-theme="dark"] .form-check-label {
    color: var(--text-primary);
}

[data-theme="dark"] .modal-content {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .modal-header {
    border-bottom-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .modal-footer {
    border-top-color: var(--border-color);
}

[data-theme="dark"] .modal-title {
    color: var(--text-primary);
}

[data-theme="dark"] .btn-close {
    filter: invert(1);
}

/* Modal z-index fix - ensure modals appear above navbar */
.modal {
    z-index: 10500 !important;
}

.modal-backdrop {
    z-index: 10499 !important;
}

.modal.show {
    z-index: 10500 !important;
}

[data-theme="dark"] .table {
    color: var(--text-primary);
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-primary);
}

[data-theme="dark"] .table th {
    color: var(--text-primary) !important;
    background: var(--bg-tertiary) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .table td {
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
    background: transparent !important;
}

[data-theme="dark"] .table thead {
    color: var(--text-primary);
}

[data-theme="dark"] .table tbody {
    color: var(--text-primary);
}

[data-theme="dark"] .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.02) !important;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .table-responsive {
    color: var(--text-primary);
}

[data-theme="dark"] .table-sm th,
[data-theme="dark"] .table-sm td {
    color: var(--text-primary) !important;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--text-primary);
}

[data-theme="dark"] .text-muted {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

[data-theme="dark"] .btn-outline-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

[data-theme="dark"] .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

[data-theme="dark"] .btn-outline-danger {
    border-color: #ef4444;
    color: #ef4444;
}

/* ==========================================
   LIGHT THEME VARIABLES
   ========================================== */
[data-theme="light"] {
    /* Primary Colors - Cosmic Cyan */
    --primary-color: #06B6D4;
    --primary-dark: #0891B2;
    --primary-light: #67E8F9;
    --primary-gradient: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 50%, #06B6D4 100%);

    /* Accent Colors */
    --accent-green: #22c55e;
    --accent-red: #DA1311;
    --accent-violet: #8B5CF6;
    --accent-gold: #F59E0B;

    /* Text Colors - Light Theme */
    --text-primary: #0a2540;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --text-inverse: #FFFFFF;

    /* Background Colors - Light Theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F9FAFB;

    /* Border Colors - Light Theme */
    --border-color: #E5E7EB;
    --border-light: #F3F4F6;
    --border-accent: rgba(6, 182, 212, 0.5);

    /* Shadows - Light Theme */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 10px 30px rgba(6, 182, 212, 0.2);

    /* Input Colors - Light Theme */
    --input-bg: #FFFFFF;
    --input-border: #E5E7EB;
    --input-text: #0a2540;
    --input-placeholder: #9CA3AF;

    /* Nav specific - Light Theme */
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-border: rgba(0, 0, 0, 0.08);
    --nav-search-bg: rgba(0, 0, 0, 0.04);
    --nav-search-border: rgba(0, 0, 0, 0.08);
    --nav-hover-bg: rgba(0, 0, 0, 0.04);
    --dropdown-bg: rgba(255, 255, 255, 0.98);
    --dropdown-border: rgba(0, 0, 0, 0.1);
    --dropdown-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   FONT IMPORTS - Bebas Neue for headings (Dark Matter style)
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==========================================
   BASE STYLES WITH THEME VARIABLES
   ========================================== */
html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Page Layout - Sticky Footer */
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
    padding-top: 80px;
}

.footer {
    flex-shrink: 0;
}

/* Container - Wide like Dark Matter (1680px max) */
.container {
    max-width: 1680px;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Typography - Somachems Style (Bebas Neue, Uppercase) */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ==========================================
   THEME TOGGLE BUTTON
   ========================================== */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-inverse);
    transform: rotate(15deg);
}

.theme-toggle i {
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: scale(1.1);
}

/* Modern Navbar - Theme Aware */
.navbar {
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    padding: 0;
    height: 70px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
    z-index: 1050;
    transition: all 0.3s ease;
}

.navbar .container {
    height: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary) !important;
    font-weight: 700;
    font-size: 1.35rem;
    text-decoration: none !important;
}

.navbar-brand:hover {
    color: var(--text-primary) !important;
}

/* Dark Matter Brand Style */
.dm-brand {
    gap: 0.75rem;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-dm {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #67E8F9, #06B6D4, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.brand-research {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border-radius: 10px;
    font-size: 1.1rem;
}

.brand-icon i {
    color: white;
}

.brand-text {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-accent {
    color: var(--primary-light);
}

.navbar .nav-link {
    color: var(--text-secondary) !important;
    padding: 0.5rem 1.1rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.2s ease;
}

.navbar .nav-link:hover {
    color: var(--text-primary) !important;
}

.navbar .nav-link:hover::after {
    width: 60%;
}

.navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar .nav-link.active::after {
    width: 60%;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Search Input */
.nav-search {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
}

.search-input-wrapper .form-control {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem 0.5rem 2.25rem;
    border-radius: 0;
    width: 180px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.search-input-wrapper .form-control::placeholder {
    color: var(--text-muted);
}

.search-input-wrapper .form-control:focus {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
    width: 280px;
    outline: none;
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 320px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin-top: 8px;
    z-index: 1060;
    overflow: hidden;
    animation: searchDropdownFade 0.2s ease;
}

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

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.15s ease;
    cursor: pointer;
}

.search-result-item:hover {
    background: var(--bg-gray);
    text-decoration: none;
    color: var(--text-dark);
}

.search-result-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-gray);
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.search-view-all {
    display: block;
    padding: 12px 16px;
    text-align: center;
    background: var(--bg-gray);
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    transition: background 0.15s ease;
}

.search-view-all:hover {
    background: var(--secondary-dark);
    color: var(--primary-dark);
    text-decoration: none;
}

.search-loading {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Nav Icon Button - Dark Theme */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.nav-icon-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #0a0a12;
    transform: translateY(-1px);
}

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

.nav-icon-btn.dropdown-toggle::after {
    display: none;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Login Link - Dark Theme */
.login-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
}

.login-link:hover {
    color: var(--text-primary) !important;
}

/* Sign Up Button */
.btn-nav-signup {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: #0a0a12;
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-nav-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    color: #0a0a12;
}

/* User Dropdown */
.user-dropdown {
    min-width: 220px;
    padding: 0.5rem 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-radius: 0;
    margin-top: 10px;
}

.user-dropdown .dropdown-header {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.user-dropdown .user-name {
    font-weight: 600;
    color: var(--text-primary);
}

.user-dropdown .user-email {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.user-dropdown .admin-header {
    background: rgba(6, 182, 212, 0.15);
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-dropdown .dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.user-dropdown .dropdown-item:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.user-dropdown .dropdown-item i {
    width: 20px;
    color: var(--text-muted);
}

.user-dropdown .dropdown-item:hover i {
    color: var(--primary-color);
}

.user-dropdown .dropdown-item.text-danger:hover {
    background: #fff5f5;
}

.user-dropdown .dropdown-item.text-danger i {
    color: var(--accent-red);
}

/* Navbar Dropdown */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 10px;
}

.navbar .dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

.navbar .dropdown-item:hover {
    background: var(--bg-gray);
}

.navbar .dropdown-item i {
    color: var(--primary-color);
    width: 24px;
}

/* Mobile Offcanvas */
.offcanvas {
    background: var(--bg-dark);
    color: white;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
}

.offcanvas-title {
    color: white;
    font-weight: 700;
}

.offcanvas-body .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.offcanvas-body .nav-link:hover {
    color: white;
}

.offcanvas-body .nav-link i {
    width: 28px;
    color: var(--primary-light);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.mobile-user-info i {
    color: var(--primary-light);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* Content spacing for fixed navbar */
.content {
    transition: padding-top 0.3s ease;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-success {
    background-color: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.btn-success:hover {
    background-color: #16a34a;
    border-color: #16a34a;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background-color: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

/* Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card .sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-red);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card .product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .product-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card .product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.product-card .product-price.sale {
    color: var(--accent-red);
}

.product-card .original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.875rem;
}

/* Forms */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(51, 141, 191, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Footer - Original */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
}

.footer a:hover {
    color: var(--text-light);
    text-decoration: none;
}

.footer h5 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Dark Matter Footer */
.dm-footer {
    position: relative;
    background: #030308;
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    overflow: hidden;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    transition: background-color 0.3s ease;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06B6D4, #8B5CF6, #06B6D4, transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-inverse);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h6 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.85rem;
}

.link-group a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.link-group a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

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

.research-note {
    font-style: italic;
}

.footer-disclaimer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer strong {
    color: var(--text-color);
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

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

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

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dm-footer {
        padding: 2rem 0 1.5rem;
    }

    .dm-footer .container {
        padding: 0 1rem;
    }

    .footer-top {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-brand p {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .link-group h6 {
        font-size: 1rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .link-group li {
        margin-bottom: 0.6rem;
    }

    .link-group a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        gap: 0.5rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 4rem 0;
}

.hero h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Modern Hero Section */
.hero-modern {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-light);
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 550px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.hero-particles .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 2s; animation-duration: 18s; }
.hero-particles .particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 4s; animation-duration: 12s; }
.hero-particles .particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 1s; animation-duration: 20s; }
.hero-particles .particle:nth-child(5) { left: 45%; top: 80%; animation-delay: 3s; animation-duration: 16s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
    50% { transform: translateY(-15px) translateX(-10px); opacity: 0.4; }
    75% { transform: translateY(-40px) translateX(5px); opacity: 0.5; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #67E8F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border: none;
    color: var(--text-dark);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
    color: var(--text-dark);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-light);
}

.hero-image-container {
    position: relative;
    padding: 2rem;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(40px);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 25%;
    right: -10px;
    animation-delay: 1.5s;
}

.hero-floating-card i {
    font-size: 1.25rem;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.min-vh-50 {
    min-height: 50vh;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    background-color: var(--bg-gray);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Admin Sidebar */
.admin-sidebar {
    background-color: var(--bg-dark);
    min-height: 100vh;
    padding: 1rem 0;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.75rem 1.5rem;
    border-radius: 0;
}

.admin-sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.admin-sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Tables */
.table {
    --bs-table-bg: transparent;
}

.table thead th {
    background-color: var(--bg-gray);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--primary-dark);
}

/* Badges */
.badge-success {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.badge-warning {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.badge-danger {
    background-color: var(--accent-red);
    color: var(--text-light);
}

.badge-info {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Blazor-specific */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid var(--primary-color);
}

.invalid {
    outline: 1px solid var(--accent-red);
}

.validation-message {
    color: var(--accent-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

#blazor-error-ui {
    background: #FFF3CD;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: var(--accent-red);
    padding: 1rem;
    color: white;
    border-radius: var(--border-radius);
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

/* Loading */
.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: var(--secondary-dark);
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: var(--primary-color);
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    color: var(--primary-dark);
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

/* Font Awesome icon colors */
i.fa-solid.text-primary,
i.fa-regular.text-primary,
i.fa-brands.text-primary {
    color: var(--primary-color) !important;
}

i.fa-solid.text-success,
i.fa-regular.text-success {
    color: #198754 !important;
}

i.fa-solid.text-danger,
i.fa-regular.text-danger {
    color: #dc3545 !important;
}

i.fa-solid.text-warning,
i.fa-regular.text-warning {
    color: #ffc107 !important;
}

i.fa-solid.text-muted,
i.fa-regular.text-muted {
    color: #6c757d !important;
}

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

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

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

/* Container */
.container-fluid {
    max-width: 1400px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    /* Modern Hero Responsive */
    .hero-modern {
        padding: 3rem 0 2.5rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        font-size: 0.8rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-image-container {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-floating-card.card-1 {
        left: 10px;
    }

    .hero-floating-card.card-2 {
        right: 10px;
    }
}

/* ============================================
   DARK MATTER RESEARCH - UNIQUE DESIGN STYLES
   ============================================ */

/* ============================================
   HERO SECTION - COSMIC
   ============================================ */
/* Legacy hero layout - hidden, replaced by cinematic hero */
.hero-split, .hero-text, .hero-image {
    display: none;
}

/* ================================================
   DARK MATTER HERO - Split Layout + Animated Gradient Mesh
   ================================================ */
.dm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
    padding: 0;
}

.dm-hero-bg-gif {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.dm-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 clamp(2rem, 5vw, 6rem);
    padding-top: 80px;
}

/* Animated gradient mesh orbs */
.dm-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.dm-hero-orb--cyan {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: orbFloat1 14s ease-in-out infinite;
}

.dm-hero-orb--violet {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    bottom: -15%;
    right: 5%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.dm-hero-orb--gold {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 40px) scale(1.1); }
    66% { transform: translate(-30px, 60px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -30px) scale(1.05); }
    66% { transform: translate(40px, -50px) scale(0.9); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(calc(-50% + 30px), calc(-50% - 40px)) scale(1.15); }
    66% { transform: translate(calc(-50% - 20px), calc(-50% + 30px)) scale(0.9); }
}

/* Hero left column */
.dm-hero-left {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem 0;
    max-width: 600px;
}

.dm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    color: #06B6D4;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.dm-hero-title {
    font-family: "good-times", "Bebas Neue", sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.dm-hero-title-sub {
    font-family: "good-times", "Bebas Neue", sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dm-hero-slogan {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6, #F59E0B, #06B6D4);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sloganShimmer 6s ease infinite;
    margin: 0 0 1rem 0;
}

@keyframes sloganShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.dm-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 0 2rem 0;
    line-height: 1.7;
}

.dm-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Inline HUD stats in hero */
.dm-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(6, 182, 212, 0.12);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #06B6D4;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

.hero-stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.25), transparent);
}

/* Hero right column - Product showcase */
.dm-hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.dm-hero-bottle-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Radial glow behind bottle */
.dm-hero-bottle-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* Orbital ring */
.dm-hero-orbital-ring {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 50%;
    animation: orbit 12s linear infinite;
    pointer-events: none;
}

.dm-hero-orbital-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #06B6D4;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.8), 0 0 30px rgba(6, 182, 212, 0.4);
}

.dm-hero-orbital-ring::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #8B5CF6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8), 0 0 25px rgba(139, 92, 246, 0.4);
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero GIF / product image */
.dm-hero-bottle {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: none;
    animation: none;
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Upgraded particles */
.dm-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.dm-hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: heroParticleFloat 10s infinite;
}

.dm-hero-particles .particle--cyan {
    background: #06B6D4;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.6), 0 0 20px rgba(6, 182, 212, 0.3);
}

.dm-hero-particles .particle--violet {
    background: #8B5CF6;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.6), 0 0 20px rgba(139, 92, 246, 0.3);
}

.dm-hero-particles .particle--gold {
    background: #F59E0B;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5), 0 0 20px rgba(245, 158, 11, 0.25);
}

.dm-hero-particles .particle:nth-child(1) { width: 5px; height: 5px; left: 8%;  animation-delay: 0s;   animation-duration: 9s; }
.dm-hero-particles .particle:nth-child(2) { width: 7px; height: 7px; left: 20%; animation-delay: 1.5s; animation-duration: 11s; }
.dm-hero-particles .particle:nth-child(3) { width: 5px; height: 5px; left: 35%; animation-delay: 3s;   animation-duration: 8s; }
.dm-hero-particles .particle:nth-child(4) { width: 6px; height: 6px; left: 50%; animation-delay: 0.5s; animation-duration: 10s; }
.dm-hero-particles .particle:nth-child(5) { width: 4px; height: 4px; left: 65%; animation-delay: 2s;   animation-duration: 12s; }
.dm-hero-particles .particle:nth-child(6) { width: 6px; height: 6px; left: 78%; animation-delay: 4s;   animation-duration: 9s; }
.dm-hero-particles .particle:nth-child(7) { width: 8px; height: 8px; left: 88%; animation-delay: 1s;   animation-duration: 11s; }
.dm-hero-particles .particle:nth-child(8) { width: 4px; height: 4px; left: 95%; animation-delay: 3.5s; animation-duration: 8s; }

@keyframes heroParticleFloat {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.9; }
    50%  { opacity: 0.5; }
    90%  { opacity: 0; }
    100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* Badge dot pulse */
.badge-dot {
    width: 6px;
    height: 6px;
    background: #06B6D4;
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(6, 182, 212, 0.6);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Scroll indicator */
.dm-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #06B6D4, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 55px; }
}

/* Hero responsive */
@media (max-width: 992px) {
    .dm-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1.5rem;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .dm-hero-left {
        text-align: center;
        order: 1;
    }

    .dm-hero-right {
        order: 2;
        padding: 1rem 0;
    }

    .dm-hero-subtitle {
        margin: 0 auto 2rem;
    }

    .dm-hero-actions {
        justify-content: center;
    }

    .dm-hero-stats {
        justify-content: center;
    }

    .dm-hero-bottle {
        height: 320px;
    }

    .dm-hero-orbital-ring {
        width: 300px;
        height: 300px;
    }

    .dm-hero-bottle-glow {
        width: 350px;
        height: 350px;
    }

    .dm-hero-orb--cyan {
        width: 400px;
        height: 400px;
    }

    .dm-hero-orb--violet {
        width: 350px;
        height: 350px;
    }

    .dm-hero-orb--gold {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .dm-hero {
        padding-top: 90px;
    }

    .dm-hero-title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .dm-hero-subtitle {
        font-size: 1rem;
    }

    .dm-hero-bottle {
        height: 260px;
    }

    .dm-hero-orbital-ring {
        width: 240px;
        height: 240px;
    }

    .dm-hero-bottle-glow {
        width: 280px;
        height: 280px;
    }

    .dm-hero-particles .particle:nth-child(7),
    .dm-hero-particles .particle:nth-child(8) {
        display: none;
    }

    .dm-hero-stats {
        gap: 1rem;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .dm-hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .dm-hero-title {
        font-size: clamp(2.2rem, 14vw, 3.5rem);
    }

    .dm-hero-subtitle {
        font-size: 0.9rem;
    }

    .dm-hero-bottle {
        height: 200px;
    }

    .dm-hero-orbital-ring {
        width: 190px;
        height: 190px;
    }

    .dm-hero-bottle-glow {
        width: 220px;
        height: 220px;
    }

    .dm-hero-stats {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .dm-hero-particles .particle:nth-child(5),
    .dm-hero-particles .particle:nth-child(6) {
        display: none;
    }

    .dm-scroll-indicator {
        display: none;
    }
}

/* ================================================
   CATEGORY TILES - Cosmic Image Backgrounds
   ================================================ */
.category-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-tile {
    position: relative;
    display: flex;
    align-items: flex-end;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-tile:hover {
    transform: translateY(-6px);
}

.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
    transition: background 0.3s ease;
}

.category-tile:hover .tile-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(6, 182, 212, 0.15) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.tile-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-tile h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tile-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-tile:hover .tile-arrow {
    color: #06B6D4;
    transform: translateX(5px);
}

/* ================================================
   CTA BANNER - Cosmic Starfield
   ================================================ */
.dm-cta-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.dm-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/starfield.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.dm-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.dm-cta-card {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dm-cta-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.75rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.dm-cta-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    color: #06B6D4;
    font-size: 1.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   FEATURED PRODUCTS SECTION - Cosmic Background
   ================================================ */
.dm-products-section {
    position: relative;
    padding: 5rem 0;
    background: #030308;
    overflow: hidden;
}

.dm-products-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/cosmic-web.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.dm-section-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.dm-section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    color: #06B6D4;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.dm-section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    flex: 1;
}

.dm-section-header .view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.dm-section-header .view-all-link:hover {
    color: #06B6D4;
}

.dm-section-header .view-all-link i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.dm-section-header .view-all-link:hover i {
    transform: translateX(3px);
}

/* ================================================
   RESEARCH DISCLAIMER
   ================================================ */
.dm-disclaimer {
    padding: 2.5rem 0;
    background: rgba(6, 182, 212, 0.03);
    border-top: 1px solid rgba(6, 182, 212, 0.08);
    border-bottom: 1px solid rgba(6, 182, 212, 0.08);
}

.disclaimer-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.25rem 1.75rem;
    background: rgba(6, 182, 212, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.disclaimer-inner i {
    font-size: 1.5rem;
    color: rgba(6, 182, 212, 0.5);
    flex-shrink: 0;
}

.disclaimer-inner p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.disclaimer-inner strong {
    color: var(--text-secondary);
}

@media (max-width: 576px) {
    .disclaimer-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* ================================================
   CONTACT SECTION - Cosmic
   ================================================ */
.dm-contact-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.dm-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
}

/* Responsive Cinematic Hero */
@media (max-width: 992px) {
    .dm-hero {
        min-height: 90vh;
    }

    .dm-hero-content {
        margin-top: 60px;
    }

    .dm-hero-vial img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .dm-hero {
        min-height: 85vh;
    }

    .dm-hero-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .dm-hero-subtitle {
        font-size: 1rem;
    }

    .dm-hero-vial img {
        height: 160px;
    }

    .hud-items {
        gap: 1.5rem;
    }

    .hud-number {
        font-size: 1.5rem;
    }

    .category-tiles {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .category-tile {
        aspect-ratio: 4/3;
    }

    .category-tile h3 {
        font-size: 1.15rem;
    }

    .dm-cta-banner {
        padding: 3rem 0;
    }

    .dm-cta-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .dm-cta-card h2 {
        font-size: 2rem;
    }

    .dm-products-section {
        padding: 3rem 0;
    }

    .dm-section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .dm-hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .dm-hero-vial img {
        height: 120px;
    }

    .hud-divider {
        display: none;
    }

    .hud-items {
        gap: 1rem;
    }

    .category-tiles {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .category-tile h3 {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .tile-content {
        padding: 1rem;
    }
}

/* Bottle container for layered effects */
.bottle-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Dynamic shadow on floor */
.bottle-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowPulse 3s ease-in-out infinite;
    z-index: 0;
}

/* Main bottle image */
.bottle-container img {
    width: auto;
    height: 450px;
    max-height: 60vh;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: bottleFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

/* Hero GIF */
.hero-gif {
    width: auto;
    height: 450px;
    max-height: 60vh;
    max-width: 100%;
    object-fit: contain;
}

/* Glow ring behind bottle */
.bottle-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(6, 182, 212, 0.25), transparent, rgba(139, 92, 246, 0.2), transparent, rgba(236, 72, 153, 0.15), transparent);
    animation: glowSpin 8s linear infinite;
    z-index: 1;
    filter: blur(40px);
}

/* Floating particles */
.bottle-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.bottle-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    animation: particleFloat 4s ease-in-out infinite;
}

.bottle-particles span:nth-child(1) {
    left: 20%;
    top: 30%;
    animation-delay: 0s;
}

.bottle-particles span:nth-child(2) {
    left: 80%;
    top: 20%;
    animation-delay: 0.5s;
    width: 4px;
    height: 4px;
}

.bottle-particles span:nth-child(3) {
    left: 70%;
    top: 70%;
    animation-delay: 1s;
}

.bottle-particles span:nth-child(4) {
    left: 15%;
    top: 60%;
    animation-delay: 1.5s;
    width: 5px;
    height: 5px;
}

.bottle-particles span:nth-child(5) {
    left: 50%;
    top: 10%;
    animation-delay: 2s;
    width: 4px;
    height: 4px;
}

/* Smooth floating animation */
@keyframes bottleFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg) rotateZ(0deg);
    }
    50% {
        transform: translateY(-25px) rotateY(5deg) rotateZ(1deg);
    }
}

/* Shadow pulse synced with float */
@keyframes shadowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.2;
    }
}

/* Spinning glow ring */
@keyframes glowSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Particle floating */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
}

/* Hover - pause and scale */
.bottle-container:hover img {
    animation-play-state: paused;
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.bottle-container:hover .bottle-glow {
    animation-play-state: paused;
}

.bottle-container:hover .bottle-shadow {
    animation-play-state: paused;
}

@media (max-width: 992px) {
    .dm-hero {
        padding: 90px 0 30px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-text {
        padding-right: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 0;
        min-height: 300px;
    }

    .hero-gif {
        height: 300px;
        max-height: 40vh;
    }

    .dm-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .hero-actions {
        justify-content: center;
    }

    .dm-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }
}

/* glowPulse keyframe defined in hero section */

.dm-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-line {
    display: block;
    color: var(--text-primary);
    opacity: 0.9;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #67E8F9, #06B6D4, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.3));
}

.dm-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 0 2rem 0;
    line-height: 1.7;
    font-weight: 400;
}

/* Stats Row - Somachems Style */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.stat-item {
    text-align: center;
    padding: 0;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 2px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-dm-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(8, 145, 178, 0.1));
    color: #06B6D4;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.5);
}

.btn-dm-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-dm-primary:hover::before {
    left: 100%;
}

.btn-dm-primary i {
    font-size: 0.75rem;
}

.btn-dm-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(139, 92, 246, 0.15));
    border-color: rgba(6, 182, 212, 0.8);
    color: #67E8F9;
    box-shadow: 0 8px 35px rgba(6, 182, 212, 0.3), 0 0 20px rgba(6, 182, 212, 0.15);
}

.btn-dm-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-dm-ghost:hover {
    border-color: rgba(6, 182, 212, 0.4);
    color: #06B6D4;
    background: rgba(6, 182, 212, 0.06);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.scroll-indicator {
    display: none;
}

.scroll-arrow {
    display: none;
}

/* Trust Strip - Modern Minimal */
.trust-strip {
    background: rgba(6, 182, 212, 0.03);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(6, 182, 212, 0.08);
    border-bottom: 1px solid rgba(6, 182, 212, 0.08);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.trust-item i {
    color: #06B6D4;
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.4));
}

@media (max-width: 768px) {
    .trust-items {
        gap: 1.5rem;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    .trust-item i {
        font-size: 0.9rem;
    }
}

/* Legacy features-bar support */
.features-bar {
    display: none;
}

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

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Categories Section - Modern */
.categories-section {
    padding: 5rem 0;
    background: #030308;
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.categories-header {
    margin-bottom: 2rem;
    text-align: center;
}

.categories-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 182, 212, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.category-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.08);
}

.category-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(139, 92, 246, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-card:hover .card-icon {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.category-card .card-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card .card-arrow {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.category-card:hover .card-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 3rem 0;
    }

    .category-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 0.75rem;
    }

    .category-card .card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .category-card .card-info {
        flex-direction: column;
        gap: 0.25rem;
    }

    .category-card h3 {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .category-card .card-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 2.5rem 0;
    }

    .categories-header h2 {
        font-size: 1.75rem;
    }

    .category-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .category-card {
        padding: 1rem 0.75rem;
    }

    .category-card .card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .category-card h3 {
        font-size: 0.75rem;
    }
}

/* Products Section - Modern */
.products-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.products-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    color: var(--primary-color);
}

.view-all-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.view-all-link:hover i {
    transform: translateX(4px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

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

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Product Card - Modern with Holographic Border */
.product-card {
    display: block;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Holographic border */
.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    padding: 1px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6, #EC4899, #F59E0B, #06B6D4);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    animation: holoBorder 4s linear infinite paused;
}

/* Cursor glow */
.product-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.product-card:hover {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.12),
                0 0 60px rgba(139, 92, 246, 0.05);
}

.product-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card .product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    border-radius: 50px;
}

.product-card .product-image {
    aspect-ratio: 3/4;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-placeholder {
    color: var(--text-muted);
    font-size: 2.5rem;
}

.product-card .product-details {
    padding: 1rem;
}

.product-card .product-category {
    display: block;
    font-size: 0.65rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.product-card .product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    color: #F59E0B;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50px;
}

/* Product Card DM - Shop Page */
.product-card-dm {
    display: block;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(6, 182, 212, 0.1);
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    will-change: transform;
}

/* Holographic border glow on hover */
.product-card-dm::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    padding: 1px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6, #EC4899, #F59E0B, #06B6D4);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    animation: holoBorder 4s linear infinite paused;
}

/* Cursor-following radial glow */
.product-card-dm::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.product-card-dm:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.15), 0 0 60px rgba(139, 92, 246, 0.05);
}

.product-card-dm:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.product-card-dm:hover::after {
    opacity: 1;
}

@keyframes holoBorder {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.product-card-dm .product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    border-radius: 4px;
}

.product-card-dm .product-badge.out {
    background: var(--accent-red);
    color: #fff;
}

.product-card-dm .product-image-wrap {
    display: block;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.product-card-dm .product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-dm:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-card-dm .product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2.5rem;
}

.product-card-dm .product-overlay {
    display: none;
}

.product-card-dm .product-info {
    padding: 1rem;
}

.product-card-dm .product-category {
    display: block;
    font-size: 0.65rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-card-dm .product-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.product-card-dm .product-info a {
    text-decoration: none;
}

.product-card-dm .product-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-dm .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card-dm .product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    color: #F59E0B;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50px;
}

.product-card-dm .btn-add-cart {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: #fff;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.product-card-dm .btn-add-cart:hover {
    background: linear-gradient(135deg, #67E8F9, #A78BFA);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

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

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.btn-add-cart {
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-inverse);
}

.btn-dm-outline {
    display: inline-flex;
    align-items: center;
    padding: 1.1rem 2.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dm-outline:hover {
    background: #06B6D4;
    color: #FFFFFF;
}

/* About Section - Modern */
/* About Section - Modern Design */
.about-section-modern {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-badge i {
    font-size: 0.75rem;
}

.about-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.about-header h2 span {
    color: var(--primary-color);
}

.about-header > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.05);
}

.stat-card.featured {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: rgba(6, 182, 212, 0.3);
    transform: scale(1.05);
}

.stat-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-card .stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.about-cta {
    text-align: center;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-about i {
    transition: transform 0.3s ease;
}

.btn-about:hover i {
    transform: translateX(4px);
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.04) 0%, rgba(139, 92, 246, 0.03) 50%, rgba(6, 182, 212, 0.02) 100%);
    border-top: 1px solid rgba(6, 182, 212, 0.08);
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.08) 0%, rgba(139, 92, 246, 0.04) 40%, transparent 70%);
    pointer-events: none;
    filter: blur(30px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .about-section-modern {
        padding: 4rem 0;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card.featured {
        transform: none;
    }

    .stat-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .about-header {
        margin-bottom: 3rem;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-card .stat-value {
        font-size: 2.5rem;
    }
}

/* Legacy About Section (keep for backward compatibility) */
.about-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid var(--primary-color);
    z-index: -1;
}

.about-content {
    padding: 1rem 0;
}

.about-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 1.25rem 0;
    line-height: 1.1;
}

.about-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.about-stats .stat {
    text-align: left;
}

.about-stats .stat-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.about-link:hover {
    color: var(--primary-color);
}

.about-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.about-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image::before {
        display: none;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-stats {
        gap: 2rem;
    }

    .about-stats .stat-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .about-stats .stat {
        min-width: calc(50% - 0.75rem);
    }
}

/* Why Section - Modern */
.why-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.why-feature {
    text-align: center;
}

.why-feature .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.why-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .why-section {
        padding: 3rem 0;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-feature .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Legacy why-grid support */
.why-grid,
.why-content,
.why-list,
.why-item,
.why-visual,
.visual-card,
.visual-glow {
    display: none;
}

/* CTA Section - Hidden for now */
.cta-section {
    display: none;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
}

.cta-aurora {
    display: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-dm-light {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: var(--primary-color);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dm-light:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Dark Matter Loader */
.dm-loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(6, 182, 212, 0.15);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.dm-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: var(--bg-primary);
    position: relative;
}

.dm-loader-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.dm-loader-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-top: 1.5rem;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Responsive - DM Styles */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .feature-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .category-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .dm-title {
        font-size: 2.5rem;
    }

    .dm-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-divider {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   SHOP PAGE STYLES
   ============================================ */

/* Shop Hero - Dark Theme */
.shop-hero, .product-hero {
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0 3rem;
    margin-top: 70px;
    overflow: hidden;
}

.shop-hero-bg, .product-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
}

.shop-hero-content {
    text-align: center;
}

.shop-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.shop-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.shop-breadcrumb a:hover {
    color: var(--primary-color);
}

.shop-breadcrumb i {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.shop-breadcrumb span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.shop-breadcrumb span.active {
    color: var(--primary-color);
}

.shop-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

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

/* Shop Content */
.shop-content, .product-content {
    padding: 3rem 0 5rem;
    background: var(--bg-primary);
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.sidebar-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.sidebar-title i {
    color: var(--primary-color);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 0;
    text-decoration: none;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border: 1px solid transparent;
    transition: all 0.2s;
}

.category-item:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--border-accent);
}

.category-item.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #0a0a12;
}

.category-item.active .category-count {
    background: rgba(0, 0, 0, 0.2);
    color: #0a0a12;
}

.category-name {
    font-weight: 500;
}

.category-count {
    background: var(--bg-card);
    color: var(--text-muted);
    padding: 0.2rem 0.6rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.filter-option input {
    display: none;
}

.filter-check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.filter-option input:checked + .filter-check {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-option input:checked + .filter-check::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0a0a12;
    font-size: 0.7rem;
}

.sidebar-trust {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    padding: 1.5rem;
}

.sidebar-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.sidebar-trust .trust-item i {
    color: var(--primary-color);
    width: 20px;
}

/* Shop Main */
.shop-main {
    min-height: 400px;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count {
    color: var(--text-secondary);
    margin: 0;
}

.results-count strong {
    color: var(--primary-color);
}

.sort-select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
}

.sort-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.products-grid-shop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.shop-loading, .shop-empty {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.shop-loading::before, .shop-empty::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.shop-loading p, .shop-empty p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-top: 1.5rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.shop-empty h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Pagination */
.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
    border-color: #06B6D4;
    color: #06B6D4;
}

.page-btn.active {
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border-color: #06B6D4;
    color: #0a0a10;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Product Badge Variants */
.product-badge.out {
    background: #666;
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

.product-loading, .product-not-found {
    text-align: center;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    position: relative;
}

.product-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 2s ease-in-out infinite;
}

.product-loading p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-top: 1.5rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.not-found-icon {
    width: 120px;
    height: 120px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.not-found-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.product-not-found h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.product-not-found p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.product-info-panel {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(6, 182, 212, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.gallery-main {
    position: relative;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
}

/* Glow effect behind bottle in gallery */
.gallery-main::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.gallery-main:hover {
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.08), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-main:hover::before {
    opacity: 1;
}

.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    cursor: zoom-in;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.gallery-main:hover img {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 40px rgba(6, 182, 212, 0.15));
}

.gallery-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
}

.gallery-badge.sale {
    background: var(--primary-color);
    color: #000;
}

.gallery-zoom {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.gallery-zoom:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.gallery-placeholder {
    width: 100%;
    height: 500px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.thumb {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    transition: all 0.3s ease;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.thumb:hover {
    border-color: var(--text-muted);
}

.thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.3), 0 0 15px rgba(6, 182, 212, 0.15);
}

/* Product Details */
.product-details {
    padding-top: 0;
    max-width: 100%;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.meta-category {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.meta-stock {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.meta-stock.in-stock {
    color: #22c55e;
}

.meta-stock.out-stock {
    color: #ef4444;
}

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.price-current {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.price-sale {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #22c55e;
    letter-spacing: 1px;
}

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

.price-save {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Variant Selector */
.variant-selector {
    margin-bottom: 1.5rem;
}

.variant-selector label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.variant-btn {
    padding: 0.875rem 1.75rem;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-btn:hover:not(.disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.variant-btn.active {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.variant-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.variant-btn small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: none;
}

/* Product Specs */
.product-specs {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.product-specs h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Add to Cart Section */
.add-to-cart-section {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.qty-btn {
    width: 48px;
    height: 54px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: #000;
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-value {
    width: 50px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.btn-add-to-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 2rem;
    height: 54px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover:not(:disabled) {
    background: linear-gradient(135deg, #67E8F9, #A78BFA);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.35);
}

.btn-add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Product Trust */
.product-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.trust-feature:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.trust-feature i {
    font-size: 1.1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.trust-feature div {
    min-width: 0;
}

.trust-feature strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.trust-feature span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Product Tabs */
.product-tabs {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
    backdrop-filter: blur(8px);
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    border-radius: 16px 16px 0 0;
}

.tab-btn {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--primary-color);
    background: rgba(6, 182, 212, 0.06);
    border-bottom: 2px solid #06B6D4;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tabs-content {
    padding: 2rem;
}

.tab-panel {
    animation: fadeIn 0.3s ease;
}

.description-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.description-content p {
    margin-bottom: 1rem;
}

.description-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.description-content li {
    margin-bottom: 0.5rem;
}

.research-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

.research-note i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-secondary);
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    color: var(--primary-color);
}

/* Related Products */
/* Related Section moved to inline styles in ProductDetail.razor */

/* Lightbox */
.dm-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.lightbox-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.dm-lightbox .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.dm-lightbox .lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover:not(:disabled) {
    background: var(--primary-color);
    color: #000;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-image img {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 12px;
}

.dm-lightbox .lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Responsive - Shop & Product */
@media (max-width: 1200px) {
    .products-grid-shop {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .sidebar-trust {
        grid-column: span 3;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .gallery-main img, .gallery-placeholder {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .shop-hero, .product-hero {
        padding: 4rem 0 2rem;
    }

    .shop-title {
        font-size: 2rem;
    }

    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-trust {
        grid-column: span 1;
    }

    .products-grid-shop {
        grid-template-columns: 1fr;
    }

    .product-name {
        font-size: 1.75rem;
    }

    .price-current, .price-sale {
        font-size: 1.5rem;
    }

    .add-to-cart-section {
        flex-direction: column;
    }

    .product-trust {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: none;
        width: 100%;
        text-align: left;
    }
}

/* ================================================
   DARK MATTER NAVIGATION - Modern Minimal
   ================================================ */

.dm-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(3, 3, 8, 0.7);
    backdrop-filter: blur(30px) saturate(1.8);
    border-bottom: none;
    transition: top 0.3s ease;
    box-shadow: inset 0 -1px 0 rgba(6, 182, 212, 0.1), 0 4px 30px rgba(0, 0, 0, 0.5);
}

.dm-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #06B6D4, #8B5CF6, #EC4899, #F59E0B, #06B6D4);
    background-size: 200% 100%;
    animation: holoLine 4s linear infinite;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3), 0 0 20px rgba(139, 92, 246, 0.2);
}

@keyframes holoLine {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Banner offset for navbar */
.has-banner .dm-nav {
    top: 40px;
}

.dm-nav .container {
    max-width: 1400px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.3));
    transition: filter 0.3s ease;
}

.nav-logo:hover img {
    filter: drop-shadow(0 0 25px rgba(6, 182, 212, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Center Navigation */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06B6D4, #8B5CF6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
    width: 70%;
}

.nav-link-item:hover {
    color: #06B6D4;
    background: transparent;
}

.nav-link-item.active {
    color: #06B6D4;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.nav-link-item i {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
}

.nav-link-item.has-dropdown:hover i {
    transform: rotate(180deg);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    padding-top: 0.75rem;
    z-index: 10000;
}

.nav-link-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 220px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(6, 182, 212, 0.1);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.dropdown-link:hover {
    background: rgba(6, 182, 212, 0.08);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

.dropdown-link:hover .dropdown-icon {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dropdown-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.dropdown-desc {
    color: var(--text-muted);
    font-size: 0.7rem;
}

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

/* Search Box */
.nav-search-wrap {
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 100px;
    padding: 0.5rem 0.85rem;
    transition: all 0.3s ease;
    cursor: text;
}

.search-box:focus-within {
    background: rgba(6, 182, 212, 0.05);
    border-color: #06B6D4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2), inset 0 0 10px rgba(6, 182, 212, 0.05);
}

.search-box i {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.search-box:focus-within i {
    color: var(--primary-color);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    width: 100px;
    transition: width 0.3s ease;
}

.search-box:focus-within input {
    width: 140px;
}

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

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.75rem;
    background: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--dropdown-shadow);
    min-width: 300px;
    z-index: 10001;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.search-item:hover {
    background: var(--bg-card-hover);
}

.search-item-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-item-img i {
    color: var(--primary-color);
    font-size: 1rem;
}

.search-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.search-item-name {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

.search-item-price {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.search-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    background: rgba(6, 182, 212, 0.1);
    border-top: 1px solid var(--border-color);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.search-all:hover {
    background: rgba(6, 182, 212, 0.2);
}

.search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Action Buttons */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
}

.action-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06B6D4;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.15);
}

/* Cart Button */
.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.5), 0 0 8px rgba(239, 68, 68, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-btn {
    background: rgba(6, 182, 212, 0.15);
    color: var(--primary-color);
}

.user-btn:hover {
    background: rgba(6, 182, 212, 0.25);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
    overflow: hidden;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(6, 182, 212, 0.1);
    min-width: 240px;
    max-height: calc(100vh - 100px);
    z-index: 10001;
}

.user-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem;
    background: rgba(6, 182, 212, 0.05);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4;
}

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

.user-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.user-email {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.user-links {
    padding: 0.5rem;
}

.user-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.user-links a:hover {
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary-color);
}

.user-links a i {
    width: 18px;
    text-align: center;
}

.user-links .logout {
    color: #ef4444;
}

.user-links .logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

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

.admin-section-label {
    padding: 0.5rem 1rem 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #06B6D4;
}

/* Sign Up Button */
.btn-signup {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

.btn-signup:hover {
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.4);
    transform: translateY(-1px);
    color: #fff;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: rgba(3, 3, 8, 0.98);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(6, 182, 212, 0.1);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
    transition: background-color 0.3s ease, top 0.3s ease;
}

/* Banner offset for mobile menu */
.has-banner .mobile-menu {
    top: 40px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-accent);
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.mobile-close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.mobile-search {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-accent);
}

.mobile-search form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.mobile-search i {
    color: var(--input-placeholder);
}

.mobile-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--input-text);
    font-size: 0.9rem;
}

.mobile-links {
    flex: 1;
    padding: 1rem 0.75rem;
    overflow-y: auto;
}

.mobile-links a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-links a:hover {
    color: #06B6D4;
    background: rgba(6, 182, 212, 0.05);
    border-left: 2px solid #06B6D4;
}

.mobile-links a i {
    width: 20px;
    text-align: center;
    color: #06B6D4;
}

/* Mobile Admin Section */
.mobile-admin-section {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.03);
}

.mobile-admin-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #06B6D4;
    margin-bottom: 0.75rem;
}

.mobile-admin-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mobile-admin-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-admin-links a:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06B6D4;
}

.mobile-admin-links a i {
    font-size: 0.85rem;
    color: #06B6D4;
    width: 18px;
    text-align: center;
}

.mobile-theme-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
}

.mobile-theme-toggle span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.mobile-theme-toggle .theme-toggle {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

.mobile-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--border-accent);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-account {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-account i {
    color: #06B6D4;
}

.mobile-logout {
    text-align: center;
    padding: 0.75rem;
    color: #ef4444;
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-login,
.mobile-signup {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
}

.mobile-login {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.mobile-signup {
    background: var(--primary-gradient);
    color: var(--text-inverse);
}

/* ================================================
   PAGE HEADER - Shop & Category Pages
   ================================================ */

.page-header-dm {
    position: relative;
    padding: 5.5rem 0 2rem;
    margin-top: 70px;
    background: #030308;
    overflow: hidden;
}

.page-header-dm::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/deep-space.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.page-header-dm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(3, 3, 8, 0.9) 100%);
    z-index: 0;
}

.page-header-dm .header-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.page-header-dm .header-pattern {
    display: none;
}

.page-header-dm .header-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    color: #06B6D4;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.page-header-dm h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.page-header-dm h1 span {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem 2rem;
}

.header-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.header-stats .stat strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06B6D4;
}

.header-stats .stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Admin stat divider - uses .header-stats context */
.header-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Page backgrounds and spacing - Dark Theme */
.shop-content {
    background: var(--bg-primary);
}

.product-content {
    background: linear-gradient(180deg, #030308 0%, #050510 50%, #030308 100%);
    padding-top: 140px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.page-content {
    padding-top: 70px;
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .page-header-dm {
        padding: 3rem 0 1.5rem;
    }

    .page-header-dm h1 {
        font-size: 2rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .page-header-dm {
        padding: 2rem 0 1.25rem;
        margin-top: 70px;
    }

    .page-header-dm .container {
        padding: 0 1rem;
    }

    .page-header-dm h1 {
        font-size: 1.75rem;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .header-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }

    .header-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .header-stats .stat {
        flex: 1 1 auto;
        min-width: 80px;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
    }

    .header-stats .stat strong {
        font-size: 1rem;
    }

    .header-stats .stat span {
        font-size: 0.6rem;
    }

    .header-stats .stat-divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .nav-logo img {
        height: 70px;
    }

    .logo-sub {
        font-size: 0.55rem;
    }

    .action-btn {
        width: 38px;
        height: 38px;
    }

    .page-header-dm {
        padding: 1.5rem 0 1rem;
    }

    .page-header-dm h1 {
        font-size: 1.5rem;
    }

    .header-stats .stat {
        min-width: 70px;
    }

    .header-stats .stat strong {
        font-size: 0.9rem;
    }
}

/* ================================================
   CART PAGE STYLES
   ================================================ */

.cart-content {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

.cart-empty {
    text-align: center;
    padding: 5rem 2rem;
    border-radius: 0;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.cart-empty::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cart-empty .empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cart-empty .empty-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.cart-empty h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

/* Cart Items Section */
.cart-items-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-card {
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
}

.cart-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-card-header i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.btn-clear {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0;
    color: #ef4444;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear:hover {
    background: rgba(239, 68, 68, 0.2);
}

.cart-items {
    padding: 0.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 0;
    transition: background 0.2s;
}

.cart-item:hover {
    background: var(--bg-tertiary);
}

.item-image {
    width: 60px;
    height: 60px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-details h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.item-variant {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.item-price {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.item-quantity {
    display: flex;
    align-items: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
}

.item-quantity .qty-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.item-quantity .qty-btn:hover {
    background: var(--primary-color);
    color: #0a0a12;
}

.item-quantity .qty-value {
    width: 40px;
    text-align: center;
    color: var(--text-primary);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
}

.item-total {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: right;
}

.item-remove {
    width: 36px;
    height: 36px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s;
}

.item-remove:hover {
    background: #ef4444;
    color: #fff;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.continue-shopping:hover {
    color: #06B6D4;
}

/* Order Summary */
.cart-summary-section {
    position: sticky;
    top: 90px;
}

.summary-card {
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.summary-header i {
    color: var(--primary-color);
}

.summary-body {
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.summary-row.total {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.summary-row.total span:last-child {
    color: #06B6D4;
}

.free-shipping {
    color: #22c55e !important;
    font-weight: 600;
}

.shipping-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin: 1rem 0;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 1rem 0;
}

.coupon-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.coupon-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 0.9rem;
}

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

.coupon-input button {
    padding: 0.75rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.coupon-input button:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--border-accent);
    color: var(--primary-color);
}

.btn-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 0;
    color: #0a0a10;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.secure-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    text-align: center;
}

.trust-badge i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.trust-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Cart Responsive */
@media (max-width: 991px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary-section {
        position: static;
    }
}

@media (max-width: 767px) {
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 0.75rem;
    }

    .item-price,
    .item-quantity,
    .item-total {
        grid-column: 2;
    }

    .item-remove {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }

    .cart-item {
        position: relative;
        padding-right: 3rem;
    }
}

/* ============================================
   CHECKOUT PAGE STYLES - Dark Theme
   ============================================ */

.checkout-page {
    background: var(--bg-primary);
    min-height: 100vh;
    padding-top: 0;
    width: 100%;
}

.checkout-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 3rem;
}

.checkout-empty {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    max-width: 500px;
    margin: 3rem auto;
    position: relative;
}

.checkout-empty::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.checkout-empty .empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.checkout-empty .empty-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.checkout-empty h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.checkout-empty p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.checkout-empty .btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    border: none;
    border-radius: 0;
    color: #0a0a12;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.checkout-empty .btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

/* Checkout Form */
.checkout-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
}

.checkout-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    margin-bottom: 2rem;
}

.checkout-logo .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--primary-color);
}

.checkout-logo .logo-sub {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
}

.checkout-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.checkout-breadcrumb a:hover {
    color: var(--primary-color);
}

.checkout-breadcrumb i {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.checkout-breadcrumb .active {
    color: var(--primary-color);
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

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

.section-header .login-link {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.section-header .login-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.section-header .login-link a:hover {
    text-decoration: underline;
}

/* Form Fields */
.form-field {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.field-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

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

.field-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.field-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238B5CF6' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* Shipping Options */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shipping-option:hover {
    border-color: var(--border-accent);
}

.shipping-option.selected {
    border-color: var(--primary-color);
    background: rgba(6, 182, 212, 0.05);
}

.shipping-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.shipping-option .option-content {
    flex: 1;
}

.shipping-option .option-name {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.shipping-option .option-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.shipping-option .option-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

/* Payment Section */
.payment-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.payment-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(6, 182, 212, 0.1);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 500;
}

.payment-header .card-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-header .card-icons i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.payment-body {
    padding: 1.5rem 1.25rem;
}

/* Submit Button */
.btn-submit-order {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 0;
    color: #0a0a12;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-submit-order:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.btn-submit-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Order Summary Sidebar */
.checkout-summary {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: sticky;
    top: 90px;
    width: 100%;
    min-width: 100%;
}

.checkout-summary h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-items {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: visible;
    margin-bottom: 1.5rem;
    padding-top: 10px;
    padding-right: 10px;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 64px;
    height: 64px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    position: relative;
    flex-shrink: 0;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.checkout-item-image .item-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
    z-index: 10;
}

.checkout-item-details {
    flex: 1;
    min-width: 0;
}

.checkout-item-details h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.checkout-item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Summary Totals */
.checkout-totals {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.checkout-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.checkout-row.total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.checkout-row.total span:last-child {
    color: var(--primary-color);
}

/* Checkout Responsive */
@media (max-width: 991px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 576px) {
    .checkout-container {
        padding: 1rem;
        width: 100%;
    }

    .checkout-form {
        padding: 1.25rem;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */

.admin-page {
    background: linear-gradient(180deg, #1a1a32 0%, #1e1e3a 100%);
    min-height: 100vh;
    padding: 2rem;
    padding-top: 100px;
}

.admin-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.admin-header p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0 0 0;
}

.header-with-back {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.back-link:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06B6D4;
    text-decoration: none;
}

/* Admin Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.2);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 1.5rem;
}

.stat-icon.orders {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: #06B6D4;
}

.stat-icon.revenue {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: #22c55e;
}

.stat-icon.users {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
    color: #a855f7;
}

.stat-icon.products {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: #06B6D4;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

/* Admin dashboard stat styles */
.stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quick-stat-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.quick-stat-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.quick-stat-row .value {
    font-weight: 600;
    color: #fff;
}

/* Quick Actions */
.admin-section {
    margin-bottom: 2rem;
}

.admin-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.action-card:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06B6D4;
    transform: translateY(-2px);
    text-decoration: none;
}

.action-card i {
    font-size: 1.5rem;
}

.action-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Admin Filters */
.admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
}

.filter-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.filter-group select option {
    background: #1a1a2e;
    color: #fff;
}

.btn-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border: none;
    border-radius: 8px;
    color: #0a0a10;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-filter:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

/* Admin Table */
.admin-table-container {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table td {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.admin-table .text-muted {
    color: rgba(255, 255, 255, 0.5);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.status-processing {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
}

.status-shipped {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
}

.status-completed {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.status-refunded {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
}

.status-label-ready {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-label-printed {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

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

.btn-print {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.btn-print:hover {
    background: rgba(34, 197, 94, 0.25);
}

.status-active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-inactive {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* Role Badges */
.role-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.role-admin {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
}

.role-user {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-action:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06B6D4;
    text-decoration: none;
}

.btn-action.btn-warning:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.btn-action.btn-success:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.btn-action.btn-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Admin Pagination */
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
}

.admin-pagination span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06B6D4;
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Admin Loading */
.admin-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.admin-loading .spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #06B6D4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.admin-loading p {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Admin Empty State */
.admin-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.admin-empty i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.admin-empty h3 {
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.admin-empty p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1.5rem 0;
}

/* Detail Cards Grid */
.order-detail-grid,
.user-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.detail-card.full-width {
    grid-column: 1 / -1;
}

.detail-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-card h3 i {
    color: #06B6D4;
}

.detail-card.affiliate-card {
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(236, 72, 153, 0.05);
}

.detail-card.affiliate-card h3 i {
    color: #ec4899;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.detail-row .value {
    color: #fff;
    font-size: 0.9rem;
}

.detail-row .value code {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Address Block */
.address-block {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.address-block p {
    margin: 0;
}

/* Status Update Form */
.status-update-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-update-form select,
.status-update-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    resize: none;
}

.status-update-form select option {
    background: #1a1a2e;
    color: #fff;
}

.status-update-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Product Cell */
.product-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-cell img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

/* User Cell */
.user-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 10px;
    color: #06B6D4;
    font-weight: 600;
    font-size: 0.9rem;
}

/* User Profile Card */
.user-profile-card {
    grid-column: 1 / -1;
}

.user-profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.large-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 20px;
    color: #06B6D4;
    font-weight: 700;
    font-size: 1.75rem;
}

.user-profile-info h2 {
    color: #fff;
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
}

.user-profile-info p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 0.75rem 0;
}

.user-badges {
    display: flex;
    gap: 0.5rem;
}

/* Stats Mini Grid */
.stats-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-align: center;
}

.stat-mini-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06B6D4;
}

.stat-mini-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* Action List */
.action-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-action-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-action-full:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06B6D4;
    text-decoration: none;
}

.btn-action-full.btn-warning:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.btn-action-full.btn-success:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

/* Edit Form */
.edit-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-group .form-control {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff !important;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group .form-control:focus {
    outline: none;
    border-color: rgba(6, 182, 212, 0.5);
}

.form-group select option,
.form-group .form-control option {
    background: #1a1a2e;
    color: #fff;
}

select.form-control {
    color: #fff !important;
}

select.form-control option {
    background: #1a1a2e;
    color: #fff;
}

.form-group small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #06B6D4;
}

/* Order Summary Card */
.order-summary-card {
    max-width: 400px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row.discount {
    color: #22c55e;
}

.summary-row.total {
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.notes-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    margin: 0;
}

/* Price Modifiers */
.price-modifier {
    font-weight: 600;
}

.price-modifier.positive {
    color: #22c55e;
}

.price-modifier.negative {
    color: #ef4444;
}

.price-modifier.neutral {
    color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10100;
    padding: 1rem;
    overflow-y: auto;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-body {
    overflow-y: auto;
    flex: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    color: #fff;
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border: none;
    border-radius: 10px;
    color: #0a0a10;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    text-decoration: none;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #0a0a10;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #dc2626;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-danger:hover {
    background: #b91c1c;
    text-decoration: none;
}

.btn-danger:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f59e0b;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-warning:hover {
    background: #d97706;
    text-decoration: none;
}

.btn-warning:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.order-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Refund Modal Styles */
.refund-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.refund-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.refund-summary .summary-item:last-child {
    border-bottom: none;
}

.refund-summary .label {
    color: #a0a0b0;
}

.refund-summary .value {
    color: #fff;
    font-weight: 600;
}

.refund-summary .value.refunded {
    color: #f59e0b;
}

.refund-summary .value.available {
    color: #22c55e;
}

.refund-type-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.refund-type-toggle button {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: #a0a0b0;
    cursor: pointer;
    transition: all 0.2s;
}

.refund-type-toggle button.active {
    background: #06B6D4;
    color: white;
}

.refund-type-toggle button:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

.modal-body .form-field {
    margin-bottom: 1.25rem;
}

.modal-body .form-field label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal-body .form-field label .required {
    color: #ef4444;
}

.modal-body .form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    resize: vertical;
}

.modal-body .form-field textarea:focus {
    outline: none;
    border-color: #06B6D4;
}

.modal-body .amount-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.modal-body .amount-input .currency {
    padding: 0.75rem 1rem;
    color: #a0a0b0;
    background: rgba(255, 255, 255, 0.05);
}

.modal-body .amount-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
}

.modal-body .amount-input input:focus {
    outline: none;
}

.modal-body .amount-input input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-body .field-error {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.modal-body .error-message,
.modal-body .success-message {
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.modal-body .error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.modal-body .success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-body {
    padding: 1.5rem;
}

/* Text Utilities */
.text-success {
    color: #22c55e !important;
}

.text-danger {
    color: #ef4444 !important;
}

.text-warning {
    color: #fbbf24 !important;
}

.text-info {
    color: #06B6D4 !important;
}

.text-primary {
    color: #06B6D4 !important;
}

/* Admin Responsive */
@media (max-width: 991px) {
    .admin-page {
        padding: 1rem;
        padding-top: 90px;
    }

    .order-detail-grid,
    .user-detail-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-filters {
        flex-direction: column;
    }

    .filter-group {
        min-width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
    }

    .user-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .user-badges {
        justify-content: center;
    }
}

/* Product Admin Specific Styles */
.product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-thumb-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.25rem;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-info strong {
    color: #fff;
}

.product-info small {
    display: block;
}

.product-info .description-preview {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.variant-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.order-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.featured-badge i {
    font-size: 0.65rem;
}

.results-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding: 0.5rem;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    color: #fbbf24;
    margin-top: 1rem;
}

.warning-box i {
    font-size: 1.25rem;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #ef4444;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.5);
}

/* Page number buttons */
.page-btn.active {
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border-color: #06B6D4;
    color: #0a0a10;
}

/* Admin code elements */
.admin-table code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Quick Setup Card */
.quick-setup-card {
    padding: 1.25rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.quick-setup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #06B6D4;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quick-setup-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.setup-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.setup-badge.exists {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.setup-badge.missing {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.setup-badge i {
    font-size: 0.75rem;
}

/* URL Cell */
.url-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.external-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.external-link:hover {
    background: rgba(6, 182, 212, 0.1);
    color: #06B6D4;
    text-decoration: none;
}

.external-link i {
    font-size: 0.75rem;
}

/* ============================================
   DARK MATTER RESEARCH - MODERN ENHANCEMENTS 2.0
   Clean Dark Theme with Purple Accents
   ============================================ */

/* Enhanced Root Variables - WHITE THEME */
:root {
    --glow-purple: 0 4px 20px rgba(6, 182, 212, 0.2);
    --glow-purple-intense: 0 8px 30px rgba(6, 182, 212, 0.25);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Enhanced Typography */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    letter-spacing: -0.01em;
}

/* Selection Styling */
::selection {
    background: rgba(6, 182, 212, 0.3);
    color: #fff;
}

/* Enhanced Scrollbar - Light Theme */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #F3F4F6;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.6), rgba(6, 182, 212, 0.4));
    border-radius: 5px;
    border: 2px solid #F3F4F6;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.8), rgba(6, 182, 212, 0.6));
}

/* ==========================================
   ENHANCED NAVIGATION - Light Theme
   ========================================== */

/* Remove dark theme overrides - using light nav styles above */

/* Cart Button Pulse */
@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==========================================
   ENHANCED HERO SECTION - Light Theme
   ========================================== */

/* Hero enhancements for light theme */
.hero-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s var(--transition-smooth);
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-purple);
}

/* ==========================================
   ENHANCED FEATURES BAR - Light Theme
   ========================================== */

.feature-item:hover .feature-icon {
    background: #06B6D4;
    border-color: transparent;
    color: #FFFFFF;
    transform: scale(1.05);
}

/* ==========================================
   ENHANCED CATEGORY CARDS - Light Theme
   ========================================== */


/* ==========================================
   ENHANCED PRODUCT CARDS - Light Theme
   ========================================== */

/* Enhanced product card hover effects for light theme */
.product-card-dm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #06B6D4, transparent);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.product-card-dm:hover::before {
    opacity: 1;
}

/* ==========================================
   ENHANCED WHY SECTION - Light Theme
   ========================================== */

.why-icon {
    transition: all 0.4s var(--transition-bounce);
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: var(--glow-purple);
}

.visual-card {
    transition: all 0.5s var(--transition-smooth);
}

.visual-card:hover {
    transform: translateY(-10px);
    border-color: #06B6D4;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   ENHANCED CTA SECTION - Light Theme
   ========================================== */

/* CTA section uses dark background by design for contrast */

/* btn-dm-light defined earlier in file */

/* ==========================================
   ENHANCED FOOTER - Light Theme
   ========================================== */

/* Footer uses dark background by design for contrast */

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.3s var(--transition-smooth);
}

.social-link:hover {
    background: #06B6D4;
    border-color: #06B6D4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
    color: #FFFFFF;
}

/* ==========================================
   ENHANCED FORMS & INPUTS - Light Theme
   ========================================== */

.field-input,
.form-control {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--input-text);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s var(--transition-smooth);
}

.field-input:focus,
.form-control:focus {
    background: var(--input-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
    outline: none;
}

.field-input::placeholder,
.form-control::placeholder {
    color: var(--input-placeholder);
}

/* ==========================================
   ENHANCED LOADING STATES
   ========================================== */

.dm-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(6, 182, 212, 0.1);
    border-top-color: #06B6D4;
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* Loading Shimmer Effect - Light Theme */
.loading-shimmer {
    background: linear-gradient(
        90deg,
        #F3F4F6 0%,
        #E5E7EB 50%,
        #F3F4F6 100%
    );
    background-size: 200% 100%;
    animation: shimmerLoad 1.5s infinite;
}

@keyframes shimmerLoad {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================
   RESPONSIVE ENHANCEMENTS
   ========================================== */

@media (max-width: 1199px) {
    .category-cards,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .feature-item:nth-child(2n) {
        border-right: none;
    }

    .feature-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-visual {
        order: -1;
    }
}

@media (max-width: 767px) {
    .category-cards,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

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

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .dm-title {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   MICRO-INTERACTIONS
   ========================================== */

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(6, 182, 212, 0.3) 10%, transparent 10%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}

.ripple:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* Hover Glow Effect */
.glow-hover {
    transition: box-shadow 0.4s var(--transition-smooth);
}

.glow-hover:hover {
    box-shadow: var(--glow-purple);
}

/* Float Animation */
.float-animation {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pulse Animation */
.pulse-animation {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(6, 182, 212, 0);
    }
}

/* Scale on Hover */
.scale-hover {
    transition: transform 0.3s var(--transition-smooth);
}

.scale-hover:hover {
    transform: scale(1.05);
}

/* Tilt Effect */
.tilt-hover {
    transition: transform 0.3s var(--transition-smooth);
}

.tilt-hover:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

/* ==========================================
   ENHANCED SHOP PAGE STYLES - Dark Theme
   ========================================== */

/* page-header-dm defined above - using consistent padding */

/* header-glow and header-pattern overridden by cosmic background above */

.page-header-dm h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.page-header-dm h1 span {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.header-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-stats .stat {
    text-align: center;
}

.header-stats .stat strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.header-stats .stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-color), transparent);
}

/* Enhanced Shop Toolbar - Dark Theme */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
}

.toolbar-actions {
    display: flex;
    gap: 1rem;
}

/* Enhanced Product Grid on Shop Page */
.shop-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Enhanced Pagination - Light Theme */
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

.pagination-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--border-accent);
    color: var(--primary-color);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    color: #0a0a10;
    font-weight: 600;
}

/* ==========================================
   ENHANCED PRODUCT DETAIL PAGE - Dark Theme
   ========================================== */

.product-page {
    background: var(--bg-primary);
    min-height: 100vh;
    padding-top: 90px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 0 5rem;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    aspect-ratio: 1;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.main-image:hover img {
    transform: scale(1.05);
}

.gallery-thumbs {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.thumb-item:hover,
.thumb-item.active {
    border-color: #06B6D4;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info-section {
    padding: 2rem 0;
}

.product-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.product-title-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.product-price-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.product-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Variant Selector - Dark Theme */
.variant-selector {
    margin-bottom: 2rem;
}

.variant-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.variant-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-secondary);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.variant-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.variant-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #0a0a12;
}

/* Quantity Selector - Dark Theme */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
}

.qty-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: #0a0a12;
}

.qty-value {
    width: 60px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-primary);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

/* Add to Cart Button */
.btn-add-to-cart {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 0;
    color: #0a0a10;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
    margin-bottom: 2rem;
}

.btn-add-to-cart:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.4);
}

/* Product Features - Dark Theme */
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
}

.feature-item-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
}

.feature-item-box i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-item-box span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================
   ENHANCED CART PAGE STYLES - Dark Theme
   ========================================== */

.cart-page {
    min-height: 100vh;
    padding-top: 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    padding: 0;
}

.cart-items-section {
    border-radius: 0;
    padding: 2rem;
}

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

.cart-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.cart-item-info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

.cart-item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

/* Cart Summary - Dark Theme */
.cart-summary-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-summary {
    border-radius: 0;
    padding: 2rem;
}

.cart-summary h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.summary-row.total {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-primary);
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.summary-row.total span:last-child {
    color: var(--primary-color);
}

.btn-checkout {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 0;
    color: #0a0a10;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    margin-top: 1.5rem;
    text-decoration: none;
}

.btn-checkout:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
    color: #0a0a10;
}

/* Responsive for Shop/Product Pages */
@media (max-width: 1199px) {
    .shop-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .sidebar-trust {
        grid-column: span 2;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-gallery {
        position: static;
    }

    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary-section {
        position: static;
    }
}

@media (max-width: 767px) {
    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-trust {
        grid-column: span 1;
    }

    .shop-products {
        grid-template-columns: 1fr;
    }

    .page-header-dm h1 {
        font-size: 2.5rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .header-stats .stat-divider {
        width: 60px;
        height: 1px;
    }

    .product-title-main {
        font-size: 2rem;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .cart-item-price,
    .cart-item-qty,
    .cart-item-total {
        grid-column: 2;
    }
}

/* =====================================================
   SHIPPING LABEL STYLES
   ===================================================== */

.label-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.label-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.label-status.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.label-status.voided {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.label-details {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.label-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tracking-link {
    color: #06B6D4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.tracking-link:hover {
    text-decoration: underline;
}

.tracking-link i {
    font-size: 0.8em;
}

.no-label {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-label p {
    margin-bottom: 1rem;
}

/* Rates Selection */
.rates-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rates-intro {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.rates-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rate-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.rate-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.rate-option.selected {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
}

.rate-option input {
    accent-color: #06B6D4;
}

.rate-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rate-carrier {
    font-weight: 600;
    color: #fff;
}

.rate-service {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.rate-days {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.rate-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: #06B6D4;
    letter-spacing: 0.5px;
}

.rates-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.9rem;
}

/* =====================================================
   ENHANCED MOBILE RESPONSIVE - SHOP & PRODUCT PAGES
   ===================================================== */

/* Shop Page Header Mobile */
@media (max-width: 576px) {
    .page-header-dm {
        padding: 1.25rem 0 1rem;
        margin-top: 70px;
    }

    .page-header-dm .container {
        padding: 0 0.75rem;
    }

    .page-header-dm h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .header-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }

    .header-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
        margin-top: 1rem;
    }

    .header-stats .stat {
        padding: 0.5rem;
        min-width: 70px;
    }

    .header-stats .stat strong {
        font-size: 1rem;
    }

    .header-stats .stat span {
        font-size: 0.65rem;
    }

    .header-stats .stat-divider {
        display: none;
    }

    /* Shop Content Mobile */
    .shop-content {
        padding: 1rem 0 2rem;
    }

    .shop-content .container {
        padding: 0 0.75rem;
    }

    .shop-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Mobile Sidebar - Collapsible Style */
    .shop-sidebar {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .sidebar-section {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }

    .sidebar-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .category-list {
        gap: 0.35rem;
    }

    .category-item {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .category-count {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }

    .filter-options {
        gap: 0.5rem;
    }

    .filter-option {
        font-size: 0.85rem;
    }

    .filter-check {
        width: 18px;
        height: 18px;
    }

    .sidebar-trust {
        padding: 1rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .sidebar-trust .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
    }

    .sidebar-trust .trust-item i {
        font-size: 1rem;
    }

    /* Shop Toolbar Mobile */
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .results-count {
        font-size: 0.85rem;
        text-align: center;
    }

    .sort-select {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 16px;
    }

    /* Products Grid Mobile */
    .products-grid-shop {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card-dm {
        border-radius: 0;
    }

    .product-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        top: 0.5rem;
        left: 0.5rem;
    }

    .product-image-wrap {
        height: 140px;
    }

    .product-placeholder {
        font-size: 2.5rem;
    }

    .product-overlay {
        display: none;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-category {
        font-size: 0.6rem;
        margin-bottom: 0.25rem;
    }

    .product-info h4 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }

    .product-info p {
        display: none;
    }

    .product-footer {
        margin-top: 0.5rem;
    }

    .product-price {
        font-size: 0.9rem;
    }

    .btn-add-cart {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    /* Pagination Mobile */
    .shop-pagination {
        gap: 0.35rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    /* Shop Empty/Loading States */
    .shop-loading, .shop-empty {
        padding: 3rem 1rem;
    }

    .shop-empty h3 {
        font-size: 1.25rem;
    }

    .empty-icon {
        width: 80px;
        height: 80px;
    }

    .empty-icon i {
        font-size: 2rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .products-grid-shop {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .product-image-wrap {
        height: 180px;
    }

    .product-info h4 {
        font-size: 0.95rem;
    }

    .product-info p {
        display: block;
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }

    .header-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-stats .stat {
        width: 100%;
    }
}

/* =====================================================
   PRODUCT DETAIL PAGE - MOBILE RESPONSIVE
   ===================================================== */

@media (max-width: 576px) {
    .product-content {
        padding: 1rem 0 2rem;
    }

    .product-content .container {
        padding: 0 0.75rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    /* Product Gallery Mobile */
    .product-gallery {
        position: static;
    }

    .gallery-main {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .gallery-main img {
        height: 280px;
    }

    .gallery-placeholder {
        height: 280px;
        font-size: 4rem;
    }

    .gallery-badge {
        top: 0.75rem;
        left: 0.75rem;
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }

    .gallery-zoom {
        width: 36px;
        height: 36px;
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .thumb img {
        padding: 0.25rem;
    }

    /* Product Details Mobile */
    .product-details {
        padding: 0;
    }

    .product-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .meta-category {
        padding: 0.3rem 0.75rem;
        font-size: 0.75rem;
    }

    .meta-stock {
        font-size: 0.8rem;
    }

    .product-name {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .product-price-box {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .price-current, .price-sale {
        font-size: 1.75rem;
    }

    .price-original {
        font-size: 1rem;
    }

    .price-save {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .product-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* Variant Selector Mobile */
    .variant-selector {
        margin-bottom: 1.5rem;
    }

    .variant-selector label {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .variant-options {
        gap: 0.5rem;
    }

    .variant-btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: calc(50% - 0.25rem);
    }

    .variant-btn small {
        font-size: 0.6rem;
    }

    /* Product Specs Mobile */
    .product-specs {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .product-specs h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .spec-label {
        font-size: 0.65rem;
    }

    .spec-value {
        font-size: 0.85rem;
    }

    /* Add to Cart Section Mobile */
    .add-to-cart-section {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .qty-btn {
        width: 50px;
        height: 48px;
    }

    .qty-value {
        width: 60px;
        font-size: 1.1rem;
    }

    .btn-add-to-cart {
        width: 100%;
        height: 50px;
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Product Trust Mobile */
    .product-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .trust-feature {
        padding: 0.75rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }

    .trust-feature i {
        font-size: 1.1rem;
    }

    .trust-feature strong {
        font-size: 0.75rem;
    }

    .trust-feature span {
        font-size: 0.65rem;
    }

    /* Product Tabs Mobile */
    .product-tabs {
        margin-bottom: 2rem;
    }

    .tabs-header {
        flex-direction: column;
        background: var(--bg-secondary);
    }

    .tab-btn {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .tab-btn:last-child {
        border-bottom: none;
    }

    .tab-btn.active::after {
        width: 3px;
        height: 100%;
        right: auto;
        left: 0;
        bottom: auto;
        top: 0;
    }

    .tabs-content {
        padding: 1.25rem;
    }

    .description-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .info-list li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .research-note {
        font-size: 0.8rem;
        padding: 1rem;
        margin-top: 1rem;
    }

    /* Lightbox Mobile */
    .dm-lightbox {
        padding: 0.5rem;
    }

    .lightbox-inner {
        max-width: 100%;
        max-height: 100%;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
    }

    .lightbox-nav {
        width: 36px;
        height: 36px;
    }

    .lightbox-nav.prev {
        left: 0.5rem;
    }

    .lightbox-nav.next {
        right: 0.5rem;
    }

    .lightbox-image img {
        max-height: 70vh;
    }

    .lightbox-counter {
        bottom: 0.5rem;
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }
}

/* Product Detail - Extra Small */
@media (max-width: 380px) {
    .product-name {
        font-size: 1.5rem;
    }

    .price-current, .price-sale {
        font-size: 1.5rem;
    }

    .variant-btn {
        min-width: 100%;
    }

    .product-trust {
        grid-template-columns: 1fr;
    }

    .trust-feature {
        flex-direction: row;
        text-align: left;
    }

    .gallery-main img {
        height: 240px;
    }

    .gallery-placeholder {
        height: 240px;
    }
}

/* =====================================================
   HOMEPAGE MOBILE FIX - SECTION HEADERS
   ===================================================== */

@media (max-width: 768px) {
    /* Fix section headers - remove clamp and letter-spacing that cause overlap */
    .section-header {
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }

    .section-tag {
        font-size: 0.55rem;
        padding: 0.3rem 0.6rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 1.4rem !important;
        letter-spacing: 1px !important;
        line-height: 1.2 !important;
        margin-bottom: 0.4rem !important;
    }

    .section-desc {
        font-size: 0.75rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }

    /* Hero section */
    .dm-hero {
        padding: 0 0 15px !important;
        padding-top: 80px !important;
        min-height: auto !important;
    }

    .hero-split {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .hero-text {
        text-align: center !important;
        order: 2 !important;
    }

    .dm-title {
        font-size: 2rem !important;
        letter-spacing: 1px !important;
        line-height: 1 !important;
    }

    .title-line,
    .title-highlight {
        display: block !important;
    }

    .dm-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .hero-actions {
        flex-direction: row !important;
        gap: 0.5rem !important;
        justify-content: center !important;
    }

    .hero-actions .btn-dm-primary,
    .hero-actions .btn-dm-ghost {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }

    /* Hero Image/GIF */
    .hero-image {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 200px !important;
        order: 1 !important;
    }

    .hero-gif {
        height: 200px !important;
        max-height: 200px !important;
        width: auto !important;
    }

    .bottle-shadow,
    .bottle-glow,
    .bottle-particles {
        display: none !important;
    }

    /* Features bar */
    .features-bar {
        padding: 0.75rem 0 !important;
    }

    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
    }

    /* Trust Strip Mobile */
    .trust-strip {
        padding: 0.75rem 0 !important;
    }

    .trust-items {
        gap: 1rem !important;
    }

    .trust-item {
        font-size: 0.7rem !important;
    }

    .trust-item i {
        font-size: 0.8rem !important;
    }

    /* Categories Mobile */
    .categories-section {
        padding: 2rem 0 !important;
    }

    .categories-header h2 {
        font-size: 1.5rem !important;
    }

    .category-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .category-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem 0.75rem !important;
        gap: 0.5rem !important;
    }

    .category-card .card-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
        border-radius: 10px !important;
    }

    .category-card .card-info {
        flex-direction: column !important;
    }

    .category-card h3 {
        font-size: 0.75rem !important;
    }

    .category-card .card-arrow {
        display: none !important;
    }

    /* Products section */
    .products-section {
        padding: 1.5rem 0 !important;
    }

    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    /* Products section mobile */
    .products-section {
        padding: 2.5rem 0 !important;
    }

    .products-header {
        margin-bottom: 1.5rem !important;
    }

    .products-header h2 {
        font-size: 1.5rem !important;
    }

    .view-all-link {
        font-size: 0.8rem !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .product-card .product-image {
        aspect-ratio: 1 !important;
    }

    .product-card .product-details {
        padding: 0.75rem !important;
    }

    .product-card .product-category {
        font-size: 0.6rem !important;
    }

    .product-card h4 {
        font-size: 0.85rem !important;
    }

    .product-card .product-price {
        font-size: 1rem !important;
    }

    /* Why section mobile */
    .why-section {
        padding: 2.5rem 0 !important;
    }

    .why-features {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .why-feature .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }

    .why-feature h4 {
        font-size: 0.95rem !important;
    }

    .why-feature p {
        font-size: 0.85rem !important;
    }
}

/* =====================================================
   MASTER MOBILE RESPONSIVE FIX - FINAL OVERRIDE
   This section overrides all previous mobile styles
   ===================================================== */

@media (max-width: 768px) {
    /* ===== SECTION HEADERS ===== */
    .section-header {
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .section-tag {
        display: inline-block !important;
        font-size: 0.65rem !important;
        padding: 0.4rem 0.85rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 0.75rem !important;
        border-width: 1px !important;
    }

    .section-title {
        font-size: 1.75rem !important;
        letter-spacing: 1.5px !important;
        line-height: 1.15 !important;
        margin-bottom: 0.5rem !important;
    }

    .section-desc {
        font-size: 0.85rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }

    /* ===== PRODUCT CARDS ===== */
    .products-grid,
    .products-grid-shop {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .product-card-dm {
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .product-badge {
        font-size: 0.6rem !important;
        padding: 0.25rem 0.5rem !important;
        top: 8px !important;
        left: 8px !important;
        letter-spacing: 0.5px !important;
    }

    .product-image-wrap {
        height: 150px !important;
        aspect-ratio: auto !important;
        background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%) !important;
    }

    .product-image-wrap img {
        padding: 1rem !important;
        filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2)) !important;
    }

    .product-placeholder {
        font-size: 2.5rem !important;
    }

    .product-overlay {
        display: none !important;
    }

    .product-info {
        padding: 0.875rem !important;
        text-align: center !important;
    }

    .product-category {
        font-size: 0.6rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 0.35rem !important;
    }

    .product-info h4 {
        font-size: 0.95rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.25rem !important;
        letter-spacing: 1px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .product-info > p {
        display: none !important;
    }

    .product-footer {
        margin-top: 0.5rem !important;
        padding-top: 0.5rem !important;
        gap: 0.5rem !important;
    }

    .product-price {
        font-size: 1.1rem !important;
        letter-spacing: 0.5px !important;
    }

    .btn-add-cart {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.85rem !important;
        border-width: 2px !important;
    }

    /* ===== HERO SECTION ===== */
    .dm-hero {
        padding: 80px 0 2.5rem !important;
        min-height: auto !important;
    }

    .hero-split {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 2rem !important;
    }

    .hero-text {
        text-align: center !important;
        padding: 0 !important;
    }

    .hero-tag {
        font-size: 0.65rem !important;
        padding: 0.4rem 0.85rem !important;
        letter-spacing: 2px !important;
    }

    .dm-title {
        font-size: 2.25rem !important;
        letter-spacing: 2px !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }

    .dm-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
    }

    .hero-actions {
        flex-direction: row !important;
        gap: 0.5rem !important;
        justify-content: center !important;
    }

    .hero-actions .btn-dm-primary,
    .hero-actions .btn-dm-ghost {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .hero-badge {
        flex-direction: column !important;
        padding: 0.6rem 0.4rem !important;
        font-size: 0.6rem !important;
        gap: 0.3rem !important;
        text-align: center !important;
        background: var(--bg-card) !important;
        border-radius: 8px !important;
        border: 1px solid var(--border-color) !important;
    }

    .hero-badge i {
        font-size: 1rem !important;
    }

    /* Hero Image/Bottle */
    .hero-image {
        display: flex !important;
        justify-content: center !important;
        min-height: auto !important;
    }

    .bottle-container {
        width: 160px !important;
        max-width: 160px !important;
    }

    .bottle-container img {
        max-height: 180px !important;
    }

    .hero-gif {
        height: 280px !important;
        max-height: 280px !important;
        width: auto !important;
    }

    .bottle-shadow,
    .bottle-glow,
    .bottle-particles {
        display: none !important;
    }

    /* ===== TRUST STRIP ===== */
    .trust-strip {
        padding: 1rem 0 !important;
    }

    .trust-items {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem 1rem !important;
        justify-items: center !important;
    }

    .trust-item {
        font-size: 0.8rem !important;
    }

    .trust-item i {
        font-size: 0.9rem !important;
    }

    /* ===== CATEGORIES SECTION ===== */
    .categories-section {
        padding: 2.5rem 0 !important;
    }

    .categories-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .category-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .category-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem 0.75rem !important;
        gap: 0.5rem !important;
    }

    .category-card .card-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.15rem !important;
        border-radius: 10px !important;
    }

    .category-card .card-info {
        flex-direction: column !important;
    }

    .category-card h3 {
        font-size: 0.8rem !important;
    }

    .category-card .card-arrow {
        display: none !important;
    }

    /* ===== PRODUCTS SECTION ===== */
    .products-section {
        padding: 2.5rem 0 !important;
    }

    .products-section .text-center.mt-5 {
        margin-top: 1.5rem !important;
    }

    .btn-dm-outline {
        padding: 0.85rem 1.75rem !important;
        font-size: 1rem !important;
    }

    /* ===== WHY SECTION ===== */
    .why-section {
        padding: 2.5rem 0 !important;
    }

    .why-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .why-content {
        order: 1 !important;
    }

    /* Why section modern */
    .why-features {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .why-feature .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }

    .why-feature h4 {
        font-size: 0.95rem !important;
    }

    .why-feature p {
        font-size: 0.85rem !important;
    }

    /* ===== FOOTER ===== */
    .dm-footer {
        padding: 2.5rem 0 1.5rem !important;
    }

    .footer-top {
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .footer-logo img {
        height: 70px !important;
    }

    .footer-brand p {
        font-size: 0.85rem !important;
    }

    .footer-links {
        gap: 1.5rem !important;
    }

    .link-group h6 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    .link-group a {
        font-size: 0.85rem !important;
    }

    .footer-bottom {
        padding-top: 1.5rem !important;
    }

    .footer-bottom p {
        font-size: 0.8rem !important;
    }
}

/* ===== SMALL PHONES (480px and below) ===== */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem !important;
    }

    .dm-title {
        font-size: 1.9rem !important;
    }

    .products-grid,
    .products-grid-shop {
        gap: 10px !important;
    }

    .product-image-wrap {
        height: 130px !important;
    }

    .product-info {
        padding: 0.75rem !important;
    }

    .product-info h4 {
        font-size: 0.85rem !important;
    }

    .product-price {
        font-size: 1rem !important;
    }

    .btn-add-cart {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.75rem !important;
    }

    .hero-badge {
        padding: 0.5rem 0.3rem !important;
        font-size: 0.55rem !important;
    }

    .feature-item {
        padding: 0.75rem 0.5rem !important;
    }

    .feature-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .feature-text strong {
        font-size: 0.7rem !important;
    }

    .feature-text span {
        font-size: 0.55rem !important;
    }
}

/* ===== VERY SMALL PHONES (380px and below) ===== */
@media (max-width: 380px) {
    .products-grid,
    .products-grid-shop {
        grid-template-columns: 1fr !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    .product-image-wrap {
        height: 200px !important;
    }

    .product-info h4 {
        font-size: 1rem !important;
    }

    .product-info > p {
        display: block !important;
        font-size: 0.8rem !important;
        -webkit-line-clamp: 2 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        margin-bottom: 0.5rem !important;
    }
}

/* ==========================================
   LIGHT THEME COMPONENT OVERRIDES
   Fix hardcoded dark theme colors
   ========================================== */

[data-theme="light"] {
    /* Admin/Account Sections */
    .admin-header h1,
    .stat-card .stat-value,
    .quick-stat-card h3,
    .quick-stat-row .value,
    .admin-card h2,
    .admin-card h3,
    .order-card h3,
    .address-card h4 {
        color: var(--text-primary);
    }

    .admin-header p,
    .stat-card .stat-label,
    .quick-stat-row,
    .order-meta,
    .address-card p {
        color: var(--text-secondary);
    }

    /* Cards with rgba backgrounds */
    .stat-card,
    .quick-stat-card,
    .admin-card,
    .order-card,
    .address-card,
    .back-link,
    .account-card,
    .section-card,
    .data-card,
    .info-card {
        background: var(--bg-card);
        border-color: var(--border-color);
    }

    .stat-card:hover,
    .quick-stat-card:hover,
    .admin-card:hover,
    .order-card:hover {
        border-color: var(--primary-color);
    }

    .back-link {
        color: var(--text-secondary);
    }

    .back-link:hover {
        background: rgba(6, 182, 212, 0.1);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    /* Borders in cards */
    .quick-stat-card h3,
    .admin-card-header,
    .order-header {
        border-bottom-color: var(--border-color);
    }

    /* Footer adjustments */
    .footer-link,
    .footer-text,
    .footer-copyright {
        color: var(--text-secondary);
    }

    .footer-link:hover {
        color: var(--primary-color);
    }

    /* Form elements */
    .form-control,
    .form-select,
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    textarea,
    select {
        background: var(--bg-primary);
        border-color: var(--border-color);
        color: var(--text-primary);
    }

    .form-control:focus,
    .form-select:focus,
    input:focus,
    textarea:focus,
    select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    }

    /* Table styles */
    .admin-table th {
        background: var(--bg-tertiary);
        color: var(--text-primary);
        border-bottom-color: var(--border-color);
    }

    .admin-table td {
        color: var(--text-primary);
        border-bottom-color: var(--border-color);
    }

    .admin-table tr:hover td {
        background: var(--bg-secondary);
    }

    /* Badge/Tag styles */
    .status-badge,
    .order-status {
        background: var(--bg-tertiary);
        color: var(--text-primary);
    }

    /* Muted text */
    .text-muted,
    .meta-text,
    .help-text,
    .small-text {
        color: var(--text-muted);
    }

    /* Sidebar navigation */
    .sidebar-nav a,
    .account-nav a {
        color: var(--text-secondary);
    }

    .sidebar-nav a:hover,
    .account-nav a:hover,
    .sidebar-nav a.active,
    .account-nav a.active {
        background: rgba(6, 182, 212, 0.1);
        color: var(--primary-color);
    }

    /* Empty states */
    .empty-state {
        color: var(--text-muted);
    }

    /* Modal/Dialog */
    .modal-content,
    .dialog-content {
        background: var(--bg-primary);
        border-color: var(--border-color);
    }

    /* Dropdown items */
    .dropdown-item {
        color: var(--text-primary);
    }

    .dropdown-item:hover {
        background: var(--bg-secondary);
    }

    /* Cart styles */
    .cart-item,
    .checkout-summary {
        background: var(--bg-card);
        border-color: var(--border-color);
    }

    /* Price text */
    .price,
    .product-price,
    .total-price {
        color: var(--text-primary);
    }

    /* Hero section adjustments */
    .dm-hero {
        background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    }

    /* Trust strip */
    .trust-item {
        color: var(--text-secondary);
    }

    .trust-item i {
        color: var(--primary-color);
    }

    /* Category cards in light mode */
    .category-card:hover .card-icon {
        color: var(--bg-primary);
    }

    /* Product badges */
    .product-badge {
        color: var(--bg-primary);
    }

    .product-card-dm .btn-add-cart {
        color: var(--bg-primary);
    }

    /* About section */
    .about-tag {
        color: var(--primary-color);
    }

    .about-content h2,
    .about-content p {
        color: var(--text-primary);
    }

    .stat .stat-value {
        color: var(--primary-color);
    }

    .stat .stat-label {
        color: var(--text-muted);
    }

    /* Why section */
    .why-feature h4 {
        color: var(--text-primary);
    }

    .why-feature p {
        color: var(--text-secondary);
    }

    .feature-icon {
        background: rgba(6, 182, 212, 0.1);
        color: var(--primary-color);
    }

    /* Buttons - keep dark text on purple background for contrast */

    /* Tab navigation */
    .tab-nav button,
    .nav-tabs .nav-link {
        color: var(--text-secondary);
    }

    .tab-nav button.active,
    .nav-tabs .nav-link.active {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
    }

    /* Alert/Notice boxes */
    .alert-info,
    .notice-box {
        background: rgba(6, 182, 212, 0.1);
        border-color: rgba(6, 182, 212, 0.2);
        color: var(--text-primary);
    }

    /* Search results */
    .search-result-item {
        border-color: var(--border-color);
    }

    .search-result-item:hover {
        background: var(--bg-secondary);
    }

    /* Pagination */
    .pagination .page-link {
        background: var(--bg-primary);
        border-color: var(--border-color);
        color: var(--text-primary);
    }

    .pagination .page-link:hover {
        background: var(--bg-secondary);
    }

    .pagination .page-item.active .page-link {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--bg-primary);
    }

    /* Loading states */
    .skeleton,
    .loading-placeholder {
        background: var(--bg-tertiary);
    }

    /* Dividers */
    .divider,
    hr {
        border-color: var(--border-color);
    }

    /* Code/pre blocks */
    code,
    pre {
        background: var(--bg-tertiary);
        color: var(--text-primary);
    }

    /* Breadcrumbs */
    .breadcrumb-item {
        color: var(--text-muted);
    }

    .breadcrumb-item.active {
        color: var(--text-primary);
    }

    .breadcrumb-item a {
        color: var(--primary-color);
    }
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   Ensuring full mobile responsiveness
   ========================================== */

/* ===== MOBILE MENU - Very Small Screens ===== */
@media (max-width: 320px) {
    .mobile-menu {
        width: 100% !important;
        max-width: 280px !important;
    }

    .mobile-header {
        padding: 1rem !important;
    }

    .mobile-logo img {
        height: 50px !important;
    }

    .mobile-search {
        padding: 0 1rem !important;
    }

    .mobile-search input {
        font-size: 14px !important;
    }

    .mobile-links a {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }

    .mobile-admin-links a {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

/* ===== NAVIGATION - Small Screens ===== */
@media (max-width: 576px) {
    .dm-nav {
        padding: 0.5rem 0 !important;
    }

    .dm-nav .container {
        padding: 0 0.75rem !important;
    }

    .nav-logo img {
        height: 45px !important;
    }

    .nav-actions {
        gap: 0.5rem !important;
    }

    .action-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    .cart-count {
        min-width: 18px !important;
        height: 18px !important;
        font-size: 0.65rem !important;
        top: -5px !important;
        right: -5px !important;
    }

    .mobile-toggle {
        width: 36px !important;
        height: 36px !important;
    }

    .mobile-toggle span {
        width: 18px !important;
    }
}

/* ===== HERO SECTION - Mobile ===== */
@media (max-width: 576px) {
    .dm-hero {
        padding: 0 0 20px !important;
        padding-top: 80px !important;
        min-height: auto !important;
    }

    .hero-split {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .hero-text {
        padding: 0 1rem !important;
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
        min-height: 180px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-gif {
        height: 180px !important;
        max-height: 180px !important;
        width: auto !important;
    }

    .dm-hero h1,
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle,
    .dm-hero p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-buttons,
    .hero-actions {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .hero-buttons .btn,
    .btn-hero-primary,
    .btn-hero-outline,
    .btn-dm-primary,
    .btn-dm-ghost {
        width: 100% !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
    }

    .trust-strip {
        margin-top: 1rem !important;
    }

    .trust-strip .container {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .trust-item {
        font-size: 0.75rem !important;
    }
}

/* ===== PRODUCT GRID - Mobile Optimized ===== */
@media (max-width: 576px) {
    .products-section {
        padding: 2rem 0 !important;
    }

    .products-section .container {
        padding: 0 0.75rem !important;
    }

    .section-header {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }

    .section-title,
    .dm-title {
        font-size: 1.5rem !important;
    }

    .products-grid,
    .products-grid-shop {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .product-card-dm {
        border-radius: 8px !important;
    }

    .product-image-wrap {
        height: 140px !important;
        border-radius: 8px 8px 0 0 !important;
    }

    .product-info {
        padding: 0.75rem !important;
    }

    .product-info h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.3 !important;
    }

    .product-info > p {
        display: none !important;
    }

    .product-footer {
        padding: 0.5rem 0.75rem 0.75rem !important;
    }

    .product-price {
        font-size: 0.95rem !important;
    }

    .product-price-old {
        font-size: 0.7rem !important;
    }

    .btn-add-cart {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.7rem !important;
    }

    .product-badge {
        font-size: 0.6rem !important;
        padding: 0.2rem 0.5rem !important;
    }
}

/* ===== SHOP PAGE - Mobile ===== */
@media (max-width: 768px) {
    .shop-content {
        padding-top: 70px !important;
    }

    .shop-header {
        padding: 1.5rem 0 !important;
    }

    .shop-controls {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .filter-toggle {
        width: 100% !important;
    }

    .sort-dropdown {
        width: 100% !important;
    }

    .shop-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: var(--bg-secondary) !important;
        z-index: 1000 !important;
        transition: left 0.3s ease !important;
        overflow-y: auto !important;
        padding: 1rem !important;
    }

    .shop-sidebar.active {
        left: 0 !important;
    }

    .filter-group {
        margin-bottom: 1.5rem !important;
    }

    .filter-group h5 {
        font-size: 0.9rem !important;
    }
}

/* ===== PRODUCT DETAIL PAGE - Mobile ===== */
@media (max-width: 768px) {
    .product-content {
        padding-top: 70px !important;
    }

    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .product-gallery {
        max-height: 350px !important;
    }

    .product-gallery img {
        max-height: 300px !important;
    }

    .product-title {
        font-size: 1.5rem !important;
    }

    .product-price-large {
        font-size: 1.75rem !important;
    }

    .product-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .product-actions .btn {
        width: 100% !important;
    }

    .quantity-selector {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ===== CART PAGE - Mobile ===== */
@media (max-width: 576px) {
    .cart-content {
        padding: 1.5rem 0 !important;
    }

    .cart-content .container {
        padding: 0 0.75rem !important;
    }

    .cart-grid {
        gap: 1.5rem !important;
    }

    .cart-items-section {
        padding: 1rem !important;
    }

    .cart-header {
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: center !important;
    }

    .cart-header h2 {
        font-size: 1.25rem !important;
    }

    .cart-item {
        grid-template-columns: 50px 1fr !important;
        gap: 0.75rem !important;
        padding: 0.75rem !important;
    }

    .item-image {
        width: 50px !important;
        height: 50px !important;
    }

    .item-details h4 {
        font-size: 0.85rem !important;
    }

    .item-variant {
        font-size: 0.7rem !important;
    }

    .item-price {
        font-size: 0.85rem !important;
    }

    .item-quantity {
        transform: scale(0.85) !important;
    }

    .item-actions {
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 0.5rem !important;
    }

    .cart-summary-section {
        padding: 1.25rem !important;
    }

    .summary-row {
        font-size: 0.9rem !important;
    }

    .summary-total {
        font-size: 1.1rem !important;
    }

    .btn-checkout {
        padding: 0.875rem !important;
        font-size: 0.9rem !important;
    }

    .cart-empty {
        padding: 3rem 1.5rem !important;
    }

    .cart-empty h3 {
        font-size: 1.25rem !important;
    }
}

/* ===== CHECKOUT PAGE - Mobile ===== */
@media (max-width: 576px) {
    .checkout-container {
        padding: 0.75rem !important;
    }

    .checkout-grid {
        gap: 1.5rem !important;
    }

    .checkout-form {
        padding: 1.25rem !important;
    }

    .checkout-logo img {
        height: 50px !important;
    }

    .form-section {
        margin-bottom: 1.5rem !important;
    }

    .form-section h3 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .form-group {
        margin-bottom: 0.75rem !important;
    }

    .form-group label {
        font-size: 0.8rem !important;
    }

    .form-control,
    .form-select {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }

    .checkout-summary {
        padding: 1.25rem !important;
    }

    .order-item {
        grid-template-columns: 40px 1fr auto !important;
        gap: 0.75rem !important;
    }

    .order-item-image {
        width: 40px !important;
        height: 40px !important;
    }

    .order-item-name {
        font-size: 0.8rem !important;
    }

    .order-totals {
        font-size: 0.85rem !important;
    }

    .btn-place-order {
        padding: 0.875rem !important;
        font-size: 0.9rem !important;
    }

    .shipping-options {
        gap: 0.75rem !important;
    }

    .shipping-option {
        padding: 0.875rem !important;
    }

    .shipping-option-name {
        font-size: 0.85rem !important;
    }

    .shipping-option-price {
        font-size: 0.9rem !important;
    }
}

/* ===== ACCOUNT PAGES - Mobile ===== */
@media (max-width: 768px) {
    .account-content {
        padding-top: 70px !important;
    }

    .account-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .account-sidebar {
        position: static !important;
        width: 100% !important;
    }

    .account-nav {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .account-nav a {
        flex: 1 1 auto !important;
        text-align: center !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .account-main {
        padding: 1rem !important;
    }

    .account-header h1 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .account-content .container {
        padding: 0 0.75rem !important;
    }

    .account-card {
        padding: 1rem !important;
    }

    .account-card h3 {
        font-size: 1rem !important;
    }

    .order-card {
        padding: 1rem !important;
    }

    .order-header {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .order-number {
        font-size: 0.9rem !important;
    }

    .order-status {
        font-size: 0.7rem !important;
    }

    .order-items {
        gap: 0.75rem !important;
    }

    .order-item-row {
        grid-template-columns: 40px 1fr !important;
    }
}

/* ===== ADMIN PAGES - Mobile ===== */
@media (max-width: 768px) {
    .admin-content {
        padding-top: 70px !important;
    }

    .admin-header {
        padding: 1.5rem 0 !important;
    }

    .admin-header h1 {
        font-size: 1.5rem !important;
    }

    .admin-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .stat-card {
        padding: 1rem !important;
    }

    .stat-value {
        font-size: 1.25rem !important;
    }

    .stat-label {
        font-size: 0.7rem !important;
    }

    .admin-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .admin-actions .btn {
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .admin-content .container {
        padding: 0 0.75rem !important;
    }

    .stat-cards {
        grid-template-columns: 1fr !important;
    }

    .admin-card {
        padding: 1rem !important;
    }

    .admin-card-header {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .admin-card-header h3 {
        font-size: 1rem !important;
    }

    .admin-filters {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .admin-filters .form-control,
    .admin-filters .form-select {
        width: 100% !important;
    }
}

/* ===== TABLES - Mobile Responsive ===== */
@media (max-width: 768px) {
    .table-responsive {
        margin: 0 -0.75rem !important;
        padding: 0 0.75rem !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .admin-table {
        min-width: 600px !important;
        font-size: 0.8rem !important;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem !important;
        white-space: nowrap !important;
    }

    .admin-table .btn-sm {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.7rem !important;
    }

    /* Card-based table alternative for mobile */
    .mobile-cards {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .admin-table {
        font-size: 0.75rem !important;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.5rem 0.35rem !important;
    }
}

/* ===== FORMS - Mobile ===== */
@media (max-width: 576px) {
    .form-control,
    .form-select,
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    textarea {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        padding: 0.75rem !important;
    }

    .form-label {
        font-size: 0.85rem !important;
        margin-bottom: 0.35rem !important;
    }

    .form-text,
    .form-hint {
        font-size: 0.75rem !important;
    }

    .btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem !important;
    }

    .btn-sm {
        padding: 0.5rem 0.875rem !important;
        font-size: 0.8rem !important;
    }
}

/* ===== AUTH PAGES (Login/Register) - Mobile ===== */
@media (max-width: 576px) {
    .auth-page {
        padding: 70px 0.75rem 2rem !important;
    }

    .auth-card {
        padding: 1.5rem !important;
        margin: 0 !important;
        border-radius: 12px !important;
    }

    .auth-header {
        margin-bottom: 1.5rem !important;
    }

    .auth-header h1 {
        font-size: 1.5rem !important;
    }

    .auth-header p {
        font-size: 0.9rem !important;
    }

    .auth-form .form-group {
        margin-bottom: 1rem !important;
    }

    .auth-footer {
        margin-top: 1.5rem !important;
        font-size: 0.85rem !important;
    }

    .social-login {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .social-btn {
        width: 100% !important;
    }
}

/* ===== FOOTER - Mobile ===== */
@media (max-width: 576px) {
    .dm-footer {
        padding: 2rem 0 1rem !important;
    }

    .dm-footer .container {
        padding: 0 0.75rem !important;
    }

    .footer-top {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }

    .footer-brand {
        align-items: center !important;
    }

    .footer-logo img {
        height: 60px !important;
    }

    .footer-brand p {
        font-size: 0.85rem !important;
        max-width: 280px !important;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .link-group {
        text-align: center !important;
    }

    .link-group h6 {
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem !important;
    }

    .link-group a {
        font-size: 0.8rem !important;
        padding: 0.35rem 0 !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 0.75rem !important;
        text-align: center !important;
        padding-top: 1rem !important;
    }

    .footer-bottom p {
        font-size: 0.75rem !important;
    }

    .footer-social {
        justify-content: center !important;
    }

    .footer-social a {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }
}

/* ===== MODALS - Mobile ===== */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem !important;
        max-width: calc(100% - 1rem) !important;
    }

    .modal-content {
        border-radius: 12px !important;
    }

    .modal-header {
        padding: 1rem !important;
    }

    .modal-title {
        font-size: 1.1rem !important;
    }

    .modal-body {
        padding: 1rem !important;
    }

    .modal-footer {
        padding: 1rem !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .modal-footer .btn {
        width: 100% !important;
    }
}

/* ===== ALERTS & NOTIFICATIONS - Mobile ===== */
@media (max-width: 576px) {
    .alert {
        padding: 0.875rem 1rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
    }

    .toast-container {
        left: 0.5rem !important;
        right: 0.5rem !important;
        bottom: 0.5rem !important;
    }

    .toast {
        width: 100% !important;
        font-size: 0.85rem !important;
    }
}

/* ===== PAGINATION - Mobile ===== */
@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.25rem !important;
    }

    .page-link {
        padding: 0.4rem 0.65rem !important;
        font-size: 0.8rem !important;
    }

    .page-item:first-child .page-link,
    .page-item:last-child .page-link {
        padding: 0.4rem 0.5rem !important;
    }
}

/* ===== BREADCRUMBS - Mobile ===== */
@media (max-width: 576px) {
    .breadcrumb {
        font-size: 0.75rem !important;
        flex-wrap: wrap !important;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.35rem !important;
    }
}

/* ===== CATEGORY CARDS - Mobile ===== */
@media (max-width: 576px) {
    .category-section {
        padding: 2rem 0 !important;
    }

    .category-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .category-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem 0.75rem !important;
        gap: 0.5rem !important;
    }

    .category-card .card-icon,
    .card-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
    }

    .category-card .card-info {
        flex-direction: column !important;
    }

    .category-card h3,
    .category-card h5 {
        font-size: 0.75rem !important;
    }

    .category-card .card-arrow {
        display: none !important;
    }

    .category-card p {
        font-size: 0.7rem !important;
        display: none !important;
    }
}

/* ===== ABOUT/CONTACT PAGES - Mobile ===== */
@media (max-width: 576px) {
    .about-content,
    .contact-content {
        padding: 2rem 0 !important;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .about-content h2 {
        font-size: 1.5rem !important;
    }

    .about-content p {
        font-size: 0.9rem !important;
    }

    .contact-form {
        padding: 1.25rem !important;
    }

    .contact-info {
        padding: 1.25rem !important;
    }

    .contact-item {
        padding: 0.75rem 0 !important;
    }

    .contact-item i {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    .contact-item h5 {
        font-size: 0.9rem !important;
    }

    .contact-item p {
        font-size: 0.8rem !important;
    }
}

/* ===== FAQ PAGE - Mobile ===== */
@media (max-width: 576px) {
    .faq-content {
        padding: 2rem 0 !important;
    }

    .faq-item {
        margin-bottom: 0.75rem !important;
    }

    .faq-question {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }

    .faq-answer {
        padding: 0 1rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

/* ===== LOADING STATES - Mobile ===== */
@media (max-width: 576px) {
    .loading-overlay {
        padding: 1rem !important;
    }

    .spinner-border {
        width: 2rem !important;
        height: 2rem !important;
    }

    .loading-text {
        font-size: 0.85rem !important;
    }

    .skeleton {
        border-radius: 4px !important;
    }
}

/* ===== USER DROPDOWN - Mobile Fix ===== */
@media (max-width: 576px) {
    .user-dropdown {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: 70vh !important;
        border-radius: 16px 16px 0 0 !important;
        overflow-y: auto !important;
    }

    .user-header {
        padding: 1.25rem !important;
    }

    .user-links {
        padding: 0 0.5rem 1rem !important;
    }

    .user-links a {
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* ===== SEARCH DROPDOWN - Mobile ===== */
@media (max-width: 768px) {
    .search-dropdown {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: 60vh !important;
        border-radius: 0 !important;
    }

    .search-item {
        padding: 0.875rem 1rem !important;
    }

    .search-item-img {
        width: 45px !important;
        height: 45px !important;
    }

    .search-item-name {
        font-size: 0.9rem !important;
    }

    .search-item-price {
        font-size: 0.85rem !important;
    }
}

/* ===== TOUCH-FRIENDLY INTERACTIONS ===== */
@media (max-width: 768px) {
    /* Ensure touch targets are at least 44px */
    .btn,
    .nav-link,
    .dropdown-item,
    .form-check-input,
    .pagination .page-link,
    a.clickable {
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .btn:hover,
        .card:hover,
        .product-card-dm:hover {
            transform: none !important;
        }
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 896px) and (orientation: landscape) {
    .dm-hero {
        min-height: auto !important;
        padding: 0 0 15px !important;
        padding-top: 80px !important;
    }

    .hero-image {
        display: flex !important;
        min-height: 150px !important;
    }

    .hero-gif {
        height: 150px !important;
        max-height: 150px !important;
    }

    .mobile-menu {
        max-height: 100vh !important;
        overflow-y: auto !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .dm-nav,
    .mobile-menu,
    .mobile-overlay,
    .dm-footer,
    .btn,
    .cart-actions {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}

/* ===== SAFE AREA INSETS (iPhone X+) ===== */
@supports (padding: max(0px)) {
    .dm-nav {
        padding-top: max(0.5rem, env(safe-area-inset-top)) !important;
    }

    .mobile-menu {
        padding-bottom: max(1rem, env(safe-area-inset-bottom)) !important;
    }

    .dm-footer {
        padding-bottom: max(1rem, env(safe-area-inset-bottom)) !important;
    }

    .checkout-form,
    .cart-summary-section {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom)) !important;
    }
}


/* ============================================================
   COSMIC UI MODERNIZATION - 2024
   Starfield, Scroll Reveal, Skeleton Loaders, Constellation
   ============================================================ */

/* ----- STARFIELD CANVAS ----- */
.starfield-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

/* Ensure content sits above starfield */
.main-content,
.dm-footer,
.dm-hero,
.TopBanner {
    position: relative;
    z-index: 1;
}

/* ----- SCROLL REVEAL ANIMATIONS ----- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children for category tiles, product grids */
.scroll-reveal .category-tile,
.scroll-reveal .product-card,
.scroll-reveal .product-card-dm {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed .category-tile,
.scroll-reveal.revealed .product-card,
.scroll-reveal.revealed .product-card-dm {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-reveal.revealed .category-tile:nth-child(1),
.scroll-reveal.revealed .product-card:nth-child(1),
.scroll-reveal.revealed .product-card-dm:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal.revealed .category-tile:nth-child(2),
.scroll-reveal.revealed .product-card:nth-child(2),
.scroll-reveal.revealed .product-card-dm:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.revealed .category-tile:nth-child(3),
.scroll-reveal.revealed .product-card:nth-child(3),
.scroll-reveal.revealed .product-card-dm:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal.revealed .category-tile:nth-child(4),
.scroll-reveal.revealed .product-card:nth-child(4),
.scroll-reveal.revealed .product-card-dm:nth-child(4) { transition-delay: 0.2s; }

/* Reveal for CTA */
.scroll-reveal .dm-cta-card {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed .dm-cta-card {
    opacity: 1;
    transform: scale(1);
}

/* ----- SKELETON LOADING CARDS ----- */
.skeleton-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(6, 182, 212, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.skeleton-image {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
}

.skeleton-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}

/* Nebula shimmer sweep */
.skeleton-shimmer {
    position: relative;
    overflow: hidden;
}

.skeleton-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(6, 182, 212, 0.06) 30%,
        rgba(139, 92, 246, 0.08) 50%,
        rgba(6, 182, 212, 0.06) 70%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: skeletonSweep 2s ease-in-out infinite;
}

@keyframes skeletonSweep {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ----- CONSTELLATION FOOTER CANVAS ----- */
.constellation-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.dm-footer {
    position: relative;
}

.dm-footer .container {
    position: relative;
    z-index: 1;
}

/* ----- ENHANCED CATEGORY TILES - Cursor Glow ----- */
.category-tile::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.category-tile:hover::after {
    opacity: 1;
}

/* ----- ENHANCED BUTTON STYLES ----- */
.btn-dm-primary {
    position: relative;
    overflow: hidden;
}

/* Cosmic ripple on hover */
.btn-dm-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-dm-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* ----- ENHANCED CONTACT FORM GLOW ----- */
.contact-form-wrap::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.contact-form-wrap:hover::after {
    opacity: 1;
}

.contact-form-wrap {
    position: relative;
    overflow: hidden;
}

.contact-form-wrap > * {
    position: relative;
    z-index: 1;
}

/* ----- GLASSMORPHIC PRICE BADGE (Product Detail) ----- */
.product-card .product-price,
.product-card-dm .product-price {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ----- SECTION DIVIDER GLOW LINES ----- */
.categories-section::before,
.dm-products-section::before,
.dm-cta-banner::before,
.dm-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.15), transparent);
    z-index: 2;
}

.categories-section,
.dm-products-section,
.dm-cta-banner,
.dm-contact-section {
    position: relative;
}

/* ----- NAV GLOW ENHANCEMENT ----- */
/* The nav already has the animated holo line - enhance the glow */
.dm-nav::after {
    height: 2px;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4), 0 0 30px rgba(139, 92, 246, 0.2), 0 2px 10px rgba(6, 182, 212, 0.15);
}

/* ----- DISABLE TILT ON TOUCH/MOBILE ----- */
@media (hover: none), (max-width: 768px) {
    .product-card-dm,
    .product-card {
        transform-style: flat !important;
    }

    .product-card-dm::before,
    .product-card::before,
    .product-card-dm::after,
    .product-card::after,
    .category-tile::after,
    .contact-form-wrap::after {
        display: none !important;
    }

    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .scroll-reveal .category-tile,
    .scroll-reveal .product-card,
    .scroll-reveal .product-card-dm,
    .scroll-reveal .dm-cta-card {
        opacity: 1 !important;
        transform: none !important;
    }

    .starfield-canvas {
        opacity: 0.4;
    }
}

/* ----- ENHANCED SCROLL INDICATOR ----- */
.dm-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 50px; }
}
