:root {
    --primary: #3a86ff;
    --primary-dark: #2667cc;
    --primary-light: #e6f0ff;
    --secondary: #8338ec;
    --accent: #ff006e;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --dark-gray: #333333;
    --gray: #666666;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    
    --rounded-sm: 4px;
    --rounded-md: 8px;
    --rounded-lg: 12px;
    --rounded-xl: 16px;
    --rounded-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 80px; /* Отступ для фиксированного header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--rounded-full);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 700px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--rounded-md);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background-color: var(--dark);
    color: white;
}

.btn-dark:hover {
    background-color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--dark);
}

.logo img {
    height: 42px;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

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

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

     /* Hero Section Styles */
    .hero {
        position: relative;
        padding: 120px 0 80px; /* Увеличил отступ сверху */
        overflow: hidden;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: white;
    }
    
    .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        position: relative;
        z-index: 2;
    }
    
    .hero-text {
        flex: 1;
        max-width: 600px;
        padding-top: 20px; /* Дополнительный отступ */
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: white; /* Основной цвет текста */
        background: linear-gradient(to right, #fff 30%, #a5b4fc 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Тень для лучшей читаемости */
    }
    
    .text-gradient {
        background: linear-gradient(90deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block; /* Исправляет отображение градиента */
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: #e2e8f0; /* Светлее для лучшей читаемости */
        max-width: 90%;
    }
    
    .hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .btn i {
        margin-right: 8px;
    }
    
    .btn-primary {
        background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
        color: white;
        border: none;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
    }
    
    .btn-outline {
        background: transparent;
        color: white;
        border: 2px solid #4b5563;
    }
    
    .btn-outline:hover {
        border-color: #6366f1;
        color: #6366f1;
    }
    
    .btn-shop {
        background: linear-gradient(90deg, #ec4899 0%, #f43f5e 100%);
        color: white;
        border: none;
        position: relative;
        z-index: 1;
    }
    
    .btn-shop:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -5px rgba(236, 72, 153, 0.4);
    }
    
    .btn-hover-effect {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
        z-index: -1;
    }
    
    .btn-shop:hover .btn-hover-effect {
        left: 100%;
    }
    
    .hero-image {
        position: relative;
        flex: 1;
        max-width: 600px;
    }
    
    .hero-main-image {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        transform-style: preserve-3d;
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
        animation: float 6s ease-in-out infinite;
    }
    
    .hero-image-badge {
        position: absolute;
        top: -20px;
        right: -20px;
        background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
        transform: rotate(5deg);
    }
    
    .badge-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .badge-title {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .badge-text {
        font-size: 1.1rem;
        font-weight: 800;
    }
    
    .hero-features {
        display: flex;
        gap: 20px;
        margin-top: 2rem;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: #a5b4fc;
    }
    
    .feature-item i {
        color: #6366f1;
    }
    
    .hero-scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #a5b4fc;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        animation: bounce 2s infinite;
    }
    
    .hero-bg-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.2;
        z-index: 1;
    }
    
    .hero-bg-shape-1 {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
        top: -100px;
        left: -100px;
    }
    
    .hero-bg-shape-2 {
        width: 600px;
        height: 600px;
        background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
        bottom: -200px;
        right: -200px;
    }
    
    .hero-bg-shape-3 {
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
        top: 50%;
        left: 30%;
    }
    
    .desktop-only {
        display: inline;
    }
    
    @keyframes float {
        0%, 100% {
            transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0);
        }
        50% {
            transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-20px);
        }
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) translateX(-50%);
        }
        40% {
            transform: translateY(-10px) translateX(-50%);
        }
        60% {
            transform: translateY(-5px) translateX(-50%);
        }
    }
    
    @media (max-width: 992px) {
        .hero {
            padding: 100px 0 60px; /* Уменьшил отступы для планшетов */
        }
        
        .hero-content {
            flex-direction: column;
            text-align: center;
        }
        
        .hero-text {
            max-width: 100%;
            padding-top: 0;
        }
        
        .hero-buttons {
            justify-content: center;
        }
        
        .hero-features {
            justify-content: center;
        }
        
        .hero-description {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-image {
            margin-top: 40px;
            max-width: 80%;
        }
        
        .hero-title {
            font-size: 2.8rem;
        }
        
        .desktop-only {
            display: none;
        }
    }
    
    @media (max-width: 768px) {
        .hero {
            padding: 80px 0 40px; /* Уменьшил отступы для мобильных */
        }
        
        .hero-title {
            font-size: 2.5rem;
            margin-top: 0;
            padding-top: 0;
        }
    }
    
    @media (max-width: 576px) {
        .hero {
            padding: 70px 0 30px; /* Дополнительное уменьшение отступов */
        }
        
        .hero-title {
            font-size: 2rem;
            line-height: 1.3;
        }
        
        .hero-description {
            font-size: 1rem;
        }
        
        .hero-buttons {
            flex-direction: column;
            gap: 10px;
        }
        
        .btn {
            width: 100%;
        }
        
        .hero-features {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .hero-image {
            max-width: 100%;
        }
        
        .hero-image-badge {
            top: -15px;
            right: -10px;
            padding: 8px 12px;
        }
    }

/* Categories Section */
.categories {
    background-color: var(--white);
}

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 320px;
    border: 1px solid var(--light-gray);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.category-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    margin-top: 0.5rem;
}

.category-link i {
    transition: var(--transition);
}

.category-link:hover i {
    transform: translateX(5px);
}


/* Products Section */
.products {
    background-color: #f8fafc;
}

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

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

.product-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--rounded-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.product-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: var(--rounded-full);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.product-action-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    color: #ffb400;
}

.product-rating span {
    color: var(--gray);
    font-size: 0.8rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

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

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

.product-add-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: var(--light-gray);
    color: var(--dark);
    border: none;
    border-radius: var(--rounded-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-add-btn:hover {
    background-color: var(--primary);
    color: white;
}

/* Stores Section */
.stores {
    background-color: var(--white);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.store-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.store-image {
    height: 200px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.store-content {
    padding: 1.5rem;
}

.store-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.store-address {
    color: var(--gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.store-hours {
    color: var(--gray);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.store-icon {
    color: var(--primary);
    margin-top: 0.2rem;
}

.store-map {
    height: 200px;
    margin-top: 1rem;
    border-radius: var(--rounded-md);
    overflow: hidden;
}

.store-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Loyalty Section */
.loyalty {
    background-color: #f8fafc;
}

.loyalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.loyalty-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
}

.loyalty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.loyalty-image {
    height: 200px;
    overflow: hidden;
}

.loyalty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.loyalty-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.loyalty-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.loyalty-discount {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.loyalty-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.loyalty-features {
    margin-bottom: 1.5rem;
}

.loyalty-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

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

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.about-image {
    position: relative;
    border-radius: var(--rounded-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-content {
    position: relative;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    border-radius: var(--rounded-md);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-feature-text {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-item {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-item:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

/* Для адаптивности на мобильных устройствах */
@media (max-width: 768px) {
    .contact-item {
        padding: 1.25rem;
    }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    /* Стили для отдельного контактного блока */
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: var(--rounded-full);
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--rounded-md);
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

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

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 5rem 0;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    width: 100%;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border-radius: var(--rounded-md);
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-full);
    transition: var(--transition);
    color: white;
}

.footer-social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--rounded-full);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .section {
padding: 5rem 0;
    }
    
    .hero-content {
gap: 2rem;
    }
    
    .hero-title {
font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
grid-template-columns: 1fr;
text-align: center;
    }
    
    .hero-buttons {
justify-content: center;
    }
    
    .hero-image {
margin-top: 3rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
    }
    
    .about-container {
grid-template-columns: 1fr;
    }
    
    .about-image {
order: -1;
max-width: 600px;
margin: 0 auto;
    }
    
    .contact-container {
grid-template-columns: 1fr;
    }
    
    .nav {
display: none;
    }
    
    .mobile-menu-btn {
display: block;
    }
}

@media (max-width: 768px) {
    .section {
padding: 4rem 0;
    }
    
    .section-title {
font-size: 2rem;
    }
    
    .hero-title {
font-size: 2.5rem;
    }
    
    .hero-description {
font-size: 1rem;
    }
    
    .hero-buttons {
flex-direction: column;
align-items: center;
    }
    
    .about-features {
grid-template-columns: 1fr;
    }
    
    .newsletter-form {
flex-direction: column;
    }
    
    .footer-container {
grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .section {
padding: 3rem 0;
    }
    
    .section-title {
font-size: 1.75rem;
    }
    
    .hero-title {
font-size: 2rem;
    }
    
    .btn {
padding: 0.6rem 1.25rem;
font-size: 0.9rem;
    }
    
    .footer-container {
grid-template-columns: 1fr;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 999;
    display: none;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

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

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-link.active {
    color: var(--primary);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: var(--rounded-lg);
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

/* Quick View Modal */
.quick-view {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.quick-view-image {
    border-radius: var(--rounded-lg);
    overflow: hidden;
}

.quick-view-image img {
    width: 100%;
    height: auto;
}

.quick-view-content {
    display: flex;
    flex-direction: column;
}

.quick-view-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.quick-view-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.quick-view-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-gray);
    border-radius: var(--rounded-md);
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.quantity-input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    font-family: inherit;
    font-weight: 600;
}

 .cookie-consent {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 380px;
        background-color: #2667cc;
        color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        font-family: Arial, sans-serif;
        display: none;
    }
    
    .cookie-close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        cursor: pointer;
    }
    
    .cookie-content {
        display: flex;
        margin-bottom: 15px;
    }
    
    .cookie-icon {
        font-size: 24px;
        margin-right: 15px;
        color: white;
    }
    
    .cookie-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .cookie-text a {
        color: white;
        text-decoration: underline;
    }
    
    .cookie-accept {
        width: 100%;
        padding: 10px;
        background-color: white;
        color: #2667cc;
        border: none;
        border-radius: 4px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .cookie-accept:hover {
        background-color: #f0f0f0;
    }