        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #0a0a0a;
            color: #f0f0f0;
            scroll-behavior: smooth;
        }

        :root {
            --primary: #b82b2b;
            --primary-dark: #8b1e1e;
            --primary-glow: rgba(184, 43, 43, 0.3);
            --accent: #d4af37;
            --dark-bg: #0f0f0f;
            --card-bg: #151515;
            --border-light: #2a2a2a;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, .logo-text, .nav-links a {
            font-family: 'Playfair Display', serif;
        }

        h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .btn {
            display: inline-block;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 40px;
            text-decoration: none;
            transition: 0.3s ease;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(184, 43, 43, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(184, 43, 43, 0.4);
        }

        .btn-outline {
            border: 2px solid var(--primary);
            background: transparent;
            color: white;
        }

        .btn-outline:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        /* Header */
        header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(8px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo i {
            font-size: 2.2rem;
            color: var(--primary);
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #e0e0e0;
            font-weight: 500;
            transition: 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Hero секция */
        .hero {
            background: linear-gradient(107deg, #0a0a0a 0%, #1a1010 100%), url('https://placehold.co/1600x800/2c1a1a/white?text=Premium+Meat');
            background-blend-mode: overlay;
            background-size: cover;
            background-position: center 30%;
            padding: 120px 0;
            position: relative;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero-badge {
            background: var(--primary);
            display: inline-block;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        /* Группы продукции */
        .products-section {
            background: var(--dark-bg);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 32px;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: 24px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-light);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
            border-color: var(--primary);
        }

        .product-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 12px;
        }

        .price-badge {
            background: var(--primary);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            font-family: 'Montserrat', sans-serif;
        }

        .product-info {
            padding: 20px;
        }

        .product-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Playfair Display', serif;
        }

        .product-desc {
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 16px;
            line-height: 1.4;
        }
.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.custom-video {
    width: 100%;
    height: auto;
    display: block;
}

.custom-video2 {
    
    height: 600px;
    display: block;
}

/* Стили для управления видео */
.custom-video:focus {
    outline: none;
}

        .price {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .price-note {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 16px;
        }

        .detail-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }

        .detail-link:hover {
            gap: 12px;
            color: #e05a5a;
        }
		
  .shop-gallery {
            background: var(--dark-bg);
            border-bottom: 1px solid var(--border-light);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .gallery-item {
            background: var(--card-bg);
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .gallery-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
            border-color: var(--primary);
        }
        
        .gallery-img {
            width: 100%;
            height: 320px;
            background-size: cover;
            background-position: center;
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.02);
        }
        
        .gallery-caption {
            padding: 20px;
            text-align: center;
            font-weight: 500;
            color: #ddd;
            border-top: 1px solid var(--border-light);
            background: rgba(0,0,0,0.3);
        }
        
        .gallery-caption i {
            color: var(--primary);
            margin-right: 8px;
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .gallery-img {
                height: 260px;
            }
        }		

        /* Преимущества */
        .features {
            background: #0c0c0c;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .feature-item i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        /* Контактная информация */
        .contact-info {
            background: var(--card-bg);
            border-radius: 32px;
            padding: 40px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .contact-details {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-top: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
        }

        .contact-item i {
            font-size: 1.3rem;
            margin-bottom: 0;
        }

        /* Футер */
        footer {
            background: #050505;
            padding: 48px 0 24px;
            border-top: 1px solid var(--border-light);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-col p, .footer-col a {
            color: #aaa;
            text-decoration: none;
            line-height: 1.8;
        }

        .social i {
            font-size: 1.5rem;
            margin-right: 16px;
            transition: 0.2s;
            cursor: pointer;
        }
        .social i:hover { color: var(--primary); }

        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #222;
            font-size: 0.8rem;
            color: #777;
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 16px;
            }
            .nav-links {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            section {
                padding: 50px 0;
            }
            .contact-details {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }
        }
