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

        @font-face {
            font-family: 'SangBleu Sunrise';
            src: url('/Fonts/SangBleu\ Sunrise.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        body {
            font-family: "SangBleu Sunrise", sans-serif, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        h1{
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: rgb(34, 34, 34);
            line-height: 1.2;
            -webkit-text-fill-color: transparent;
            background: #ac0a52 text;
        }

        /* Merged Header Content */
        .header-content {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

      .header-content.hidden {
    transform: translateY(-100%);
}

        .header-content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto auto auto;
            align-items: center;
            gap: 20px;
            padding: 10px 20px;
        }

        .logo {
            height: 60px;
            width: auto;
            max-width: 60px;
            object-fit: contain;
        }

        .promo-text {
            font-size: 12px;
            line-height: 1.3;
            max-width: 250px;
            padding: 0 10px;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .header-nav {
            display: flex;
            justify-content: center;
        }

        .header-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .header-nav a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            font-size: 14px;
        }

        .header-nav a:hover {
            color: #a8024e;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            text-decoration: none;
            color: white;
            font-weight: bold;
            transition: background-color 0.3s;
            backdrop-filter: blur(5px);
        }

        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .phone-number {
            white-space: nowrap;
            position: relative;
            display: inline-block;
            padding: 2px 2px;
            margin: 0 10px;
        }

        .phone-number a:hover {
            color: #60c3f1;
        }

        .phone-number a {
            color: white;
            font-weight: bold;
            text-decoration: none;
            font-size: 14px;
            position: relative;
            z-index: 1;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .work-hours {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            margin-top: 2px;
            line-height: 1.2;
            font-weight: normal;
            white-space: nowrap;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Hero Section with Video Background */
        .hero-slider {
            position: relative;
            height: 80vh;
            overflow: hidden;
            background: #1a1a1a;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        /* Slide images - замените на ваши изображения */
        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                              url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }

        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                              url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }

        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                              url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }

        .slide-4 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }

        .slide-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .slide-title {
            font-size: 3.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease-out 0.3s forwards;
            letter-spacing: -1px;
        }

        .slide-subtitle {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease-out 0.6s forwards;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            font-weight: 400;
        }

        .slide-price {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease-out 0.9s forwards;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
            color: #ffffff;
        }

        .slide-button {
            background: linear-gradient(135deg, #a8024e 0%, #d1477a 100%);
            color: white;
            border: none;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease-out 1.2s forwards;
            box-shadow: 0 8px 25px rgba(168, 2, 78, 0.3);
            position: relative;
            overflow: hidden;
        }

        .slide-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .slide-button:hover::before {
            left: 100%;
        }

        .slide-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(168, 2, 78, 0.4);
            background: linear-gradient(135deg, #8a0242 0%, #b8396a 100%);
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Premium Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.4s ease;
            backdrop-filter: blur(20px);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .slider-arrow:hover {
            background: linear-gradient(135deg, rgba(168, 2, 78, 0.8) 0%, rgba(168, 2, 78, 0.6) 100%);
            border-color: rgba(168, 2, 78, 0.5);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 12px 35px rgba(168, 2, 78, 0.3);
        }

        .slider-arrow.prev {
            left: 40px;
        }

        .slider-arrow.next {
            right: 40px;
        }

        /* Premium Navigation Dots */
        .slider-nav {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 16px;
            z-index: 10;
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 20px;
            border-radius: 30px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .nav-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: linear-gradient(135deg, #a8024e 0%, #d1477a 100%);
            border-radius: 50%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
        }

        .nav-dot.active::before {
            width: 100%;
            height: 100%;
        }

        .nav-dot.active {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.2);
            box-shadow: 0 4px 15px rgba(168, 2, 78, 0.3);
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.1);
        }

        

        

        


/* New Main Title Section - Replace or add after slider */
.prem-title-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prem-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(168,2,78,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(168,2,78,0);stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="100" r="100" fill="url(%23grad1)"/><circle cx="800" cy="200" r="150" fill="url(%23grad1)"/></svg>') no-repeat center/cover;
    opacity: 0.3;
}

.prem-title-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.prem-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    background: linear-gradient(135deg, #222 0%, #a8024e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prem-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.prem-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: #a8024e;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.feature-text {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.2rem;
    }

    .slide-price {
        font-size: 2rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .main-subtitle {
        font-size: 1.2rem;
    }

    .main-features {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }

    .main-title {
        font-size: 2rem;
    }
}

/* Современные категории мебели - Чистые стили без градиентов */

.categories-section {
    padding: 80px 0;
    background: #ffffff;
}

.categories-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.categories-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: left;
}

.categories-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: left;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    justify-items: center;
}

.category-card {
    width: 100%;
    max-width: 320px;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #f8f9fa;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.category-card:hover::before {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

.category-card.active {
    border-color: #a8024e;
    box-shadow: 0 8px 32px rgba(168, 2, 78, 0.15);
}

.category-card.active::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: #a8024e;
    border-radius: 50%;
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.category-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
}

.category-title {
    color: white;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.category-card:hover .category-title {
    background: rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .categories-section {
        padding: 60px 0;
    }

    .categories-content {
        padding: 0 16px;
    }

    .categories-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .categories-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        height: 200px;
        max-width: 100%;
    }

    .category-content {
        padding: 20px;
    }

    .category-title {
        font-size: 20px;
        padding: 6px 12px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .categories-section {
        padding: 40px 0;
    }

    .categories-content {
        padding: 0 12px;
    }

    .categories-title {
        font-size: 24px;
    }

    .categories-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .category-card {
        height: 180px;
    }

    .category-content {
        padding: 16px;
    }

    .category-title {
        font-size: 18px;
    }
}

/* Планшеты */
@media (min-width: 769px) and (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-card {
        max-width: 100%;
    }
}

/* Большие экраны */
@media (min-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 28px;
    }
}

/* Hover состояния для touch устройств */
@media (hover: none) and (pointer: coarse) {
    .category-card:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .category-card:hover::before {
        background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    }

    .category-card:hover .category-title {
        background: rgba(0,0,0,0.3);
        transform: none;
    }
}

/* Анимация появления */
.category-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* Products Section */
        .products-section {
    padding: 60px 0 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 6px; /* Уменьшенное скругление с 12px до 6px */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 350px; /* Увеличено с 250px до 350px */
    object-fit: cover;
    background: #f8f8f8;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 30px 24px 24px; /* Увеличен верхний отступ */
    position: relative;
}

.product-title {
    font-size: 20px; /* Увеличен с 18px */
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}

.product-characteristics {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px; /* Увеличен отступ */
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px; /* Увеличен отступ */
    flex-wrap: wrap;
}

.current-price {
    font-size: 26px; /* Увеличен размер */
    font-weight: 700;
    color: #a8024e;
    letter-spacing: -0.5px;
}

.old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #9ca3af;
}

.discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-colors {
    display: flex;
    gap: 10px; /* Увеличен gap */
    margin-bottom: 24px; /* Увеличен отступ */
    align-items: center;
}

.color-dot {
    width: 24px; /* Увеличен размер */
    height: 24px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.color-dot:hover {
    border-color: #a8024e;
    transform: scale(1.1);
}

.product-button {
            background: #f4f4f4;
            color: #333;
            border: none;
            padding: 16px 24px;
            border-radius: 0;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            letter-spacing: 1.5px;
            font-weight: 400;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .product-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            transition: left 0.5s ease;
        }

        .product-button:hover::before {
            left: 100%;
        }

        .product-button:hover {
            background: #e8e8e8;
        }

/* Мобильная адаптация */
@media (max-width: 768px) {
    .products-section {
        padding: 40px 0 60px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
        gap: 24px;
        margin-top: 20px;
    }

    .product-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .product-image {
        height: 280px; /* Немного меньше на мобильных */
    }

    .product-info {
        padding: 24px 20px 20px;
    }

    .product-title {
        font-size: 18px;
    }

    .current-price {
        font-size: 24px;
    }

    .product-price {
        margin-bottom: 16px;
    }

    .product-colors {
        margin-bottom: 20px;
    }

    .color-dot {
        width: 22px;
        height: 22px;
    }

    .product-button {
        padding: 14px 28px;
        font-size: 13px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .products-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .products-grid {
        gap: 20px;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 20px 16px 16px;
    }

    .product-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .product-characteristics {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .current-price {
        font-size: 22px;
    }

    .old-price {
        font-size: 15px;
    }

    .discount {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* Планшеты в портретной ориентации */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Большие экраны */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

@media (min-width: 1600px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

        /* Quality Section */
        .quality-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .quality-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .quality-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .quality-title {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #222;
        }

        .quality-description {
            font-size: 18px;
            color: #666;
        }

        .quality-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .quality-image img {
            width: 100%;
            border-radius: 12px;
        }

        .quality-benefits {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .quality-benefit {
            background: white;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s;
            padding: 2rem;
        }

        .benefit-title {
            font-size: 18px;
            font-weight: 600;
            color: #666;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 1.125rem;
            letter-spacing: 0.05em;
        }

        .benefit-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            
        }

        .benefit-description.active {
            display: block;
        }


        /* advantages Section */
        .advantages-section {
            background: #f8f9fa;
            padding: 80px 0;
            margin: 40px 0;
        }

        .advantages-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .advantages-title {
            font-size: 36px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 50px;
            color: #222;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 60px;
        }

        .advantage-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .advantage-number {
            font-size: 32px;
            font-weight: bold;
            color: #a8024e;
            margin-bottom: 8px;
            line-height: 1;
        }

        .advantage-text {
            font-size: 14px;
            color: #666;
            margin: 0;
            line-height: 1.4;
        }

        .quality-features {
            position: relative;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .feature-line {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #a8024e;
            border-radius: 2px;
        }

        .feature-item {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .feature-name {
            font-size: 18px;
            font-weight: 600;
            color: #a8024e;
            margin: 0 0 12px 0;
        }

        .feature-text {
            font-size: 14px;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: white;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-content {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 12px;
        }

        .contact-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .contact-description {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: #a8024e;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #666;
        }

        .form-submit {
            background: #a8024e;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .form-submit:hover {
            background: #8a0242;
        }

        .contact-image img {
            width: 100%;
            border-radius: 12px;
        }

        /* Reviews */
        .reviews-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .reviews-title {
            font-size: 36px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 50px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .review-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .review-author {
            font-weight: 600;
            color: #a8024e;
        }

        /* Footer */
        footer {
            background: #222;
            color: white;
            text-align: center;
            padding: 40px 0;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: white;
            margin: 2% auto;
            padding: 0;
            border-radius: 16px;
            width: 95%;
            max-width: 1400px;
            max-height: 95vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
        }

        .modal-title {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
            color: #222;
            padding-right: 50px;
        }

        .close {
            position: absolute;
            right: 25px;
            top: 25px;
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
            border: none;
        }

        .close:hover {
            background: #e9ecef;
            color: #333;
        }

        .modal-body {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 40px;
            padding: 0 30px 30px;
        }

        .modal-left {
            display: flex;
            flex-direction: column;
        }

        .modal-gallery {
            margin-bottom: 30px;
        }

        .main-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .thumbnail-images {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .thumbnail {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
            opacity: 0.7;
        }

        .thumbnail:hover {
            opacity: 1;
        }

        .thumbnail.active {
            border-color: #a8024e;
            opacity: 1;
        }

        .characteristics-table {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #e9ecef;
            margin-bottom: 30px;
        }

        .characteristics-table h3 {
            margin-bottom: 20px;
            font-size: 22px;
            color: #222;
            font-weight: 600;
        }

        .char-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .char-row:last-child {
            border-bottom: none;
        }

        .char-label {
            font-weight: 500;
            color: #666;
        }

        .char-value {
            font-weight: 600;
            text-align: right;
            color: #333;
        }

        /* Fabric Selection Section */
        .fabric-selection {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #e9ecef;
        }

        .fabric-selection__header {
            margin-bottom: 20px;
        }

        .fabric-selection__title {
            font-size: 22px;
            color: #222;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .fabric-selection__subtitle {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .fabric-selection__description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .fabric-selection__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .fabric-selection__item {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .fabric-selection__item:hover {
            transform: translateY(-2px);
        }

        .fabric-selection__item-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .fabric-selection__item:hover .fabric-selection__item-image {
            border-color: #a8024e;
        }

        .fabric-selection__item-name {
            font-size: 14px;
            font-weight: 500;
            color: #333;
            line-height: 1.4;
        }

        .fabric-selection__button {
            width: 100%;
            background: #a8024e;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .fabric-selection__button:hover {
            background: #8a0242;
        }

        .modal-right {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 16px;
            border: 1px solid #f0f0f0;
        }

        .modal-price-section {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            text-align: center;
            border: 1px solid #e9ecef;
        }

        .modal-current-price {
            font-size: 32px;
            font-weight: 700;
            color: #a8024e;
            display: block;
            margin-bottom: 8px;
        }

        .modal-price-details {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
        }

        .modal-old-price {
            font-size: 16px;
            text-decoration: line-through;
            color: #999;
        }

        .modal-discount {
            background: #f4f4f4;
            color: #666;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
        }

        .modal-actions {
            margin-bottom: 25px;
        }

        .add-to-cart-btn {
            width: 100%;
            background: #f4f4f4;
            color: #333;
            border: none;
            padding: 18px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 15px;
            transition: background 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .add-to-cart-btn:hover {
            background: #e0e0e0;
        }

        .delivery-info {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #f0f0f0;
        }

        .delivery-info h4 {
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }

        .delivery-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            padding: 6px;
            border-radius: 6px;
        }

        .delivery-item:last-child {
            margin-bottom: 0;
        }

        .delivery-icon {
            color: #a8024e;
            font-size: 16px;
            width: 20px;
        }

        .color-palette {
            margin-bottom: 25px;
        }

        .color-palette h4 {
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }

        .color-options {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
        }

        .color-option {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid #ddd;
            cursor: pointer;
            transition: border-color 0.3s ease;
        }

        .color-option:hover {
            border-color: #a8024e;
        }

        .color-option.dual {
            background: linear-gradient(45deg, var(--color1) 50%, var(--color2) 50%);
        }

        .product-description {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #f0f0f0;
        }

        .product-description h4 {
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }

        .product-description p {
            line-height: 1.6;
            color: #666;
        }

        /* Accordion styles */
        .t-container {
            margin-top: 30px;
            padding: 0 30px 30px;
        }

        .t-col {
            margin-bottom: 10px;
        }

        .t585__accordion {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #f0f0f0;
        }

        .t585__wrapper {
            border-bottom: 1px solid #f0f0f0;
        }

        .t585__wrapper:last-child {
            border-bottom: none;
        }

        .t585__header {
            border-top: 1px solid #f0f0f0;
        }

        .t585__header:first-child {
            border-top: none;
        }

        .t585__trigger-button {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .t585__trigger-button:hover {
            background: #f8f9fa;
        }

        .t585__title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .t585__icon {
            transition: transform 0.3s;
            color: #a8024e;
        }

        .t585__trigger-button[aria-expanded="true"] .t585__icon {
            transform: rotate(45deg);
        }

        .t585__content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .t585__content.expanded {
            max-height: 500px;
        }

        .t585__textwrapper {
            padding: 0 25px 25px;
        }

        .t585__text {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .t585__border {
            height: 1px;
            background-color: #f0f0f0;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .quality-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .header-content-wrapper {
                grid-template-columns: auto 1fr;
                gap: 15px;
            }
            
            .promo-text,
            .header-nav,
            .social-icons {
                display: none;
            }
            
            .phone-number {
                justify-self: end;
            }
            
            .logo {
                height: 50px;
                max-width: 50px;
            }
            
            .phone-number a {
                font-size: 12px;
            }
            
            .work-hours {
                font-size: 9px;
            }

            .hero {
                margin-top: 70px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .categories-title {
                font-size: 32px;
            }

            .categories-grid {
                padding-left: 20px;
                padding-right: 20px;
            }

            .category-card {
                min-width: 150px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .quality-content {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .modal-body {
                grid-template-columns: 1fr;
            }

            .modal-content {
                width: 95%;
                margin: 5% auto;
            }

            .modal-title {
                font-size: 24px;
            }

            .modal-current-price {
                font-size: 28px;
            }

            .fabric-selection__grid {
                grid-template-columns: 1fr;
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .quality-features {
                grid-template-columns: 1fr;
            }
            
            .advantages-title {
                font-size: 28px;
            }
            
            .advantage-number {
                font-size: 28px;
            }
        }

        .hidden {
            display: none;
        }