
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #34C759;
            --dark-gray: #333333;
            --light-gray: #F5F5F7;
            --white: #FFFFFF;
            --border-gray: #E5E5E7;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark-gray);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin-inline: auto;
            padding-inline: 1rem;
        }

        /* Header */
        header {
            /* background: var(--white); */
            background-color: white;
            border-bottom: 1px solid var(--border-gray);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s;
            padding: 0 5%;
        }

        header.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark-gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transform: scale(1.1);
            color: #34C759;
        }

        .logo-icon {
            width: 25px;
            height: 25px;
            background: var(--primary-green);
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--dark-gray);
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 40px;
            text-align: center;
        }

        .hero-banner {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            z-index: 1;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        .hero-subtitle {
            font-size: 24px;
            color: #666;
            margin-bottom: 40px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 16px 40px;
            background: var(--primary-green);
            color: var(--white);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(52, 199, 89, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--dark-gray);
            border: 2px solid var(--border-gray);
        }

        .btn-secondary:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
            box-shadow: none;
        }

        /* Benefits Section */
        .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;
            }

            .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;
        }
        
        .logo img {

            /* Делаем логотип чуть меньше на мобильных */
            height: 45px;
        }

        /* * Улучшаем анимацию мобильного меню.
        * Вместо 'left' используем 'transform' - это плавнее.
        */
        .nav-links {
            display: flex; /* Он должен быть flex для column */
            flex-direction: column;
            align-items: flex-start;
            gap: 20px; /* Уменьшаем отступы в меню */
            
            position: fixed;
            top: 70px; /* Высота вашего хедера (40px лого + 15+15 padding) */
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background: var(--white);
            padding: 40px;
            
            /* Прячем меню за экраном */
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }

        /* Показываем меню, когда есть класс .active */
        .nav-links.active {
            transform: translateX(0);
            box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        }
        
        /* Анимация "Бургера" в "Крестик" */
        .mobile-toggle span {
            transition: all 0.3s;
        }
        
        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
    

        /* Уменьшаем боковые отступы на всей странице товара */
        .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 a{
            font-size: 10px;
        }
          .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);
        }
 
        .logo img {
            transform: scale(1.4);
            width: auto;     /* Убираем некорректный width: 10% */
            height: 40px;    /* Задаем четкую высоту */
            object-fit: contain;
            transition: height 0.3s;
        }



        .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; }

        /* cookies banner */
        .cookie-banner {
        position:fixed;
        left:16px;
        right:16px;
        bottom:16px;
        background: rgba(10,12,15,0.98);
        color:#fff;
        padding:16px;
        border-radius:10px;
        display:flex;
        gap:12px;
        align-items:center;
        box-shadow:0 10px 30px rgba(0,0,0,0.3);
        z-index:9999;
        }
        .cookie-banner p { margin:0; font-size:14px; }
        .cookie-btn { background:#ffd97a; color:#111; border:none; padding:10px 14px; border-radius:8px; cursor:pointer; }

        /* page content */
        .policy-container {
        max-width:1000px;
        margin:40px auto;
        padding:0 16px;
        color:#111;
        background:#fff;
        border-radius:6px;
        box-shadow:0 6px 20px rgba(0,0,0,0.06);
        padding:30px;
        }
        .policy-container h1 { color:#1e2328; }
        .policy-container h2 { color:#2d3a45; margin-top:18px; }
        .policy-container p { margin:12px 0; line-height:1.6; color:#333; }
        @media(max-width:900px){ .footer-grid{ grid-template-columns:repeat(1,1fr); } .cookie-banner{ flex-direction:column; text-align:center; } }

