
        .product-page {
            padding-top: 120px;
            min-height: 500px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Хлебные крошки */
        .breadcrumbs {
            margin-bottom: 30px;
            color: #95A5A6;
            font-size: 0.95rem;
        }
        
        .breadcrumbs a {
            color: #3498DB;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .breadcrumbs a:hover {
            color: #2980B9;
            text-decoration: underline;
        }
        
        .breadcrumbs span {
            margin: 0 8px;
            color: #BDC3C7;
        }
        
        /* Детальная информация товара */
        .product-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        /* Галерея */
        .product-gallery {
            position: relative;
        }
        
        .product-main-image {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 1px solid #ecf0f1;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-main-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .product-main-image img:hover {
            transform: scale(1.05);
        }
        
        .product-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .product-thumbnail {
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            height: 80px;
        }
        
        .product-thumbnail:hover {
            border-color: #3498DB;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52,152,219,0.2);
        }
        
        .product-thumbnail.active {
            border-color: #3498DB;
            box-shadow: 0 5px 15px rgba(52,152,219,0.3);
        }
        
        .product-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .no-images {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 60px 20px;
            text-align: center;
            color: #95A5A6;
        }
        
        .no-images i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #BDC3C7;
        }
        
        /* Информация о товаре */
        .product-info {
            padding: 20px 0;
        }
        
        .product-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ecf0f1;
        }
        
        .product-brand-logo {
            width: 80px;
            height: 40px;
            object-fit: contain;
            background: #f8f9fa;
            padding: 5px;
            border-radius: 5px;
			display:none;
        }
        
        .product-brand-name {
            color: #7F8C8D;
            font-size: 1.1rem;
        }
        
        .product-brand-name a {
            color: #3498DB;
            text-decoration: none;
            font-weight: 500;
        }
        
        .product-brand-name a:hover {
            text-decoration: underline;
        }
        
        .product-title {
            font-size: 2.2rem;
            color: #2C3E50;
            margin-bottom: 20px;
            line-height: 1.3;
            font-weight: 600;
        }
        
        .product-article {
            display: inline-block;
            background: #f8f9fa;
            padding: 8px 15px;
            border-radius: 5px;
            color: #7F8C8D;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        
        .product-article i {
            color: #3498DB;
            margin-right: 5px;
        }
        
        .product-short-description {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            font-size: 1.1rem;
            color: #2C3E50;
            border-left: 4px solid #3498DB;
            line-height: 1.6;
        }
        
        .product-stock {
            margin-bottom: 30px;
			display: none;
        }
        
        .stock-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 500;
        }
        
        .stock-badge.in-stock {
            background: #d4edda;
            color: #155724;
        }
        
        .stock-badge.out-of-stock {
            background: #f8d7da;
            color: #721c24;
        }
        
        .stock-badge.on-order {
            background: #fff3cd;
            color: #856404;
        }
        
        .product-actions {
            margin-bottom: 30px;
        }
        
        .btn-order {
            background: #3498DB;
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 1.2rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(52,152,219,0.3);
            width: 100%;
            max-width: 300px;
        }
        
        .btn-order:hover {
            background: #2980B9;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52,152,219,0.4);
        }
        
        .btn-order i {
            margin-right: 10px;
        }
        
        /* Характеристики */
        .characteristics-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 30px;
            color: #2C3E50;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            /*left: 0;*/
            width: 80px;
            height: 3px;
            background: #3498DB;
        }
        
        .characteristics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .characteristic-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .characteristic-item:hover {
            background: #e8f4fd;
            transform: translateX(5px);
        }
        
        .characteristic-label {
            font-weight: 600;
            color: #2C3E50;
        }
        
        .characteristic-value {
            color: #7F8C8D;
        }
        
        /* Полное описание */
        .description-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .description-content {
            color: #2C3E50;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .description-content h1,
        .description-content h2,
        .description-content h3 {
            margin-top: 30px;
            margin-bottom: 20px;
            color: #2C3E50;
        }
        
        .description-content ul,
        .description-content ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .description-content li {
            margin-bottom: 5px;
        }
        
        .description-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .description-content p {
            margin-bottom: 15px;
        }
        
        /* Блок поиска */
        .search-section {
            background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
            padding: 60px 0;
            margin: 40px 0;
        }
        
        .search-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }
        
        .search-container h2 {
            color: white;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .search-form {
            display: flex;
            gap: 15px;
            background: white;
            padding: 5px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .search-input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
        }
        
        .search-btn {
            background: #3498DB;
            color: white;
            border: none;
            padding: 0 35px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .search-btn:hover {
            background: #2980B9;
            transform: scale(1.05);
        }
        
        /* Контакты */
        .contacts-section {
            background: #f8f9fa;
            padding: 80px 0;
            margin-top: 60px;
        }
        
        .contacts-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
        }
        
        .contacts-info {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .contacts-info h2 {
            color: #2C3E50;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .contacts-info h3 {
            color: #2C3E50;
            margin: 30px 0 15px;
            font-size: 1.3rem;
        }
        
        .contacts-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .contacts-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .contacts-list i {
            width: 25px;
            color: #3498DB;
            font-size: 1.3rem;
        }
        
        .contacts-list a {
            text-decoration: none;
            color: #2C3E50;
            transition: color 0.3s ease;
        }
        
        .contacts-list a:hover {
            color: #3498DB;
        }
        
        .work-schedule p {
            color: #7F8C8D;
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        /* Форма */
        .contacts-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .contacts-form h2 {
            color: #2C3E50;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }
        
        .form-control:focus {
            border-color: #3498DB;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-group--file {
            position: relative;
        }
        
        .form-group--file input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 0.1px;
            height: 0.1px;
        }
        
        .file-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: #f8f9fa;
            border: 2px dashed #3498DB;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .file-label:hover {
            background: #e8f4fd;
            transform: translateY(-2px);
        }
        
        .file-label i {
            color: #3498DB;
        }
        
        .file-info {
            font-size: 0.9rem;
            color: #7F8C8D;
            margin-top: 5px;
        }
        
        .btn-submit {
            background: #3498DB;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-weight: 600;
        }
        
        .btn-submit:hover {
            background: #2980B9;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(52,152,219,0.3);
        }
        
        /* Футер */
        .footer {
            background: #2C3E50;
            color: white;
            padding: 30px 0;
        }
        
        .footer__content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer__links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
            margin-left: 20px;
        }
        
        .footer__links a:hover {
            opacity: 1;
        }
        
        /* Кнопка наверх */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #3498DB;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(52,152,219,0.3);
            z-index: 999;
        }
        
        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            background: #2980B9;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52,152,219,0.4);
        }
        
        /* Попапы */
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .popup.active {
            display: flex;
        }
        
        .popup__content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .popup__close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: none;
            background: #f8f9fa;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .popup__close:hover {
            background: #e0e0e0;
            transform: rotate(90deg);
        }
        
        .popup__title {
            color: #2C3E50;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .success-message {
            text-align: center;
        }
        
        .success-message i {
            font-size: 5rem;
            color: #27ae60;
            margin-bottom: 20px;
        }
        
        .success-message h3 {
            color: #2C3E50;
            margin-bottom: 10px;
            font-size: 1.8rem;
        }
        
        .success-message p {
            color: #7F8C8D;
            margin-bottom: 30px;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .product-detail {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px;
            }
            
            .characteristics-grid {
                grid-template-columns: 1fr;
            }
            
            .contacts-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .product-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .product-page {
                padding-top: 100px;
            }
            
            .product-detail {
                padding: 20px;
            }
            
            .product-main-image {
                height: 300px;
            }
            
            .product-thumbnails {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .search-form {
                flex-direction: column;
                border-radius: 20px;
                padding: 20px;
            }
            
            .search-input {
                border-radius: 10px;
                border: 1px solid #e0e0e0;
            }
            
            .search-btn {
                border-radius: 10px;
                padding: 15px;
            }
            
            .btn-order {
                max-width: 100%;
            }
            
            .footer__content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer__links a {
                margin: 0 10px;
            }
        }
        
        @media (max-width: 480px) {
            .product-thumbnails {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .product-title {
                font-size: 1.5rem;
            }
            
            .product-brand {
                flex-direction: column;
                text-align: center;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .contacts-info,
            .contacts-form,
            .characteristics-section,
            .description-section {
                padding: 25px;
            }
        }