
        /* CSS Variables and Global Styles */
        :root {
            --bg-dark: #0d1117;
            --bg-medium: #161b22;
            --bg-light: #21262d;
            --border-color: #30363d;
            --primary-blue: #388bfd;
            --primary-blue-hover: #58a6ff;
            --text-light: #e6edf3;
            --text-dark: #7d8590;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2, h3 {
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.2rem; text-align: center; margin-bottom: 50px; }
        h3 { font-size: 1.5rem; }

        p {
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        section {
            padding: 80px 0;
        }
        
        hr.section-divider {
            border: 0;
            border-top: 1px solid var(--border-color);
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary-blue);
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--primary-blue-hover);
            transform: translateY(-2px);
        }
        
        /* Header & Navigation */
        .header {
            background-color: #0d1117;
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-color);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--text-light);
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .header-contact svg {
            width: 22px;
            height: 22px;
            fill: var(--text-light);
        }

        .header-contact a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
        }

        .hamburger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }
        
        .hamburger-menu .bar {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        #hero {
            padding-top: 100px;
            min-height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content .subtitle {
            font-size: 1.2rem;
            color: var(--text-dark);
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .hero-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        .hero-contact svg {
            width: 22px;
            height: 22px;
            fill: var(--text-light);
        }

        .hero-contact a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        
        .hero-contact a:hover {
            color: var(--primary-blue-hover);
        }

        /* Services Section */
        #services {
            background-color: var(--bg-medium);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--bg-light);
            padding: 30px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: transform 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
        }

        .service-card .icon {
            width: 50px;
            height: 50px;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        /* === NEW: Prices Section === */
        #prices {
            background-color: var(--bg-dark);
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .price-card {
            background-color: var(--bg-light);
            padding: 30px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        
        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .price-card h3 {
            font-size: 1.3rem;
            flex-grow: 1; /* Pushes price and note to bottom */
        }
        
        .price-tag {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin: 20px 0 5px 0;
        }
        
        .price-note {
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 30px;
            min-height: 20px; /* Reserve space for note */
        }

        /* Portfolio Section - Slider */
        #portfolio {
            background-color: var(--bg-medium);
        }
        .slider-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            height: 500px;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .slider-nav button {
            pointer-events: all;
            background-color: rgba(13, 17, 23, 0.6);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background-color 0.3s ease;
        }

        .slider-nav button:hover {
            background-color: var(--primary-blue);
        }
        
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--text-dark);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--primary-blue);
        }

        /* About Company Section */
        #about {
            background-color: var(--bg-dark);
        }

        .about-wrapper {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            text-align: left;
        }

        .about-image {
            flex-basis: 40%;
            max-width: 400px;
        }

        

        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
            text-align: center;
        }

        .stat-item .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .stat-item .stat-label {
            color: var(--text-dark);
        }
        
        /* Consultation Section */
        .consultation-banner {
            background-color: var(--primary-blue);
            padding: 40px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 80px;
        }

        .consultation-text {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .consultation-banner .btn {
            background-color: #fff;
            color: var(--primary-blue);
            font-weight: 700;
        }

        /* Footer */
        .footer {
            background-color: #0d1117;
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .footer-content p {
            margin: 0;
            color: var(--text-dark);
        }
        
        .footer-links a {
            color: var(--text-dark);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-blue);
        }

        .footer-socials {
            margin-top: 10px;
        }

        .footer-socials a {
            display: inline-block;
            margin: 0 10px;
        }
        
        .footer-socials svg {
            width: 32px;
            height: 32px;
            fill: var(--text-dark);
            transition: fill 0.3s ease;
        }
        
        .footer-socials a:hover svg {
            fill: var(--text-light);
        }

        /* Modal Form */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1001;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            width: 90%;
            max-width: 500px;
            position: relative;
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-content h3 {
            margin-top: 0;
            text-align: center;
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close-btn:hover {
            color: var(--text-light);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .header-contact {
                display: none;
            }
        }
        
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            section { padding: 60px 0; }
            .about-wrapper { flex-direction: column; }
            .about-text h2 { text-align: center; }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--bg-medium);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.4s ease-in-out;
                border-bottom: 1px solid var(--border-color);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 15px 0;
            }

            .navbar .btn {
                display: none;
            }

            .hamburger-menu {
                display: flex;
            }
            
            .hamburger-menu.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .hamburger-menu.active .bar:nth-child(2) {
                opacity: 0;
            }
            .hamburger-menu.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            #hero { text-align: center; }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .consultation-banner {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            body { font-size: 15px; }
            .stats-container {
                grid-template-columns: 1fr;
            }
        }
        .prices-grid {
            display: grid;
            gap: 30px;
            /* Մեծ էկրանների (768px-ից բարձր) համար՝ 2 սյունակ */
            grid-template-columns: repeat(2, 1fr);
        }

        /* Փոքր էկրանների (մինչև 767px) համար՝ 1 սյունակ */
        @media (max-width: 767px) {
            .prices-grid {
                grid-template-columns: 1fr;
            }
        }
        /* --- Стили для секции с ценами --- */

/* Сетка для карточек */
.prices-grid {
    display: grid;
    gap: 30px;
    /* Для десктопов и планшетов — 2 колонки */
    grid-template-columns: repeat(2, 1fr);
}

/* Для мобильных устройств — 1 колонка */
@media (max-width: 767px) {
    .prices-grid {
        grid-template-columns: 1fr;
    }
}

/* Общий стиль карточки */
.price-card {
    position: relative; /* Необходимо для позиционирования маски */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden; /* Скрывает части фона, выходящие за рамки */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px; /* Минимальная высота для красивого отображения фона */
    
    /* Свойства фона, будут применены через JS */
    background-size: cover;
    background-position: center center;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Затемняющая маска (overlay) через псевдоэлемент */
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 17, 23, 0.65); /* Полупрозрачный фон */
    z-index: 1; /* Маска находится под контентом */
    transition: background-color 0.3s ease;
}

.price-card:hover::before {
    background-color: rgba(13, 17, 23, 0.5); /* При наведении маска становится светлее */
}

/* Контейнер для текста и кнопки */
.price-card__content {
    position: relative;
    z-index: 2; /* Контент всегда поверх маски */
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

/* Заголовок услуги */
.price-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    flex-grow: 1; /* Отодвигает цену и кнопку вниз */
}

/* Цена */
.price-tag {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffc107; /* Яркий жёлтый цвет для акцента */
    margin: 20px 0 5px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Заметка под ценой */
.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    min-height: 20px;
}

/* Кнопка внутри карточки */
.price-card .btn {
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.price-card .btn:hover {
    background-color: var(--primary-blue-hover);
    border-color: var(--primary-blue-hover);
}
#advantages {
        background-color: var(--bg-dark);
    }
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    .advantage-card {
        background-color: var(--bg-light);
        padding: 30px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        text-align: center;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .advantage-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-blue);
    }
    .advantage-card .icon {
        width: 50px;
        height: 50px;
        color: var(--primary-blue);
        margin-bottom: 20px;
    }
    .advantage-card h3 {
        margin-bottom: 10px;
    }

    /* === (ՆՈՐ) Секция Каталог === */
    #catalog {
        background-color: var(--bg-medium);
    }
    .catalog-filters {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    .btn-filter {
        background-color: transparent;
        border: 1px solid var(--border-color);
        color: var(--text-dark);
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    .btn-filter:hover,
    .btn-filter.active {
        background-color: var(--primary-blue);
        border-color: var(--primary-blue);
        color: #fff;
    }
    .catalog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    .product-card {
        background-color: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .product-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-bottom: 1px solid var(--border-color);
    }
    .product-card-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .product-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .product-card .product-price {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary-blue);
        margin-bottom: 20px;
        flex-grow: 1; /* Հրում է կոճակը ներքև */
    }

    /* === (ՆՈՐ) Секция Галерея === */
    #gallery {
        background-color: var(--bg-dark);
    }
    .gallery-grid {
        columns: 3; /* Masonry էֆեկտ */
        column-gap: 15px;
    }
    .gallery-item {
        margin-bottom: 15px;
        break-inside: avoid; /* Կանխում է նկարի կիսվելը սյուների միջև */
    }
    .gallery-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        display: block;
        transition: opacity 0.3s ease;
    }
    .gallery-item img:hover {
        opacity: 0.8;
    }
    /* Ադապտիվություն պատկերասրահի համար */
    @media (max-width: 768px) {
        .gallery-grid { columns: 2; }
    }
    @media (max-width: 480px) {
        .gallery-grid { columns: 1; }
    }

    /* === (ՆՈՐ) Секция Контактная форма === */
    #contact-form {
        background-color: var(--bg-medium);
    }
    .contact-form-embedded {
        max-width: 700px;
        margin: 0 auto;
        background-color: var(--bg-light);
        padding: 30px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }
    /* Օգտագործում ենք մոդալ պատուհանի ոճերը */
    .contact-form-embedded .form-group input,
    .contact-form-embedded .form-group textarea {
        background-color: var(--bg-dark);
    }
    .contact-form-embedded .btn {
        width: 100%;
    }









































































        .benefits {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .benefit-card {
            text-align: center;
            padding: 30px;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: var(--light-gray);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
        }

        .benefit-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .benefit-card p {
            color: #666;
        }

        /* Categories Section */
        .section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .category-card {
            background: var(--light-gray);
            border-radius: 16px;
            padding: 40px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            color: var(--dark-gray);
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .category-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .category-card h3 {
            font-size: 18px;
            font-weight: 600;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .product-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 280px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
        }

        .product-info {
            padding: 25px;
        }

        .product-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        /* About Section */
        .about-teaser {
            max-width: 1200px;
            margin: 80px auto;
            padding: 60px 40px;
            background: var(--light-gray);
            border-radius: 20px;
            text-align: center;
        }

        .about-teaser h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .about-teaser p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Reviews Section */
        .reviews {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 16px;
            padding: 30px;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            font-size: 20px;
        }

        .review-author {
            flex: 1;
        }

        .review-name {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .review-stars {
            color: #FFD700;
        }

        .review-text {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 60px 40px 30px;
            margin-top: 100px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .footer-brand p {
            color: #999;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: 0.3s;
        }

        .social-links a:hover {
            background: var(--primary-green);
        }

        .footer-links h4 {
            margin-bottom: 20px;
            font-size: 16px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: #999;
      
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-green);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: #999;
        }

        /* Product Page Styles */
        .product-detail {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 40px;
        }

        .product-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .product-gallery {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .main-image {
            width: 100%;
            height: 500px;
            background: var(--light-gray);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
        }

        .thumbnail-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .thumbnail {
            height: 100px;
            background: var(--light-gray);
            border-radius: 12px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: 0.3s;
        }

        .thumbnail:hover {
            border-color: var(--primary-green);
        }

        .product-details h1 {
            font-size: 40px;
            margin-bottom: 20px;
        }

        .product-description {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
        }


        .features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .features-list li {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-gray);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            color: var(--primary-green);
        }

        .marketplace-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .btn-marketplace {
            flex: 1;
            text-align: center;
        }

        /* Contact Form */
        .contact-page {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 40px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border-gray);
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            transition: 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .contact-info {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 16px;
        }

        .contact-item {
            margin-bottom: 30px;
        }

        .contact-item h3 {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-item p {
            color: #666;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .categories {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .product-layout {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                padding: 40px;
                transition: 0.3s;
            }
            #hero{
                min-height: 60vh;
            }
            .hero-contact{
                height: 100%;
                display: flex;
  
            }
            .nav-links.active {
                left: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .categories {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .reviews {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 32px;
            }

            nav {
                padding: 20px;
            }

            .section {
                padding: 0 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .marketplace-buttons {
                flex-direction: column;
            }
            nav {
            /* Уменьшаем отступы на мобильных */
            padding: 15px 20px;
        }
        
   

 
        .nav-links {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px; 
            position: fixed;
            top: 50px; 
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background: var(--white);
            padding: 40px;
            font-size: 20px;     
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }
        

      

        /* Уменьшаем боковые отступы на всей странице товара */
        .product-detail {
            padding: 0 20px;
        }
        
        /* Уменьшаем разрыв между галереей и описанием */
        .product-layout {
            gap: 30px;
        }

        /* --- Исправление product-gallery --- */
        .main-image {
            /* Главная картинка была слишком высокой (500px) */
            height: 350px; 
            
            /* * У вас inline-стили, поэтому используем !important, 
            * чтобы 'contain' (полностью) показывал товар вместо 'cover' (обрезка)
            */
            background-size: contain !important;
            background-position: center !important;
        }

        .thumbnail-gallery {
            /* !! ВАЖНО: Позволяем миниатюрам переноситься на новую строку */
            flex-wrap: wrap; 
            justify-content: flex-start;
            
            /* Убираем конфликтующий grid-template-columns */
            grid-template-columns: none; 
        }

        .thumbnail {
            /* Делаем миниатюры чуть меньше, чтобы больше помещалось */
            width: 70px;
            height: 70px;
        }
        
        /* --- Исправление product-price и h1 --- */
        .product-details h1 {
            font-size: 28px; /* Уменьшаем огромный заголовок */
        }

        .product-price {
            font-size: 22px; /* Уменьшаем цену */
            margin-bottom: 25px;
        }
        
        /* --- Исправление marketplace-buttons --- */
        /* (Этот стиль у вас был, но мы его подтверждаем) */
        .marketplace-buttons {
            flex-direction: column;
        }

        .btn-marketplace {
            flex: 1; /* Кнопки растянутся на всю ширину */
        }
        .buttons button{
            padding: 2px 5px;
        }
        .lis{
            margin-left: 25px;
        }
   

          .buttons button {
        padding: 3px 6px;
        border-radius: 6px;
        backdrop-filter: blur(4px);
        border-width: 1px;
        background: rgba(255, 255, 255, 0.5);
        transition: all 0.25s ease;
    }

    .buttons a {
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    .buttons button:hover {
        transform: none; /* առանց թռիչքի, որպեսզի չշարժի header-ը */
        background: rgba(255, 255, 255, 0.7);
    }
        }

        /* Page transitions */
        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* small utility */
        .muted { color: #777; }
        .logo {
            font-weight: 700;
            color: var(--text-color);
            line-height: 1; /* Որպեսզի նկարը ճիշտ դասավորվի */
        }
        .logo:hover { color: var(--text-color); }

        .logo img {
            display: block;
            transform: scale(2);
            width: 10%;
            object-fit: contain;
          }
          .thumbnail-gallery {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .thumbnail.active {
            border-color: #34C759;
            transform: scale(1.05);
        }
 
        



        .buttons {
            display: flex;
            gap: 8px;
            align-items: center;
            justify-content: center;
            font-family: inherit;
            position: relative;
            z-index: 5;
        }

        .buttons button {
            border-radius: 8px;
            padding: 4px 10px;
            cursor: pointer;
            transition: all 0.25s ease;
            backdrop-filter: blur(6px);
            border: 1px solid #246bf3;
            background: rgba(255, 255, 255, 0.4);
        }

        .buttons a {
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 0.5px;
            color: #333;
        }

        .buttons button:hover {
            background: rgba(0, 0, 0, 0.05);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-1px);
        }

        .buttons button:active {
            transform: scale(0.96);
            background: rgba(255, 255, 255, 0.25)
        }
        /* Footer */
        .site-footer {
        background:#1e2328;
        color:#dfe6e9;
        padding:40px 0;
        font-size:14px;
        }
        .footer-grid {
        display:grid;
        grid-template-columns: repeat(4,1fr);
        gap:24px;
        }
        .footer-col h4 { color:#ffd97a; margin-bottom:8px; }
        .footer-col a { color:#dfe6e9; text-decoration:none; }
        .footer-col a:hover { color:#ffd97a; }

    
     
        @media(max-width:900px){ .footer-grid{ grid-template-columns:repeat(1,1fr); } .cookie-banner{ flex-direction:column; text-align:center; } }



















    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }












    
        /* Header & Navigation */
        .header {
            background-color: #0d1117;
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-color);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--text-light);
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .header-contact svg {
            width: 22px;
            height: 22px;
            fill: var(--text-light);
        }

        .header-contact a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
        }









        @media (max-width: 768px) {
                .nav-links {
                    position: fixed;
                    top: 70px;
                    left: 0;
                    width: 100%;
                    background-color: var(--bg-medium);
                    flex-direction: column;
                    align-items: center;
                    padding: 20px 0;
                    transform: translateY(-150%);
                    transition: transform 0.4s ease-in-out;
                    border-bottom: 1px solid var(--border-color);
                }
                
                .nav-links.active {
                    transform: translateY(0);
                }

                .nav-links li {
                    margin: 15px 0;
                }

                .navbar .btn {
                    display: none;
                }

                .hamburger-menu {
                    display: flex;
                }
                
                .hamburger-menu.active .bar:nth-child(1) {
                    transform: translateY(8px) rotate(45deg);
                }
                .hamburger-menu.active .bar:nth-child(2) {
                    opacity: 0;
                }
                .hamburger-menu.active .bar:nth-child(3) {
                    transform: translateY(-8px) rotate(-45deg);
                }
                }















