
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* --- ХЛЕБНЫЕ КРОШКИ --- */
        .breadcrumbs {
            font-size: 13px;
            color: #888;
            margin-bottom: 25px;
        }

        .breadcrumbs a {
            color: #888;
        }

        .breadcrumbs span {
            margin: 0 5px;
        }

        /* --- СЕТКА КАРТОЧКИ --- */
        .product-page {
            display: grid;
            grid-template-columns: 450px 1fr;
            gap: 40px;
            align-items: start;
        }

        /* --- СЛАЙДЕР С КАРТИНКАМИ --- */
        .product-slider-wrapper {
            position: relative;
            border: 1px solid #eaeaea;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            aspect-ratio: 1 / 1;
        }

        .slider-container {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.4s ease-in-out;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Кнопки навигации слайдера */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.9);
            border: 1px solid #eaeaea;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.2s, background-color 0.2s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            z-index: 5;
            user-select: none;
        }

        .product-slider-wrapper:hover .slider-arrow {
            opacity: 1;
        }

        .slider-arrow:hover {
            background-color: #333;
            color: #fff;
            border-color: #333;
        }

        .slider-arrow.prev { left: 15px; }
        .slider-arrow.next { right: 15px; }

        /* --- ИНФОРМАЦИОННЫЙ БЛОК --- */
        .product-info h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        /* Рейтинг звезд */
        .rating-block {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: #888;
            margin-bottom: 20px;
        }

        .stars {
            color: #f1c40f;
            font-size: 16px;
        }

        /* Блок условий и цены */
        .exchange-note {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .exchange-subtext {
            font-size: 13px;
            color: #666;
            margin-bottom: 15px;
        }

        .product-price {
            font-size: 32px;
            color: #ff1e1e;
            font-weight: 700;
            margin-bottom: 25px;
        }

        /* Кнопки действий */
        .action-buttons-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .btn-outline {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 6px;
            padding: 14px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: border-color 0.2s, background-color 0.2s;
        }

        .btn-outline:hover {
            border-color: #333;
            background-color: #f9f9f9;
        }

        .btn-primary {
            width: 100%;
            background-color: #37383c;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 16px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 0.5px;
            margin-bottom: 25px;
            transition: background-color 0.2s;
        }

        .btn-primary:hover {
            background-color: #1e1f22;
        }

        /* Метаданные (Артикул, Категория) */
        .meta-info {
            font-size: 14px;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .meta-info span {
            color: #888;
        }

        .meta-info a {
            color: #ff1e1e;
            text-decoration: none;
        }

        .meta-info a:hover {
            text-decoration: underline;
        }

        /* Разделитель */
        .divider {
            height: 1px;
            background-color: #eaeaea;
            margin-bottom: 25px;
        }

        /* Преимущества и доставка */
        .features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            font-size: 14px;
            line-height: 1.4;
        }

        .feature-icon {
            margin-right: 12px;
            font-size: 16px;
            min-width: 20px;
            text-align: center;
        }

        .feature-item span.highlight {
            font-weight: 600;
        }

        .feature-sub {
            color: #666;
            font-size: 13px;
            margin-top: 2px;
        }

        /* --- АДАПТИВНОСТЬ (МОБИЛЬНАЯ ВЕРСИЯ) --- */
        @media (max-width: 992px) {
            .product-page {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .product-slider-wrapper {
                max-width: 500px;
                margin: 0 auto;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 15px;
            }
            
            .product-info h1 {
                font-size: 22px;
            }

            .action-buttons-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .slider-arrow {
                opacity: 1; /* На мобильных стрелки видны всегда */
                width: 36px;
                height: 36px;
            }
        }
		
/*-------------------------------------------------------------------------------------------------------------------------------------------*/		
/*-------------------------------------------------------------------------------------------------------------------------------------------*/		
/*-------------------------------------------------------------------------------------------------------------------------------------------*/		
/*-------------------------------------------------------------------------------------------------------------------------------------------*/		
/*--- ФОРМА ---*/	

		/* --- НОВАЯ ФОРМА ЗАЯВКИ --- */
        .order-form-container {
            margin-bottom: 25px;
        }

        .order-form-title {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5px;
            color: #222;
        }

        .order-form-subtext {
            font-size: 13px;
            color: #666;
            margin-bottom: 15px;
        }

        .lead-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 500px;
        }

        .input-phone {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.2s;
        }

        .input-phone:focus {
            border-color: #37383c;
        }

        .btn-submit {
            width: 100%;
            background-color: #37383c;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 16px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: background-color 0.2s, opacity 0.2s;
        }

        .btn-submit:hover:not(:disabled) {
            background-color: #1e1f22;
        }

        /* Состояние заблокированной кнопки */
        .btn-submit:disabled {
            background-color: #cccccc;
            color: #888888;
            cursor: not-allowed;
            opacity: 0.7;
        }

        /* Сообщение об успешной отправке */
        .form-success-msg {
            display: none;
            color: #27ae60;
            font-weight: 600;
            font-size: 14px;
            margin-top: 5px;
        }	