/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ============================================
       ВАРИАНТ 1: Синий/Голубой
       Профессиональный, медицинский, доверительный
       Раскомментируйте эти строки и закомментируйте ВАРИАНТ 2
       ============================================
    --primary-color: #4a90e2;
    --secondary-color: #2d2d2d;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent: #4a90e2;
    --accent-hover: #357abd;
    --accent-rgba-light: rgba(74, 144, 226, 0.1);
    --accent-rgba-medium: rgba(74, 144, 226, 0.2);
    --accent-rgba-strong: rgba(74, 144, 226, 0.4);
    --accent-rgba-shadow: rgba(74, 144, 226, 0.3);
    --accent-rgba-glow: rgba(74, 144, 226, 0.5);
    --accent-rgba-glow-strong: rgba(74, 144, 226, 0.8);
    --danger: #ff3366;
    --transition: all 0.3s ease;
    */
    
    /* ============================================
       ВАРИАНТ 2: Фиолетовый/Пурпурный
       Премиум, роскошь, элегантность
       Раскомментируйте эти строки и закомментируйте ВАРИАНТ 3
       ============================================
    --secondary-color: #2d2d2d;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --primary-color: #9b59b6;
    --accent: #9b59b6;
    --accent-hover: #8e44ad;
    --accent-rgba-light: rgba(155, 89, 182, 0.1);
    --accent-rgba-medium: rgba(155, 89, 182, 0.2);
    --accent-rgba-strong: rgba(155, 89, 182, 0.4);
    --accent-rgba-shadow: rgba(155, 89, 182, 0.3);
    --accent-rgba-glow: rgba(155, 89, 182, 0.5);
    --accent-rgba-glow-strong: rgba(155, 89, 182, 0.8);
    --danger: #ff3366;
    --transition: all 0.3s ease;
    */
    
    /* ============================================
       ВАРИАНТ 3: Золотой/Оранжевый (ТЕКУЩИЙ)
       Теплый, энергичный, премиум
       ============================================ */
    --secondary-color: #2d2d2d;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --primary-color: #f39c12;
    --accent: #f39c12;
    --accent-hover: #e67e22;
    --accent-rgba-light: rgba(243, 156, 18, 0.1);
    --accent-rgba-medium: rgba(243, 156, 18, 0.2);
    --accent-rgba-strong: rgba(243, 156, 18, 0.4);
    --accent-rgba-shadow: rgba(243, 156, 18, 0.3);
    --accent-rgba-glow: rgba(243, 156, 18, 0.5);
    --accent-rgba-glow-strong: rgba(243, 156, 18, 0.8);
    --danger: #ff3366;
    --transition: all 0.3s ease;
    
    /* ============================================
       ВАРИАНТ 4: Индиго/Циан
       Современный, технологичный, динамичный
       Раскомментируйте эти строки и закомментируйте ВАРИАНТ 3
       ============================================
    --secondary-color: #2d2d2d;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --primary-color: #00d4ff;
    --accent: #00d4ff;
    --accent-hover: #00b8e6;
    --accent-rgba-light: rgba(0, 212, 255, 0.1);
    --accent-rgba-medium: rgba(0, 212, 255, 0.2);
    --accent-rgba-strong: rgba(0, 212, 255, 0.4);
    --accent-rgba-shadow: rgba(0, 212, 255, 0.3);
    --accent-rgba-glow: rgba(0, 212, 255, 0.5);
    --accent-rgba-glow-strong: rgba(0, 212, 255, 0.8);
    --danger: #ff3366;
    --transition: all 0.3s ease;
    */
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
    z-index: 1000;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
}

.logo span {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1000;
}

.language-selector-wrapper {
    position: relative;
}

.language-selector {
    background: var(--secondary-color);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 32px;
    min-width: 60px;
}

.language-toggle-btn {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1002;
}

.language-toggle-btn:hover {
    background: var(--accent);
    color: var(--dark-bg);
}

.language-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    transition: right 0.3s ease;
    padding: 80px 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.language-menu.active {
    right: 0;
}

.language-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.language-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.language-menu h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.language-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.language-menu-item:hover {
    background: var(--accent);
    color: var(--dark-bg);
    transform: translateX(5px);
}

.language-menu-item.active {
    border-color: var(--accent);
    background: var(--accent-rgba-light);
}

.language-menu-item span {
    margin-left: 1rem;
    font-weight: 500;
}

.language-selector:hover {
    background-color: var(--accent);
    color: var(--dark-bg);
    border-color: var(--accent);
}

.language-selector:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-rgba-light);
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
}

.btn-icon:hover {
    background: var(--accent);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-icon.active {
    background: var(--accent);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--accent-rgba-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--accent-rgba-glow);
    }
    50% {
        box-shadow: 0 0 30px var(--accent-rgba-glow-strong);
    }
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1004;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    display: block;
    border-radius: 2px;
}

.mobile-toggle:active span {
    background: var(--accent);
}

/* Hero Section with Swiper */
.hero {
    height: calc(100vh - 80px);
    margin-top: 80px;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-swiper .swiper-slide {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-rgba-light), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px var(--accent-rgba-shadow);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent);
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px var(--accent-rgba-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark-bg);
    transform: translateY(-3px) scale(1.05);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--secondary-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-rgba-light), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px var(--accent-rgba-shadow);
    border-color: var(--accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* Section Title */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent);
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: stretch;
}

/* Center last row when there are 5 cards (2 cards in second row) - Desktop only */
@media (min-width: 1025px) {
    /* Place cards in columns 1 and 2, shift both right to center */
    .categories-grid .category-card:nth-child(4) {
        grid-column: 1;
        position: relative;
        left: calc(50% + 1rem); /* Shift right by 1.5 columns + gap to center both cards */
    }

    .categories-grid .category-card:nth-child(5) {
        grid-column: 2;
        position: relative;
        left: calc(50% + 1rem); /* Shift right by same amount */
    }
    
    /* Ensure hover transform works correctly with position */
    .categories-grid .category-card:nth-child(4):hover,
    .categories-grid .category-card:nth-child(5):hover {
        transform: translateY(-15px) rotateX(5deg);
    }
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--secondary-color);
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    display: block;
}

.category-card > * {
    pointer-events: none;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-rgba-medium), rgba(0, 0, 0, 0.8));
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(135deg, var(--accent-rgba-strong), rgba(0, 0, 0, 0.6));
}

.category-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.category-content i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: var(--transition);
    filter: drop-shadow(0 0 20px var(--accent-rgba-glow));
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.category-content p {
    color: var(--text-gray);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 60px var(--accent-rgba-strong);
}

.category-card:hover .category-content i {
    transform: scale(1.2) rotate(5deg);
}

.category-card:hover .category-content h3 {
    color: var(--accent);
}

/* Products Grid */
.popular-products {
    padding: 100px 0;
    background: var(--dark-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-rgba-light);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-card:hover::after {
    width: 300px;
    height: 300px;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px var(--accent-rgba-shadow);
    border-color: var(--accent);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #1f1f1f;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.product-name {
    font-size: 1rem;
    margin-bottom: 1rem;
    min-height: 48px;
    color: var(--text-light);
    transition: var(--transition);
}

.product-card:hover .product-name {
    color: var(--accent);
}

.product-price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.product-card:hover .product-price {
    transform: scale(1.1);
}

/* Product quantity control on homepage */
.product-quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    padding: 0;
    width: 100%;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.product-quantity-control .btn-quantity {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.product-quantity-control .btn-quantity:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

.product-quantity-control .quantity-value {
    min-width: 40px;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    user-select: none;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    align-items: flex-end;
}

.text-center {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-rgba-light), rgba(0, 0, 0, 0.9));
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--accent-rgba-light), rgba(0, 0, 0, 0.9));
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* Main Content Area */
.page-header,
.cart-section,
.checkout-section,
.orders-section,
.products-filter-section,
.products-section,
.hero,
.features,
.categories,
.popular-products,
.faq,
.cta {
    flex: 0 0 auto;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--accent);
    color: var(--dark-bg);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px var(--accent-rgba-shadow);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    font-weight: 600;
}

.notification i {
    font-size: 1.3rem;
}

.notification.fade-out {
    animation: slideOutRight 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.7rem 0;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .btn-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .language-selector {
        display: none;
    }
    
    .language-toggle-btn {
        display: flex;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .mobile-toggle {
        display: flex !important;
        order: 2;
        z-index: 1004 !important;
        position: relative;
        pointer-events: auto !important;
    }
    
    .language-toggle-btn {
        order: 1;
    }
    
    .mobile-toggle:active {
        transform: scale(0.95);
        opacity: 0.8;
    }
    
    .mobile-toggle:focus {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }
    
    .mobile-toggle:hover {
        opacity: 0.8;
    }
    
    .btn-icon {
        order: 0;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        top: -3px;
        right: -3px;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: auto;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        padding: 2rem;
        z-index: 1001;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        font-size: 0.9rem;
        top: 70px;
    }
    
    .page-header {
        margin-top: 60px;
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}
