      /* Дополнительные стили для страницы качества */
        .quality-hero {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2a2a2a 100%);
        }

.quality-visual {
    position: relative;
    height: 400px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    border: 3px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


 
/* Фоновое изображение сумки */
.quality-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://sumki-replika.ru/uploads/product_images/683bd1ef94bdb_1748750831.jpg'); /* Замените на ваше изображение */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 1;
}

/* Fallback изображение если локальное не найдено */
.quality-visual:not(.local-image)::before {
    background-image: url('https://sumki-replika.ru/uploads/product_images/683bd1ef94bdb_1748750831.jpg');
}

/* Затемнение для лучшей читаемости */
.quality-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.quality-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #d4af37, #f7ef8a);
    color: #000;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.8rem;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.materials-showcase {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(247, 239, 138, 0.2));
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

/* Иконка сумки в центре */
.materials-showcase::before {
    content: '👜';
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Декоративные элементы */
.quality-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: #d4af37;
    font-size: 1.5rem;
    animation: sparkle 2s infinite;
}

.sparkle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    bottom: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .quality-visual {
        height: 300px;
    }

    .quality-badge {
        top: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1.5rem;
    }

    .materials-showcase {
        width: 150px;
        height: 150px;
    }

    .materials-showcase::before {
        font-size: 3rem;
    }

    .sparkle {
        font-size: 1.2rem;
    }
}}

        .quality-standards {
            padding: 100px 0;
            background: linear-gradient(180deg, #111 0%, #000 100%);
        }

        .standards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .standard-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .standard-card:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
        }

        .standard-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .standard-card h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .standard-card p {
            color: #ccc;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .standard-card ul {
            list-style: none;
            text-align: left;
        }

        .standard-card ul li {
            color: #d4af37;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .standard-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #d4af37;
        }

        .materials-section {
            padding: 100px 0;
            background: #000;
        }

        .materials-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .materials-intro {
            color: #ccc;
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.6;
			/* Продолжение стилей с момента остановки */
        }

        .materials-list {
            display: grid;
            gap: 25px;
        }

        .material-item {
            border-left: 3px solid #d4af37;
            padding-left: 20px;
        }

        .material-item h4 {
            color: #d4af37;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .material-item p {
            color: #ccc;
            line-height: 1.6;
        }

  /* Обновленные стили для образцов кожи */
.materials-visual {
    position: relative;
}

.leather-samples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.leather-sample {
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    color: #fff;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #d4af37;
    transition: all 0.3s ease;
}

.leather-sample:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.leather-sample::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.leather-sample span {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(212, 175, 55, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    color: #000;
}

/* Образцы кожи с реальными изображениями */
.sample-1 {
    background-image: url('images/leather/caviar.jpg');
}

.sample-2 {
    background-image: url('images/leather/taurillon.jpg');
}

.sample-3 {
    background-image: url('images/leather/clemence.jpg');
}

.sample-4 {
    background-image: url('images/leather/saffiano.jpg');
}

/* Fallback изображения если локальные не найдены */
.sample-1:not([style*="background-image"]) {
    background-image: url('/images/caviar.jpg');
}

.sample-2:not([style*="background-image"]) {
    background-image: url('/images/taurillon.jpg');
}

.sample-3:not([style*="background-image"]) {
    background-image: url('/images/clemence.jpg');
}

.sample-4:not([style*="background-image"]) {
    background-image: url('/images/saffiano.jpg');
}

/* Информационные карточки */
.leather-info {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.leather-info-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.leather-info-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.leather-info-card h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.leather-info-card p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.leather-origin {
    color: #d4af37;
    font-size: 0.8rem;
    margin-top: 10px;
    font-style: italic;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .leather-samples {
        grid-template-columns: 1fr;
        height: auto;
    }

    .leather-sample {
        height: 150px;
    }

    .leather-info {
        grid-template-columns: 1fr;
    }
}
        .manufacturing-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #000 0%, #111 100%);
        }

        .process-timeline {
            display: grid;
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .process-step {
            display: flex;
            align-items: center;
            gap: 30px;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            border-color: #d4af37;
            transform: translateX(10px);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #d4af37, #f7ef8a);
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .step-content h3 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .step-content p {
            color: #ccc;
            line-height: 1.6;
        }

        .comparison-section {
            padding: 100px 0;
            background: #000;
        }

        .comparison-table {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(212, 175, 55, 0.3);
        }

        .comparison-header {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            background: linear-gradient(45deg, #d4af37, #f7ef8a);
            color: #000;
            font-weight: bold;
            padding: 20px;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .comparison-row > div {
            padding: 20px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-row > div:last-child {
            border-right: none;
        }

        .feature {
            color: #d4af37;
            font-weight: 600;
        }

        .poor {
            color: #ff6b6b;
        }

        .premium {
            color: #51cf66;
        }

        .guarantee-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #111 0%, #000 100%);
        }

        .guarantee-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .guarantee-list {
            display: grid;
            gap: 25px;
        }

        .guarantee-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .guarantee-icon {
            font-size: 2rem;
            background: linear-gradient(45deg, #d4af37, #f7ef8a);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .guarantee-item h4 {
            color: #fff;
            margin-bottom: 5px;
        }

        .guarantee-item p {
            color: #ccc;
        }

        .guarantee-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .certificate {
            background: linear-gradient(145deg, #fff, #f8f9fa);
            border: 3px solid #d4af37;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            width: 300px;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
        }

        .certificate-header {
            color: #d4af37;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .certificate-body h3 {
            color: #000;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .certificate-body p {
            color: #333;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .certificate-seal {
            width: 60px;
            height: 60px;
            background: #d4af37;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto;
        }

        .care-section {
            padding: 100px 0;
            background: #000;
        }

        .care-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .care-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .care-card:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
        }

        .care-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .care-card h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .care-card p {
            color: #ccc;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .care-card ul {
            list-style: none;
            text-align: left;
        }

        .care-card ul li {
            color: #d4af37;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
            font-size: 0.9rem;
        }

        .care-card ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #d4af37;
        }

        .quality-reviews {
            padding: 100px 0;
            background: linear-gradient(180deg, #111 0%, #000 100%);
        }

        .gold-text {
            color: #d4af37;
        }

        /* Мобильная адаптация */
        @media (max-width: 768px) {
            .materials-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .leather-samples {
                grid-template-columns: 1fr;
                height: auto;
            }

            .leather-sample {
                height: 100px;
            }

            .process-step {
                flex-direction: column;
                text-align: center;
            }

            .comparison-table {
                font-size: 0.9rem;
            }

            .comparison-header,
            .comparison-row {
                grid-template-columns: 1fr;
            }

            .comparison-row > div {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .guarantee-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .certificate {
                width: 250px;
                padding: 30px;
            }

            .care-grid {
                grid-template-columns: 1fr;
            }

            .standards-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.1rem;
            }

            .certificate {
                width: 220px;
                padding: 25px;
            }

            .certificate-body h3 {
                font-size: 1.3rem;
            }

            .certificate-body p {
                font-size: 0.8rem;
            }
        }