/* ===== TENET SHOP - PROFESSIONAL DARK THEME ===== */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* TeNET Style - Dark Theme with Green Cyberpunk Accents */
    --bg-primary: #1a1a1a;
    --bg-secondary: #141414;
    --bg-tertiary: #1c1c1c;
    --bg-hover: #252525;

    /* Accent - Green Cyberpunk Style */
    --accent-primary: #00ff88;
    --accent-secondary: #00cc6a;
    --accent-dark: #00994d;
    --accent-glow: rgba(0, 255, 136, 0.4);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;

    /* Borders */
    --border-color: #2a2a2a;
    --border-accent: rgba(0, 255, 136, 0.3);

    /* Status */
    --success: #00ff88;
    --error: #ff4444;
    --warning: #ffaa00;

    /* Shadows */
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.8);
    --glow: 0 0 20px var(--accent-glow);
    --glow-strong: 0 0 30px var(--accent-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    border-bottom: 2px solid var(--border-accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.3);
    height: 65px;
    display: flex;
    align-items: center;
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr 200px;
    align-items: center;
    padding: 0;
    gap: 1rem;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: start;
}

.logo-img {
    width: 100px;
    height: 100px;
    max-height: 55px;
    object-fit: contain;
    position: relative;
    left: 15px;
    margin-right: -15px;
}

.logo i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.logo span {
    font-family: 'Tektur', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    color: #F8F8F8;
    display: flex;
    align-items: center;
    text-align: center;
    flex: none;
    flex-grow: 1;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: #b3b3b3;
    font-size: 0.875rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--accent-primary);
    background: #1a1a1a;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: #1a1a1a;
    border: 1px solid #242424;
    border-radius: 4px;
    padding: 0.4rem 0;
    min-width: 260px;
    max-width: 300px;
    display: none;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.dropdown-category {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: none;
    position: relative;
    overflow: visible;
}

.dropdown-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-category::after {
    display: none;
}

.dropdown-category:hover::before {
    opacity: 1;
}

.dropdown-category h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    text-transform: none;
    margin: 0;
    letter-spacing: 0.3px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 1rem;
    border-bottom: none;
    text-shadow: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 1;
    transition: all 0.15s ease;
    background: transparent;
    cursor: pointer;
}

.dropdown-category h4::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.dropdown-category.active h4::after {
    transform: rotate(180deg);
}

.dropdown-category:hover h4 {
    background: #242424;
    color: #ffffff;
}

.dropdown-category h4 i {
    font-size: 0.9rem;
    color: var(--accent-primary);
    filter: none;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.dropdown-category:hover h4 i {
    color: var(--accent-primary);
}

.dropdown-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.dropdown-category.active .dropdown-category-content {
    max-height: 500px;
}

.dropdown-category a {
    display: block;
    padding: 0.625rem 1rem 0.625rem 2.2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.15s ease;
    position: relative;
    text-decoration: none;
}

.dropdown-category a::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.dropdown-category a:hover {
    background: #242424;
    color: var(--accent-primary);
}

.dropdown-category a:hover::before {
    opacity: 1;
}

/* Search */
.search-bar {
    position: relative;
    display: flex;
    background: #1a1a1a;
    border: 1px solid #242424;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    max-width: 350px;
    flex: 1;
}

.search-bar:focus-within {
    border-color: var(--accent-primary);
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    width: 100%;
    font-size: 0.875rem;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.search-btn:hover {
    color: var(--accent-primary);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
    border: 1px solid #2d2d2d;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9),
                0 0 0 1px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.3);
    max-height: 450px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    animation: slideDown 0.3s ease;
    backdrop-filter: blur(10px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.search-result-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(0, 255, 136, 0.05);
    padding-left: 1.2rem;
}

.search-result-item:hover::before {
    transform: scaleY(1);
}

.search-result-image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1.5px solid rgba(0, 255, 136, 0.2);
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.search-result-item:hover .search-result-image {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 3px 10px rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.search-result-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-item:hover .search-result-title {
    color: #00ff88;
}

.search-result-price {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.search-no-results {
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.search-no-results::before {
    content: '';
    width: 64px;
    height: 64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23808080' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    animation: searchPulse 2s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Search section titles */
.search-section-title {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    border-left: 2px solid var(--accent-primary);
    margin: 0;
}

.search-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    margin: 8px 0;
}

/* Category item in search */
.search-category-item {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, rgba(0, 204, 106, 0.02) 100%);
}

.search-category-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 106, 0.08) 100%);
}

.search-category-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 204, 106, 0.08) 100%);
    border: 1.5px solid rgba(0, 255, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.search-category-icon i {
    font-size: 1.3rem;
    color: #00ff88;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.3));
}

.search-category-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.search-category-item:hover .search-category-icon {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 204, 106, 0.15) 100%);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.25);
}

.search-category-item:hover .search-category-icon i {
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.search-category-item:hover .search-category-icon-img {
    transform: scale(1.05);
}

.search-category-label {
    font-size: 0.75rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    opacity: 0.8;
}

/* Category logo image in search */
.search-category-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.search-category-item:hover .search-category-logo {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
    transform: scale(1.05);
}

/* Custom scrollbar for search results */
.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
    margin: 8px 0;
}

.search-results::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Language & Nav Right */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid #242424;
    color: #b3b3b3;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #242424;
    border-radius: 4px;
    min-width: 120px;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    margin-top: 0.5rem;
    z-index: 1000;
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
}

.language-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.lang-dropdown a:hover {
    background: #242424;
    color: var(--accent-primary);
}

.lang-dropdown a.active {
    background: rgba(0, 0, 0, 0.3);
    color: var(--accent-primary);
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart {
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.cart:hover {
    background: #1a1a1a;
    color: var(--accent-primary);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    font-weight: 700;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #141414 0%, #0a0a0a 50%, #141414 100%);
    padding: 2rem 0;
    margin-bottom: 1.5rem;
    margin-left: 240px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent) 1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(0, 0, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
    transform: translateY(-50%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%);
    transform: translateY(-50%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 2s;
    filter: blur(35px);
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-btn {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #0a0a0a;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 50px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:active {
    transform: translateY(-1px) scale(1);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 2rem 0;
    margin-left: 240px;
}

/* ===== SIDEBAR ===== */
aside.sidebar {
    background:
        linear-gradient(180deg,
            rgba(0, 255, 136, 0.08) 0%,
            rgba(0, 204, 106, 0.06) 30%,
            rgba(0, 255, 136, 0.04) 70%,
            rgba(0, 204, 106, 0.03) 100%
        ),
        radial-gradient(ellipse at top, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(0, 204, 106, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%) !important;
    border-right: 1px solid rgba(0, 255, 136, 0.2);
    padding: 1.5rem 0.75rem;
    padding-bottom: 2rem !important;
    position: fixed !important;
    left: 0 !important;
    top: 210px !important;
    bottom: 300px !important;
    width: 240px !important;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1 !important;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(0, 255, 136, 0.2);
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0.5rem 1.5rem 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #242424;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.1);
    background: rgba(0, 255, 136, 0.03);
}

.category-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.category-link:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #ffffff;
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.category-link:hover::before {
    transform: scaleY(1);
}

.category-link:hover i:first-child {
    color: var(--accent-primary);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
}

.category-item.active .category-link {
    background: rgba(0, 255, 136, 0.15);
    color: #fff;
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.25);
}

.category-item.active .category-link::before {
    transform: scaleY(1);
}

.category-link i:first-child {
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
    color: rgba(0, 255, 136, 0.7);
}

.category-link span {
    flex: 1;
    font-weight: 500;
}

.category-link i:last-child {
    font-size: 0.75rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.category-link:hover i:last-child {
    opacity: 1;
    transform: translateX(3px);
}

.subcategory-list {
    list-style: none;
    padding-left: 2rem;
    margin-top: 0.25rem;
    display: none;
}

.category-item.active .subcategory-list {
    display: block;
}

.subcategory-list a {
    display: block;
    padding: 0.5rem 0.625rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    border-radius: 4px;
}

.subcategory-list a:hover {
    color: #fff;
    background: #1a1a1a;
}

/* ===== CATEGORY HEADER ===== */
.category-header {
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 204, 106, 0.03) 100%),
        linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(0, 255, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.6), transparent);
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
}

.category-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.category-info i {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.category-info h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow:
        0 0 20px rgba(0, 255, 136, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.5);
}

.category-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0.5rem 0 0 0;
}

/* ===== SUBCATEGORY FILTERS ===== */
.subcategory-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(0, 255, 136, 0.04) 0%, rgba(0, 204, 106, 0.02) 100%),
        rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(0, 255, 136, 0.08);
}

.subcategory-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subcategory-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s;
}

.subcategory-filter-btn:hover::before {
    left: 100%;
}

.subcategory-filter-btn i {
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.7);
    transition: all 0.3s ease;
}

.subcategory-filter-btn:hover {
    background: rgba(30, 30, 30, 0.95);
    border-color: rgba(0, 255, 136, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.subcategory-filter-btn:hover i {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.subcategory-filter-btn.active {
    background: rgba(0, 60, 30, 0.5);
    border-color: var(--accent-primary);
    color: #ffffff;
}

.subcategory-filter-btn.active i {
    color: var(--accent-primary);
}

/* ===== PRODUCTS ===== */
.products {
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 136, 0.08),
        inset 0 1px 0 rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
}


.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, transparent, var(--accent-primary), transparent) 1;
    position: relative;
}

.products-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-primary);
}

.products-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.sort-select {
    background: #1a1a1a;
    color: var(--text-secondary);
    border: 1px solid #242424;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Product Card */
.product-card {
    background:
        linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, rgba(0, 204, 106, 0.02) 100%),
        linear-gradient(135deg, #1c1c1c 0%, #141414 100%);
    border: 2px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 136, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), transparent, rgba(0, 255, 136, 0.1));
    -webkit-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;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 255, 136, 0.25),
        inset 0 1px 0 rgba(0, 255, 136, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--accent-primary);
    color: #0a0a0a;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow:
        0 0 20px rgba(0, 255, 136, 0.6),
        0 4px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.product-badge.new {
    background: var(--success);
    box-shadow:
        0 0 20px rgba(0, 255, 136, 0.6),
        0 4px 10px rgba(0, 0, 0, 0.4);
}

.product-image {
    width: 100%;
    height: 0;
    padding-bottom: 90%;
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
}

.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.product-card:hover .product-image img {
    transform: none;
}

.product-info {
    padding: 1.25rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-shadow:
        0 0 15px rgba(0, 255, 136, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-btn {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #0a0a0a;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(0, 255, 136, 0.4),
        0 0 20px rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.product-btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 6px 25px rgba(0, 255, 136, 0.6),
        0 0 30px rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.5);
}

.product-btn:hover::before {
    left: 100%;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* ===== MAIN CONTENT ===== */
main {
    flex: 1 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 2px solid rgba(0, 255, 136, 0.2) !important;
    padding: 2.5rem 0 1.5rem 240px !important;
    box-shadow: 0 -4px 20px rgba(0, 255, 136, 0.1) !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transform: translate3d(0, 0, 100px) !important;
    isolation: isolate !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.625rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: #1a1a1a;
    border: 1px solid #242424;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-color: var(--accent-primary);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Newsletter */
.newsletter {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    background: #1a1a1a;
    border: 1px solid #242424;
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.newsletter input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.newsletter button {
    background: var(--accent-primary);
    color: #000000;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.875rem;
}

.newsletter button:hover {
    background: var(--accent-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ===== UTILITIES ===== */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid #242424;
    border-left: 3px solid var(--accent-primary);
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
    z-index: 10000;
    max-width: 350px;
    font-size: 0.875rem;
}

.notification-success {
    border-left-color: var(--success);
}

.notification-error {
    border-left-color: var(--error);
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: var(--accent-primary);
    color: #000000;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    transition: all 0.2s;
}

.scroll-top-btn:hover {
    background: var(--accent-secondary);
}

/* Empty States */
.empty-cart {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-cart i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-cart h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #0a0a0a;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.error-code {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.error-page h1 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.error-page p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .sidebar {
        width: 200px;
    }

    .main-content,
    .hero {
        margin-left: 200px;
    }

    .footer {
        padding-left: 200px !important;
    }
}

@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content,
    .hero {
        margin-left: 0;
    }

    .footer {
        padding-left: 0 !important;
    }

    .dropdown-menu {
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-menu {
        min-width: 240px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .products {
        padding: 1rem;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
    padding: 1rem;
}

.pagination-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.pagination-pages {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-page {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-page:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
}

.pagination-page.active {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
    font-weight: 700;
}

.pagination-dots {
    color: var(--text-tertiary);
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .pagination-page {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
