@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #0f0f12;
    --bg-tertiary: #141418;
    --bg-card: #18181c;
    --bg-card-hover: #1e1e24;
    
    --accent-primary: #00ff88;
    --accent-secondary: #00ccff;
    --accent-tertiary: #ff3366;
    --accent-warning: #ffaa00;
    
    --accent-gradient: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    --accent-glow: 0 0 30px rgba(0, 255, 136, 0.4);
    --accent-glow-blue: 0 0 30px rgba(0, 204, 255, 0.4);
    
    --text-primary: #e8e8ec;
    --text-secondary: #8888a0;
    --text-muted: #4a4a5c;
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-highlight: rgba(0, 255, 136, 0.3);
    
    --danger: #ff3366;
    --success: #00ff88;
    --warning: #ffaa00;
    
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.6);
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.015) 2px,
            rgba(0, 255, 136, 0.015) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 255, 136, 0.02) 100px,
            rgba(0, 255, 136, 0.02) 101px
        ),
        radial-gradient(ellipse 100% 60% at 50% -10%, rgba(0, 255, 136, 0.08), transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(0, 204, 255, 0.05), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

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

a:hover {
    color: var(--accent-secondary);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-content {
    flex: 1;
    padding-bottom: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.orbitron {
    font-family: 'Orbitron', sans-serif;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Header */
.main-header {
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.5;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    font-size: 1rem;
    color: #000;
    font-weight: 900;
}

.main-nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: var(--transition);
}

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

.nav-link:hover, .nav-link.active {
    color: var(--accent-primary);
}

.nav-link:hover::before, .nav-link.active::before {
    width: 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.mobile-nav .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(10, 10, 12, 0.9) 100%),
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 255, 136, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    max-width: 900px;
    animation: fadeIn 0.8s ease forwards;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 8px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 32px;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
}

.btn-primary::after {
    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 ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--accent-glow);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.1);
}

/* Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

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

/* Categories */
.categories-section { padding: 80px 0; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    transform: translateY(-4px);
}

.category-card:hover::before { transform: scaleX(1); }

.category-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
    filter: grayscale(0.5) brightness(0.8);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    filter: grayscale(0) brightness(1);
}

.category-name {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Products */
.products-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--accent-primary) transparent transparent;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

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

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 40%, rgba(0, 255, 136, 0.03) 100%);
}

.product-image img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.product-card:hover .product-image img { 
    transform: scale(1.1) rotate(2deg); 
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 1;
}

.badge-new { 
    background: var(--accent-primary); 
    color: #000; 
}

.badge-sale { 
    background: var(--danger); 
    color: white; 
}

.product-info { padding: 20px; }

.product-category {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-name a { color: var(--text-primary); }
.product-name a:hover { color: var(--accent-primary); }

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.price-current {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stock-indicator {
    width: 6px;
    height: 6px;
}

.stock-in { 
    background: var(--success); 
    box-shadow: 0 0 8px var(--success); 
}

.stock-low { 
    background: var(--warning); 
    box-shadow: 0 0 8px var(--warning); 
}

.stock-out { 
    background: var(--danger); 
}

.product-actions { display: flex; gap: 8px; }

.btn-add-cart {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    border-radius: var(--radius-sm);
}

.btn-add-cart:hover {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
    box-shadow: var(--accent-glow);
}

.btn-add-cart:disabled {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    border-color: var(--border-color);
    cursor: not-allowed;
}

.btn-add-cart[href] { text-decoration: none; display: inline-block; }

/* Sale Strip */
.sale-strip {
    padding: 60px 0;
    background: 
        linear-gradient(135deg, rgba(255, 51, 102, 0.08) 0%, rgba(0, 255, 136, 0.08) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.sale-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 51, 102, 0.03) 10px,
        rgba(255, 51, 102, 0.03) 20px
    );
}

.sale-strip .section-title {
    background: linear-gradient(90deg, var(--danger), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
    margin-top: auto;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
    transform: translateY(-4px);
    box-shadow: var(--accent-glow);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}
.footer-links a:hover { 
    color: var(--accent-primary); 
    transform: translateX(6px);
}

.footer-contact { list-style: none; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.footer-contact svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.delivery-note {
    margin-top: 10px;
    color: var(--accent-primary);
    font-weight: 500;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

/* Forms */
.form-group { margin-bottom: 24px; }

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

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

.form-textarea { min-height: 140px; resize: vertical; }

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

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

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

@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-nav.active { display: flex; }
    
    .hero { min-height: 70vh; padding: 100px 20px 60px; }
    .hero-title { font-size: 2rem; }
    
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .category-card { padding: 18px 12px; }
    .category-icon { font-size: 1.8rem; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .btn { padding: 12px 20px; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Loading */
.loading { display: flex; align-items: center; justify-content: center; padding: 80px; }
.spinner {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Toast */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    min-width: 320px;
    box-shadow: var(--shadow-card);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

.toast-success { border-left: 3px solid var(--success); }
.toast-error { border-left: 3px solid var(--danger); }

/* Breadcrumb */
.breadcrumb { padding: 100px 0 20px; }

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb-item a { color: var(--text-secondary); }
.breadcrumb-item a:hover { color: var(--accent-primary); }
.breadcrumb-separator { color: var(--text-muted); }
.breadcrumb-item.active { color: var(--text-primary); }

/* Empty State */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state-icon { font-size: 4rem; margin-bottom: 20px; opacity: 0.5; }
.empty-state-title { font-size: 1.5rem; margin-bottom: 12px; }
.empty-state-text { color: var(--text-secondary); margin-bottom: 24px; }

/* ===== SMOOTH ANIMATIONS ===== */

/* Page Load Animation */
@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

.main-content {
    animation: pageLoad 0.6s ease forwards;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid items */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }
.reveal:nth-child(7) { transition-delay: 0.3s; }
.reveal:nth-child(8) { transition-delay: 0.35s; }
.reveal:nth-child(9) { transition-delay: 0.4s; }
.reveal:nth-child(10) { transition-delay: 0.45s; }
.reveal:nth-child(11) { transition-delay: 0.5s; }
.reveal:nth-child(12) { transition-delay: 0.55s; }

/* Smooth hover lift for all cards */
.category-card,
.product-card,
.social-link {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced product image zoom */
.product-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 20px 40px rgba(0,255,136,0.2));
}

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Smooth link underline animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

/* Logo pulse animation */
.logo-icon {
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(0,255,136,0.5));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(0,255,136,0.8));
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Gradient text shimmer */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-title .highlight {
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

/* Smooth section transitions */
.section-header,
.section-title,
.section-subtitle {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer links smooth slide */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Toast slide with bounce */
@keyframes slideInBounce {
    0% { opacity: 0; transform: translateX(100%) scale(0.8); }
    70% { transform: translateX(-10px) scale(1.02); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.toast {
    animation: slideInBounce 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading spinner glow */
.spinner {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    animation: spin 1s linear infinite, spinnerGlow 2s ease-in-out infinite;
}

@keyframes spinnerGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.6); }
}

/* Input focus smooth glow */
.form-input, .form-select, .form-textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.15);
}

/* Smooth mobile menu */
.mobile-menu-btn {
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Smooth breadcrumb */
.breadcrumb-item {
    transition: all 0.3s ease;
}

.breadcrumb-item:hover {
    transform: translateX(4px);
}

/* Smooth price change animation */
@keyframes priceUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: var(--accent-primary); }
    100% { transform: scale(1); }
}

.price-current {
    animation: priceUpdate 0.5s ease;
}

/* Category icon float on hover */
.category-card:hover .category-icon {
    transform: translateY(-5px);
}

/* Smooth stock indicator pulse */
.stock-indicator {
    animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Decorative corner borders */
.product-card::before,
.category-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    pointer-events: none;
}

.product-card::before {
    top: 0;
    left: 0;
    border-top-color: var(--accent-primary);
    border-left-color: var(--accent-primary);
    opacity: 0;
}

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

/* Smooth section fade in on scroll */
.products-section,
.categories-section,
.sale-strip {
    position: relative;
}

/* Custom cursor on interactive elements */
.category-card,
.product-card,
.btn,
.social-link {
    cursor: pointer;
}

/* Smooth image lazy load placeholder */
.product-image {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Smooth scroll progress indicator (optional - add JS to enable) */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent-gradient);
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
}