        :root {
            --primary: #1a5276;
            --primary-light: #2c7cb0;
            --secondary: #2980b9;
            --accent: #c1a25e;/*#e67e22;*/
            --accent-dark: #937c49;/*#d35400;*/
            --light: #f5f5f5;
            --light-gray: #e9ecef;
            --dark: #333;
            --success: #27ae60;
            --warning: #c1a25e;/*#f39c12;*/
            --danger: #e74c3c;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Шапка с усиленным дисклеймером */
        header {
            background: white;
            box-shadow: var(--shadow);
/*            position: sticky; */
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            background: #fff8e1;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 2px solid var(--warning);
        }
        
        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .disclaimer-notice {
            color: #856404;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .header-main {
            padding: 15px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
        }
        
        .search-box {
            flex: 0 0 500px;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 10px 45px 10px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
        .search-dtn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .header-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            background: none;
            border: none;
            color: var(--dark);
            cursor: pointer;
            font-size: 0.9rem;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--transition);
        }
        
        .header-btn:hover {
            background: var(--light);
        }
        
        /* Хлебные крошки */
        .breadcrumbz {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #666;
        }
        
        .breadcrumbz a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumbz span {
            margin: 0 5px;
        }
        
        /* Основной контент товара */
        .prodact-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 30px 0;
        }
        
        @media (max-width: 992px) {
            .prodact-main {
                grid-template-columns: 1fr;
            }
        }
        
        /* Галерея товара с видео */
        .prodact-gallery {
            position: sticky;
            top: 20px;
            align-self: start;
        }
        
        .main-image {
            position: relative;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 10px;
            cursor: zoom-in;
        }
        
        .main-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s;
        }
        
        .main-image:hover img {
            transform: scale(1.02);
        }
        
        .image-zoom {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .thumbnail-gallery {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 10px 0;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            border: 2px solid transparent;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            flex-shrink: 0;
            position: relative;
        }
        
        .thumbnail.active {
            border-color: var(--primary);
        }
        
        .thumbnail.video-thumbnail::after {
            content: '\f04b';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            background: rgba(0,0,0,0.7);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Информация о товаре */
        .prodact-info {
            padding: 0 20px;
        }
        
        .prodact-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .prodact-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            color: #666;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        
        .prodact-sku {
            background: var(--light);
            padding: 4px 8px;
            border-radius: 4px;
        }
        
        .prodact-brand {
            color: var(--primary);
        }
        
        .prodact-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .starz {
            color: #ffd700;
        }
        
        .reviews-count {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Усиленный дисклеймер */
        .disclaimer-alert {
            background: #fff3cd;
/*            border: 2px solid #ffeaa7; */
            border-left: 6px solid var(--warning);
            padding: 18px;
            border-radius: 6px;
            margin-bottom: 25px;
            font-size: 0.9rem;
            box-shadow: var(--shadow);
        }
        
        .disclaimer-alert strong {
            color: #856404;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        
        /* Цена и наличие */
        .price-block {
            background: var(--light);
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 25px;
            border: 1px solid var(--light-gray);
        }
        
        .price-label {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .price-request {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .price-note {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
            font-style: italic;
        }
        
        .stock-status {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .stock-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .stock-in {
            background: #d4edda;
            color: #155724;
        }
        
        .stock-out {
            background: #f8d7da;
            color: #721c24;
        }
        
        .stock-order {
            background: #cce5ff;
            color: #004085;
        }
        
        .delivery-info {
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 4px;
            border-left: 3px solid var(--success);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .delivery-info i {
            color: var(--success);
            font-size: 1.2rem;
        }
        
        /* Кнопки действий */
        .action-buttons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        
        @media (max-width: 576px) {
            .action-buttons {
                grid-template-columns: 1fr;
            }
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 20px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            text-decoration: none;
        }
        
        .btn-primary {
            background: var(--accent);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .btn-secondary {
            background: var(--primary);
            color: white;
        }
        
        .btn-secondary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .btn-outline {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--light);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .btn-call {
            background: #27ae60;
            color: white;
        }
        
        .btn-call:hover {
            background: #219653;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        /* Основные характеристики - улучшенный блок */
        .quick-specs {
            background: white;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .quick-specs h3 {
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .spec-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            background: var(--light);
            border-radius: 6px;
            transition: var(--transition);
        }
        
        .spec-item:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        
        .spec-icon {
            color: var(--primary);
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        .spec-content {
            flex: 1;
        }
        
        .spec-label {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 2px;
        }
        
        .spec-value {
            font-weight: 500;
            color: var(--dark);
        }
        
        /* Табы */
        .prodact-tabs {
            margin: 40px 0;
        }
        
        .tab-headers {
            display: flex;
            border-bottom: 2px solid var(--light-gray);
            flex-wrap: wrap;
            overflow-x: auto;
        }
        
        .tab-header {
            padding: 15px 25px;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            font-size: 1rem;
            cursor: pointer;
            color: #666;
            transition: var(--transition);
            white-space: nowrap;
        }
        
        .tab-header.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
            font-weight: 600;
        }
        
        .tab-header:hover:not(.active) {
            color: var(--primary-light);
        }
        
        .tab-content {
            padding: 30px 0;
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.3s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Характеристики таблица */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .specs-table tr {
            border-bottom: 1px solid var(--light-gray);
        }
        
        .specs-table tr:nth-child(even) {
            background: var(--light);
        }
        
        .specs-table td {
            padding: 15px;
        }
        
        .specs-table td:first-child {
            width: 30%;
            font-weight: 600;
            color: #555;
            background: #f8f9fa;
        }
        
        /* Видео блок */
        .video-container {
            margin: 20px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .video-placeholder {
            background: #f8f9fa;
            padding: 60px 20px;
            text-align: center;
            border: 2px dashed #dee2e6;
            border-radius: 8px;
        }
        
        .video-placeholder i {
            font-size: 3rem;
            color: var(--primary);
/*            margin-bottom: 15px; */
        }
        
        /* Рекомендуемые товары */
        .related-products {
            margin: 50px 0;
        }
        
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
        }
        
        .prodacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .prodact-card {
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            background: white;
        }
        
        .prodact-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        
        .prodact-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .prodact-card-body {
            padding: 20px;
        }
        
        .prodact-card-title {
            font-size: 1rem;
            margin-bottom: 12px;
            height: 40px;
            overflow: hidden;
            line-height: 1.4;
        }
        
        .prodact-card-price {
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        /* Футер */
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footor-column h3 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .footor-column ul {
            list-style: none;
        }
        
        .footor-column ul li {
            margin-bottom: 10px;
        }
        
        .footor-column ul li a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footor-column ul li a:hover {
            color: white;
        }
        
        .disclaimer-full {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            font-size: 0.85rem;
            color: #bbb;
            border-left: 4px solid var(--warning);
        }
        
        .footor-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 0.9rem;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .search-box {
                flex: none;
                width: 100%;
                order: 3;
            }
            
            .action-buttons {
                grid-template-columns: 1fr;
            }
            
            .tab-headers {
                overflow-x: auto;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
            }
            
            .prodacts-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .specs-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Фиксированная панель на мобильных */
        .sticky-mobile-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
            padding: 12px 20px;
            z-index: 1000;
        }
        
        @media (max-width: 768px) {
            .sticky-mobile-bar {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .mobile-price {
                font-weight: bold;
                color: var(--primary);
                font-size: 1.2rem;
            }
            
            .mobile-buttons {
                display: flex;
                gap: 10px;
            }
            
            .mobile-buttons .btn {
                padding: 10px 15px;
            }
        }
        
        /* Модальные окна */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            padding: 20px;
        }
        
        .modal-content {
            background: white;
            border-radius: 12px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }
        
        .modal-header {
            padding: 20px;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-body {
            padding: 20px;
        }
        
        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
        }


.btn.btn-outline.favon{
	color:red;
	border-color:red;
}