/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    /* Your custom background colors */
    --bg-primary: radial-gradient(ellipse at top, #0f1419 0%, #0a0e1a 50%, #050810 100%);
    --particle-orange: #ff6600;
    --particle-pink: #ff0080;
    --particle-blue: #00d4ff;
    
    /* Store theme colors */
    --primary-color: #8b45be;
    --secondary-color: #6b46c1;
    --accent-color: #d4b3ff;
    --background-color: #0a0e1a;
    --surface-color: #1a1f2e;
    --text-color: #e0e6ed;
    --text-muted: #b0b8c4;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(15, 20, 30, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 4px 15px rgba(139, 69, 190, 0.1);
    --shadow-medium: 0 8px 25px rgba(139, 69, 190, 0.15);
    --shadow-heavy: 0 12px 35px rgba(139, 69, 190, 0.2);
}

[data-theme="dark"] {
    --background-color: #050810;
    --surface-color: #0f1419;
    --text-color: #e0e6ed;
    --glass-bg: rgba(10, 15, 25, 0.8);
}

[data-theme="light"] {
    --background-color: #f8fafc;
    --surface-color: #ffffff;
    --text-color: #1a202c;
    --text-muted: #4a5568;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Enhanced Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.6;
}

.particle.small {
    width: 2px;
    height: 2px;
    background: var(--particle-orange);
    box-shadow: 0 0 10px var(--particle-orange);
}

.particle.medium {
    width: 4px;
    height: 4px;
    background: var(--particle-pink);
    box-shadow: 0 0 15px var(--particle-pink);
}

.particle.large {
    width: 6px;
    height: 6px;
    background: var(--particle-blue);
    box-shadow: 0 0 20px var(--particle-blue);
}

.particle.glow {
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 25px var(--primary-color);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) translateX(10px) rotate(90deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-20px) translateX(-15px) rotate(180deg); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-40px) translateX(20px) rotate(270deg); 
        opacity: 0.9;
    }
}

/* Loading Screen */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(139, 69, 190, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content p {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Header Styles */
.header-top {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 0.7rem;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* FIXED HEADER */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    width: 100%;
    box-shadow: none; /* REMOVED SHADOW */
    border: none; /* REMOVED BORDER */
}

/* FIXED NAVIGATION */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 70px;
    flex-wrap: nowrap; /* FIXED */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0; /* PREVENT SHRINKING */
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image-custom {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-light);
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap; /* PREVENT TEXT WRAPPING */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    gap: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* FIXED NAVIGATION SECTION */
.nav-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: space-between;
    min-width: 0; /* ALLOW SHRINKING */
}

/* Search Container */
.search-container {
    position: relative;
    margin: 0 1rem;
    flex-shrink: 1; /* ALLOW SHRINKING */
}

.search-form {
    position: relative;
    display: flex;
}

.search-bar {
    width: 300px;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-bar:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 190, 0.1);
    width: 350px;
}

.search-bar::placeholder {
    color: var(--text-muted);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-heavy);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(139, 69, 190, 0.1);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.search-result-info h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.search-result-info p {
    color: var(--primary-color);
    font-weight: 600;
}

.no-results {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* FIXED NAVIGATION LINKS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* REDUCED GAP */
    align-items: center;
    flex-shrink: 0; /* PREVENT SHRINKING */
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1rem;
    background: transparent;
    border: 1px solid transparent;
    display: inline-block;
}

.nav-link::before {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 69, 190, 0.3);
}

.nav-link.active {
    background: var(--primary-color);
    color: white;
}

.nav-link:hover::before {
    left: 100%;
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* REDUCED GAP */
    flex-shrink: 0; /* PREVENT SHRINKING */
}

.theme-switcher,
.language-switcher {
    width: 42px; /* SLIGHTLY SMALLER */
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; /* SLIGHTLY SMALLER */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-switcher:hover,
.language-switcher:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    min-width: 200px;
    box-shadow: var(--shadow-heavy);
    z-index: 1000;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(139, 69, 190, 0.1);
    color: var(--primary-color);
}

.language-option.active {
    background: rgba(139, 69, 190, 0.15);
    color: var(--primary-color);
}

.language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Cart Styles */
.cart-container {
    position: relative;
}

.cart-icon {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.7rem; /* SLIGHTLY SMALLER */
    cursor: pointer;
    font-size: 1.1rem; /* SLIGHTLY SMALLER */
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-light);
}

.cart-icon:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 22px; /* SLIGHTLY SMALLER */
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem; /* SLIGHTLY SMALLER */
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

/* Breadcrumb - COMPLETELY REMOVED */
.breadcrumb {
    display: none !important;
}

.breadcrumb-list {
    display: none !important;
}

.breadcrumb-item {
    display: none !important;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    width: 100%;
    max-width: 100%;
}

.page-section {
    display: none;
    width: 100%;
}

.page-section.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 190, 0.1), transparent);
    animation: heroShimmer 3s ease-in-out infinite;
}

@keyframes heroShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Buttons */
.cta-button,
.btn-secondary {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: rgba(139, 69, 190, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(139, 69, 190, 0.3);
}

.btn-secondary:hover {
    background: rgba(139, 69, 190, 0.2);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 190, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-heavy);
}

.category-card:hover::before {
    left: 100%;
}

.category-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-category {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

/* Filter Section */
.filter-section {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.filter-header h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-group label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.filter-group select {
    padding: 0.8rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-range input {
    width: 100%;
    cursor: pointer;
}

.price-display {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

.brand-filters {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.brand-filters label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
}

.brand-filters input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* About & Contact Content */
.about-content,
.contact-content {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4rem;
    max-width: 800px;
    margin: 3rem auto 6rem auto;
    width: 100%;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 69, 190, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 190, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-form {
   background: rgba(139, 69, 190, 0.05);
   padding: 2.5rem;
   border-radius: 15px;
   border: 1px solid rgba(139, 69, 190, 0.1);
   margin-top: 2rem;
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
   color: var(--text-color);
   font-weight: 500;
   margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
   width: 100%;
   padding: 1rem 1.2rem;
   border: 1px solid var(--glass-border);
   border-radius: 8px;
   background: rgba(255, 255, 255, 0.1);
   color: var(--text-color);
   font-size: 1rem;
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
   outline: none;
   border-color: var(--primary-color);
   box-shadow: 0 0 0 3px rgba(139, 69, 190, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: var(--text-muted);
}

/* Cart Sidebar */
.cart-sidebar {
   position: fixed;
   top: 0;
   right: -100%;
   width: 400px;
   height: 100vh;
   background: var(--glass-bg);
   backdrop-filter: blur(25px);
   border-left: 1px solid var(--glass-border);
   z-index: 1001;
   transition: right 0.4s ease;
   display: flex;
   flex-direction: column;
   box-shadow: var(--shadow-heavy);
}

.cart-sidebar.active {
   right: 0;
}

.cart-header {
   padding: 2rem;
   border-bottom: 1px solid var(--glass-border);
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.cart-header h3 {
   color: var(--text-color);
   font-size: 1.5rem;
   font-weight: 600;
}

.close-cart {
   background: none;
   border: none;
   color: var(--text-color);
   font-size: 1.5rem;
   cursor: pointer;
   padding: 0.5rem;
   border-radius: 50%;
   transition: all 0.3s ease;
}

.close-cart:hover {
   background: rgba(255, 0, 0, 0.1);
   color: #ff4757;
}

.cart-body {
   flex: 1;
   overflow-y: auto;
   padding: 1rem;
}

.cart-items {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.cart-item {
   display: flex;
   gap: 1rem;
   padding: 1rem;
   background: rgba(139, 69, 190, 0.05);
   border-radius: 12px;
   border: 1px solid rgba(139, 69, 190, 0.1);
   align-items: center;
}

.cart-item img {
   width: 60px;
   height: 60px;
   object-fit: cover;
   border-radius: 8px;
}

.cart-item-info {
   flex: 1;
}

.cart-item-info h4 {
   color: var(--text-color);
   font-size: 1rem;
   margin-bottom: 0.5rem;
}

.cart-item-info p {
   color: var(--primary-color);
   font-weight: 600;
   margin-bottom: 0.5rem;
}

.quantity-controls {
   display: flex;
   align-items: center;
   gap: 0.8rem;
}

.quantity-controls button {
   width: 30px;
   height: 30px;
   border: 1px solid var(--glass-border);
   background: rgba(139, 69, 190, 0.1);
   color: var(--text-color);
   border-radius: 6px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
}

.quantity-controls button:hover {
   background: var(--primary-color);
   color: white;
}

.quantity-controls span {
   color: var(--text-color);
   font-weight: 600;
   min-width: 20px;
   text-align: center;
}

.remove-btn {
   background: none;
   border: none;
   color: #ff4757;
   font-size: 1.5rem;
   cursor: pointer;
   padding: 0.5rem;
   border-radius: 50%;
   transition: all 0.3s ease;
}

.remove-btn:hover {
   background: rgba(255, 71, 87, 0.1);
   transform: scale(1.2);
}

.empty-cart {
   text-align: center;
   color: var(--text-muted);
   padding: 3rem 2rem;
   font-size: 1.1rem;
}

.cart-footer {
   padding: 2rem;
   border-top: 1px solid var(--glass-border);
   background: rgba(139, 69, 190, 0.05);
}

.cart-total {
   text-align: center;
   margin-bottom: 1.5rem;
}

.cart-total strong {
   color: var(--text-color);
   font-size: 1.3rem;
}

/* Overlay */
.overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 1000;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
}

.overlay.active {
   opacity: 1;
   visibility: visible;
}

/* NOTIFICATION - COMPLETELY REMOVED */
.notification {
   display: none !important;
   visibility: hidden !important;
   opacity: 0 !important;
}

/* Footer */
footer {
   background: var(--glass-bg);
   backdrop-filter: blur(25px);
   border-top: 1px solid var(--glass-border);
   padding: 3rem 0 1.5rem;
   margin-top: 4rem;
   position: relative;
   width: 100%;
}

.footer-content {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
   margin-bottom: 2.5rem;
   width: 100%;
}

.footer-section h4 {
   color: var(--primary-color);
   font-size: 1.3rem;
   font-weight: 600;
   margin-bottom: 1.2rem;
}

.footer-section ul {
   list-style: none;
   padding: 0;
}

.footer-section ul li {
   margin-bottom: 0.6rem;
}

.footer-section ul li a {
   color: var(--text-color);
   text-decoration: none;
   transition: color 0.3s ease;
   opacity: 0.8;
}

.footer-section ul li a:hover {
   color: var(--primary-color);
   opacity: 1;
}

.footer-section p {
   color: var(--text-color);
   opacity: 0.8;
   line-height: 1.6;
   margin-bottom: 1.2rem;
}

.newsletter-form {
   display: flex;
   gap: 0.6rem;
   margin-bottom: 1.5rem;
}

.newsletter-form input {
   flex: 1;
   padding: 0.7rem 1rem;
   border: 1px solid var(--glass-border);
   border-radius: 8px;
   background: rgba(255, 255, 255, 0.1);
   color: var(--text-color);
   font-size: 0.9rem;
}

.newsletter-form input::placeholder {
   color: var(--text-color);
   opacity: 0.6;
}

.newsletter-form button {
   padding: 0.7rem 1.2rem;
   white-space: nowrap;
   font-size: 0.9rem;
}

.social-links {
   display: flex;
   gap: 0.8rem;
   flex-wrap: wrap;
}

.social-link {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 45px;
   height: 45px;
   background: var(--primary-color);
   color: white;
   text-decoration: none;
   border-radius: 50%;
   font-size: 1.1rem;
   transition: all 0.3s ease;
   box-shadow: var(--shadow-light);
}

.social-link:hover {
   transform: translateY(-3px);
   box-shadow: var(--shadow-medium);
   background: var(--secondary-color);
}

.footer-bottom {
   text-align: center;
   padding-top: 1.5rem;
   border-top: 1px solid var(--glass-border);
   color: var(--text-color);
   opacity: 0.7;
   font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
   .search-bar {
       width: 220px;
   }
   
   .search-bar:focus {
       width: 280px;
   }
   
   .nav-links {
       gap: 1rem;
   }
   
   .nav-link {
       padding: 0.6rem 1rem;
       font-size: 0.9rem;
   }
}

@media (max-width: 992px) {
   .nav-links {
       gap: 0.8rem;
   }
   
   .nav-link {
       padding: 0.5rem 0.8rem;
       font-size: 0.85rem;
   }
   
   .search-bar {
       width: 200px;
   }
   
   .search-bar:focus {
       width: 250px;
   }
   
   .header-controls {
       gap: 0.6rem;
   }
   
   .theme-switcher,
   .language-switcher {
       width: 38px;
       height: 38px;
       font-size: 0.9rem;
   }
   
   .cart-icon {
       padding: 0.6rem;
       font-size: 1rem;
   }
}

@media (max-width: 768px) {
   .header-top {
       font-size: 0.8rem;
       padding: 0.5rem;
   }
   
   header {
       padding: 0.5rem 1rem;
   }
   
   nav {
       min-height: 60px;
       padding: 0 1rem;
   }
   
   .logo {
       flex-shrink: 0;
   }
   
   .logo-text {
       font-size: 1.6rem;
   }
   
   .logo-image-custom {
       width: 50px;
       height: 50px;
   }
   
   .mobile-menu-toggle {
       display: flex;
       order: 2;
       margin-left: auto;
   }
   
   .nav-section {
       display: none;
       position: fixed;
       top: 100%;
       left: 0;
       right: 0;
       background: var(--glass-bg);
       backdrop-filter: blur(25px);
       padding: 2rem;
       transition: all 0.3s ease;
       border-top: 1px solid var(--glass-border);
       z-index: 1000;
       flex-direction: column;
       align-items: stretch;
       gap: 2rem;
       box-shadow: var(--shadow-heavy);
       width: 100%;
       order: 3;
   }
   
   .nav-section.mobile-active {
       display: flex;
       top: 110px;
   }
   
   .nav-links {
       flex-direction: column;
       gap: 1rem;
       align-items: stretch;
       width: 100%;
   }
   
   .nav-links li {
       width: 100%;
   }
   
   .nav-link {
       text-align: center;
       display: block;
       width: 100%;
       padding: 1rem;
       margin: 0;
       font-size: 1rem;
   }
   
   .search-container {
       margin: 0;
       width: 100%;
       order: 1;
   }
   
   .search-bar {
       width: 100%;
   }
   
   .search-bar:focus {
       width: 100%;
   }
   
   .header-controls {
       justify-content: center;
       width: 100%;
       order: 2;
   }
   
   main {
       padding: 1rem;
   }
   
   .hero {
       padding: 3rem 1.5rem;
       margin-bottom: 3rem;
   }
   
   .hero h1 {
       font-size: 2.5rem;
   }
   
   .hero p {
       font-size: 1.2rem;
   }
   
   .section-title {
       font-size: 2rem;
       margin-bottom: 2rem;
   }
   
   .category-grid {
       grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 1.5rem;
   }
   
   .product-grid {
       grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 1.5rem;
   }
   
   .filter-section {
       padding: 2rem;
   }
   
   .filter-grid {
       grid-template-columns: 1fr;
       gap: 1.5rem;
   }
   
   .cart-sidebar {
       width: 100%;
       right: -100%;
   }
   
   .footer-content {
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
   }
   
   .newsletter-form {
       flex-direction: column;
       gap: 1rem;
   }
   
   .about-content,
   .contact-content {
       padding: 3rem;
   }
   
   .contact-form {
       padding: 2rem;
   }
}

@media (max-width: 640px) {
   .hero h1 {
       font-size: 2.2rem;
   }
   
   .category-grid {
       grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   }
   
   .product-grid {
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   }
   
   .filter-section {
       padding: 1.5rem;
   }
   
   .cart-header,
   .cart-footer {
       padding: 1.5rem;
   }
}

@media (max-width: 480px) {
   .header-top {
       font-size: 0.75rem;
       padding: 0.4rem;
   }
   
   header {
       padding: 0.4rem 0.8rem;
   }
   
   .logo-text {
       font-size: 1.4rem;
   }
   
   .logo-image-custom {
       width: 45px;
       height: 45px;
   }
   
   .theme-switcher,
   .language-switcher {
       width: 36px;
       height: 36px;
       font-size: 0.85rem;
   }
   
   .cart-icon {
       padding: 0.5rem;
       font-size: 1rem;
   }
   
   .cart-count {
       width: 20px;
       height: 20px;
       font-size: 0.65rem;
   }
   
   .hero {
       padding: 2.5rem 1rem;
       border-radius: 25px;
   }
   
   .hero h1 {
       font-size: 1.8rem;
       margin-bottom: 1rem;
   }
   
   .hero p {
       font-size: 1rem;
       margin-bottom: 2rem;
   }
   
   .cta-button {
       padding: 1rem 2rem;
       font-size: 1rem;
   }
   
   .section-title {
       font-size: 1.8rem;
   }
   
   .category-grid {
       grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
       gap: 1rem;
   }
   
   .category-card {
       padding: 2rem 1.5rem;
   }
   
   .category-card h3 {
       font-size: 1.3rem;
   }
   
   .product-grid {
       grid-template-columns: 1fr;
       gap: 1.5rem;
   }
   
   .product-card {
       border-radius: 20px;
   }
   
   .product-info {
       padding: 1.2rem;
   }
   
   .filter-section {
       padding: 1.5rem;
       border-radius: 20px;
   }
   
   .filter-header h3 {
       font-size: 1.3rem;
   }
   
   .about-content,
   .contact-content {
       padding: 2rem;
       border-radius: 20px;
   }
   
   .contact-form {
       padding: 1.5rem;
   }
   
   .footer-content {
       grid-template-columns: 1fr;
       gap: 2rem;
   }
   
   .footer-section h4 {
       font-size: 1.2rem;
   }
   
   .social-links {
       justify-content: center;
   }
   
   .social-link {
       width: 45px;
       height: 45px;
       font-size: 1.1rem;
   }
   
   .nav-section.mobile-active {
       top: 95px;
       padding: 1.5rem;
   }
   
   .search-results {
       max-height: 300px;
   }
   
   .search-result-item {
       padding: 0.8rem;
   }
   
   .search-result-item img {
       width: 40px;
       height: 40px;
   }
}

/* Print styles */
@media print {
   .header-top,
   .nav-section,
   .breadcrumb,
   .loading-overlay,
   .notification,
   .cart-sidebar,
   .overlay,
   .background-animation,
   .mobile-menu-toggle,
   .theme-switcher,
   .language-switcher,
   .cart-icon {
       display: none !important;
   }
   
   body {
       background: white !important;
       color: black !important;
   }
   
   .hero,
   .category-card,
   .product-card,
   .filter-section {
       background: white !important;
       box-shadow: none !important;
       border: 1px solid #ccc !important;
   }
   
   .logo-text {
       color: black !important;
   }
   
   .section-title {
       color: black !important;
   }
}

/* High contrast mode */
@media (prefers-contrast: high) {
   :root {
       --glass-bg: rgba(255, 255, 255, 0.95);
       --glass-border: rgba(0, 0, 0, 0.3);
       --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.2);
       --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.3);
       --shadow-heavy: 0 12px 35px rgba(0, 0, 0, 0.4);
   }
   
   .nav-link,
   .category-card,
   .product-card {
       border: 2px solid var(--text-color);
   }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
   *,
   *::before,
   *::after {
       animation-duration: 0.01ms !important;
       animation-iteration-count: 1 !important;
       transition-duration: 0.01ms !important;
   }
   
   .particle {
       animation: none !important;
   }
   
   .background-animation {
       display: none;
   }
}

/* Focus styles for accessibility */
@media (prefers-reduced-motion: no-preference) {
   .nav-link:focus,
   .cta-button:focus,
   .btn-secondary:focus,
   .theme-switcher:focus,
   .language-switcher:focus,
   .cart-icon:focus {
       outline: 3px solid var(--primary-color);
       outline-offset: 2px;
   }
}