/* ===================================
   JUNIPER PRODUCT PAGE STYLES
   juniper/juniper-product.css
   =================================== */

/* Breadcrumb (использует стили из juniper-category.css) */
.juniper-breadcrumb {
    background: linear-gradient(135deg, rgba(0, 56, 101, 0.05), rgba(0, 163, 224, 0.05));
    padding: 100px 0 20px;
    border-bottom: 1px solid #dee2e6;
}

/* Product Section */
.juniper-product-section {
    padding: 60px 0;
    background: white;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.main-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.product-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-badges .badge {
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Product Info */
.product-info {
    padding-left: 40px;
}

.product-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.product-title {
    margin-bottom: 15px;
}

.product-model {
    display: block;
    font-size: 1rem;
    color: var(--juniper-primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-name {
    display: block;
    font-size: 2rem;
    color: var(--juniper-dark);
    font-weight: 700;
    line-height: 1.2;
}

.product-short-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Key Features */
.key-features {
    margin-bottom: 30px;
}

.key-features h3 {
    font-size: 1.25rem;
    color: var(--juniper-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* Основная кнопка "Запрос цены" */
.product-actions .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white !important;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.product-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd9, #6b4291);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    color: white !important;
}

.product-actions .btn-primary:active,
.product-actions .btn-primary:focus {
    background: linear-gradient(135deg, #4f5fc8, #5f3780);
    color: white !important;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Иконка в кнопке */
.product-actions .btn-primary i {
    color: white !important;
}
.product-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 163, 224, 0.3);
}

/* Product Tags */
.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-tags .badge {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Product Tabs */
.product-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 0;
}

.product-tabs .nav-link {
    color: var(--text-secondary);
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    padding: 15px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.product-tabs .nav-link:hover {
    color: var(--juniper-primary);
    border-bottom-color: rgba(0, 163, 224, 0.2);
}

.product-tabs .nav-link.active {
    color: var(--juniper-primary);
    background: transparent;
    border-bottom-color: var(--juniper-primary);
}


/* Tab Content */
.product-tab-content {
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 12px 12px;
    position: relative;
}

/* Исправление для корректной работы Bootstrap табов */
.product-tab-content > .tab-pane {
    display: none;
}

.product-tab-content > .tab-pane.show {
    display: block;
}

.product-tab-content > .tab-pane.active {
    display: block;
}

.tab-content-inner {
    padding: 40px;
}

.tab-content-inner h4 {
    color: var(--juniper-dark);
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tab-content-inner h4:first-child {
    margin-top: 0;
}

.tab-content-inner ul {
    list-style: none;
    padding: 0;
}

.tab-content-inner ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.tab-content-inner ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--juniper-secondary);
    font-weight: bold;
}

/* Specifications Table */
.specifications-table {
    margin: 0;
}

.specifications-table td {
    padding: 15px;
    vertical-align: middle;
}

.spec-key {
    font-weight: 600;
    color: var(--juniper-dark);
    width: 40%;
    background: #f8f9fa;
}

.spec-value {
    color: var(--text-secondary);
}

/* Documents List */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.document-item i {
    font-size: 2.5rem;
}

.document-info {
    flex: 1;
}

.document-info h5 {
    margin-bottom: 5px;
    color: var(--juniper-dark);
    font-size: 1.1rem;
}

.document-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.document-item .btn {
    flex-shrink: 0;
}

/* Related Products Section */
.juniper-related-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.97), rgba(248, 251, 255, 0.95));
}

.juniper-related-section h2 {
    font-size: 2rem;
    color: var(--juniper-dark);
    margin-bottom: 40px;
}

.related-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.15);
}

.related-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 20px;
}

.related-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    font-size: 1.1rem;
    color: var(--juniper-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.related-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Request Modal */
.modal-content {
    border-radius: 16px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--juniper-primary), var(--juniper-secondary));
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 20px 30px;
}

.modal-header .modal-title {
    font-weight: 600;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-body .form-label {
    font-weight: 500;
    color: var(--juniper-dark);
    margin-bottom: 8px;
}

.modal-body .form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
}

.modal-body .form-control:focus {
    border-color: var(--juniper-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 163, 224, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-images {
        position: static;
    }

    .product-name {
        font-size: 1.75rem;
    }

    .tab-content-inner {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .product-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .product-tabs .nav-link i {
        display: none;
    }

    .document-item {
        flex-direction: column;
        text-align: center;
    }

    .document-item .btn {
        width: 100%;
    }

    .spec-key {
        width: 50%;
    }
}

/* Правильный фикс для Bootstrap табов */
.product-tab-content {
    display: block !important;
}

.product-tab-content > .tab-pane {
    display: none;
}

.product-tab-content > .tab-pane.active,
.product-tab-content > .tab-pane.show {
    display: block;
}

.product-description {
    white-space: pre-line; /* Сохраняет переносы строк */
    line-height: 1.6;
}

/* Компактные характеристики в карточке товара */
.key-features-compact {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.feature-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #dee2e6;
}

.feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-name {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-name i {
    font-size: 12px;
}

.feature-value {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
    padding-left: 20px;
    /* Ограничиваем длину текста */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Максимум 2 строки */
    -webkit-box-orient: vertical;
}

/* При наведении показываем полный текст в подсказке */
.feature-value:hover {
    cursor: help;
}

/* Альтернативный вариант - горизонтальные метки */
.key-features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    color: #0056b3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.feature-tag i {
    font-size: 12px;
}

/* Простые стили для цен */
.price-block {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.price-block h3 {
    margin: 0;
    font-size: 32px;
}

.text-decoration-line-through {
    text-decoration: line-through;
}

/* Фиксированный контейнер для главного изображения */
.main-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: transparent; /* Убираем серый фон */
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white; /* Белый фон вместо серого */
}

.main-product-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Сохраняет пропорции */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Loader для плавной загрузки */
.image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 10;
}

.main-product-image.loading {
    opacity: 0.3;
}

.image-loader.active {
    display: block;
}

/* Фиксированные миниатюры */
.thumbnail-wrapper {
    width: 100%;
    height: 80px;
    background: white; /* Белый фон вместо серого */
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: all 0.3s ease;
}

.thumbnail-wrapper:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.thumbnail-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.thumbnail-wrapper:has(.active) {
    border-color: #007bff;
    background: #e7f3ff;
}

/* Zoom эффект */
.main-image-container:hover .zoom-indicator {
    opacity: 1;
}

.zoom-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-in;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .main-image-container {
        height: 300px;
    }

    .thumbnail-wrapper {
        height: 60px;
    }
}

/* Альтернативный вариант - соотношение сторон */
.main-image-container.aspect-ratio {
    height: auto;
    aspect-ratio: 4/3; /* или 16/9, 1/1 - выберите нужное */
}

/* Предотвращение прыжков при загрузке */
.product-images {
    min-height: 500px; /* Минимальная высота всего блока */
}

/* Стили для лупы */
.zoom-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.main-image-container:hover .zoom-indicator {
    opacity: 1;
    transform: scale(1.1);
}

.zoom-indicator:hover {
    background: white;
    transform: scale(1.2);
}

/* Полноэкранный просмотр */
.fullscreen-image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fullscreen-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.fullscreen-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-fullscreen {
    position: absolute;
    top: -40px;
    right: -40px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-fullscreen:hover {
    transform: rotate(90deg) scale(1.1);
}

/* Убираем zoom при клике для мобильных */
@media (max-width: 768px) {
    .zoom-indicator {
        opacity: 1 !important;
    }

    .main-image-container:hover .main-product-image {
        transform: scale(1) !important;
    }
}

/* ===================================
   MOBILE STYLES FOR JUNIPER PRODUCT PAGE
   Добавьте эти стили в конец juniper-product.css
   =================================== */

/* Мобильные стили для телефонов */
@media (max-width: 576px) {

    /* Уменьшаем отступы breadcrumb */
    .juniper-breadcrumb {
        padding: 80px 0 15px;
    }

    .juniper-breadcrumb .breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    /* Основная секция товара */
    .juniper-product-section {
        padding: 30px 0;
    }

    /* Контейнер изображения */
    .main-image-container {
        height: 250px; /* Уменьшаем высоту */
        margin-bottom: 15px;
    }

    .image-wrapper {
        padding: 15px;
    }

    /* Миниатюры */
    .image-thumbnails {
        margin-top: 10px;
    }

    .thumbnail-wrapper {
        height: 50px;
    }

    /* Бейджи статуса */
    .product-badges {
        margin-top: 15px;
        gap: 5px;
    }

    .product-badges .badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* Информация о товаре */
    .product-info {
        padding-left: 0;
        margin-top: 20px;
    }

    /* Заголовок товара */
    .product-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

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

    /* Название товара - уменьшаем размер */
    .product-name {
        font-size: 1.3rem !important; /* Было 2rem */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    /* Модель/SKU */
    .product-model {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .product-meta {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    /* Краткое описание */
    .product-short-desc {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    /* Блок цены */
    .price-block {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .price-block > div {
        font-size: 20px !important; /* Было 24px */
    }

    .price-block > div[style*="font-size: 28px"] {
        font-size: 24px !important; /* Уменьшаем цену */
    }

    .price-block small {
        font-size: 0.75rem;
    }

    /* Информация о наличии */
    .stock-info {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    /* Ключевые характеристики */
    .key-features {
        margin-bottom: 20px;
    }

    .key-features h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .key-features-compact {
        padding: 12px;
        border-radius: 6px;
    }

    .feature-item {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .feature-name {
        font-size: 0.85rem;
        gap: 5px;
    }

    .feature-value {
        font-size: 0.8rem;
        padding-left: 15px;
    }

    /* Кнопки действий */
    .product-actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .product-actions .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .product-actions .btn-lg {
        font-size: 1rem;
    }

    /* Кнопка печати - делаем меньше */
    .product-actions .btn-outline-primary {
        padding: 10px;
    }

    /* Дополнительная информация */
    .additional-info {
        font-size: 0.85rem;
    }

    .info-item {
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .info-item i {
        font-size: 1rem;
    }

    /* Табы */
    .product-tabs {
        margin-top: 30px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .product-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    /* Скрываем иконки в табах на мобильных */
    .product-tabs .nav-link i {
        display: none;
    }

    /* Контент табов */
    .tab-content-inner {
        padding: 20px 15px;
    }

    .tab-content-inner h4 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .tab-content-inner p,
    .tab-content-inner li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Таблица характеристик */
    .specifications-table {
        font-size: 0.85rem;
    }

    .specifications-table td {
        padding: 10px;
    }

    .spec-key {
        width: 45%;
        font-size: 0.85rem;
    }

    .spec-value {
        font-size: 0.85rem;
    }

    /* Похожие товары */
    .juniper-related-section {
        padding: 40px 0;
    }

    .juniper-related-section h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    /* Карточки похожих товаров */
    .juniper-product-card {
        margin-bottom: 20px;
    }

    .juniper-product-card .product-image {
        height: 180px;
        padding: 15px;
    }

    .juniper-product-card .product-content {
        padding: 15px;
    }

    .juniper-product-card .product-model {
        font-size: 0.85rem;
    }

    .juniper-product-card .product-name {
        font-size: 0.95rem;
    }

    .juniper-product-card .product-description {
        font-size: 0.8rem;
    }

    /* Модальное окно */
    .modal-dialog {
        margin: 10px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-body .form-label {
        font-size: 0.9rem;
    }

    .modal-body .form-control {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Дополнительные оптимизации для очень маленьких экранов */
@media (max-width: 380px) {

    /* Еще больше уменьшаем заголовки */
    .product-name {
        font-size: 1.15rem !important;
    }

    .product-model {
        font-size: 0.85rem;
    }

    /* Уменьшаем размер цены */
    .price-block > div {
        font-size: 18px !important;
    }

    .price-block > div[style*="font-size: 28px"] {
        font-size: 20px !important;
    }

    /* Кнопки */
    .product-actions .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Табы - делаем еще компактнее */
    .product-tabs .nav-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* Характеристики */
    .feature-name {
        font-size: 0.8rem;
    }

    .feature-value {
        font-size: 0.75rem;
    }
}

/* Оптимизация для горизонтальной ориентации */
@media (max-height: 500px) and (orientation: landscape) {

    .main-image-container {
        height: 200px;
    }

    .product-name {
        font-size: 1.2rem !important;
    }

    .juniper-breadcrumb {
        padding: 70px 0 10px;
    }

    .juniper-product-section {
        padding: 20px 0;
    }
}

/* Убираем лишние отступы между элементами на мобильных */
@media (max-width: 768px) {

    /* Убираем большой отступ между изображением и контентом */
    .product-images {
        min-height: auto;
        position: static;
        margin-bottom: 0;
    }

    /* Уменьшаем отступ после изображения */
    .main-image-container {
        margin-bottom: 10px;
    }

    /* Компактнее делаем бейджи */
    .product-badges {
        margin-top: 10px;
        margin-bottom: 0;
    }

    /* Убираем лишний отступ перед информацией о товаре */
    .product-info {
        margin-top: 15px !important;
        padding-top: 0;
    }

    /* Оптимизируем отступы в заголовке */
    .product-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    /* Компактнее блок цены */
    .price-block {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    /* Уменьшаем высоту разделителей */
    .product-header {
        border-bottom-width: 1px;
    }
}