/* ===== ХАРАКТЕРИСТИКИ ТОВАРА ===== */
.specifications-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}

.prod-spec-item {
    display: flex;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 1.25rem;
    background-color: #f8f9fa;
    min-height: 60px;
    align-items: center;
}

.prod-spec-item:nth-child(2n) {
    border-right: none;
}

.prod-spec-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.spec-name-half {
    width: 50%;
    font-weight: 700;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.spec-value-half {
    width: 50%;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

.prod-spec-item:hover {
    background-color: #f0f0f0;
}

.product-property-title {
    font-size: 1.825em;
    font-family: Roboto Slab, serif;
    line-height: 1.25;
    margin-bottom: 20px;
}

/* ===== МОБИЛЬНЫЙ КОЛЛАПС ===== */
.mobile-collapse-button {
    display: none;
    background-color: #f3f4f6;
    border: none;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 16px;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    font-family: Roboto, sans-serif;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.2s ease;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.mobile-collapse-button:hover {
    background-color: #e5e7eb;
}

.chevron-icon {
    width: 8px;
    height: auto;
    transition: transform 0.3s ease;
}

.chevron-icon.rotated {
    transform: rotate(-90deg);
}

.collapsible-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.collapsible-content.collapsed {
    max-height: 0;
}

.collapsible-content.expanded {
    max-height: 2000px;
}

/* ===== ЗВЕЗДЫ TRUSTPILOT ===== */
.trustpilot-star {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.trustpilot-star svg {
    width: 100%;
    height: 100%;
}

/* Заполненная звезда */
.trustpilot-star.filled svg path {
    fill: #00B67A !important;
}

/* Пустая звезда */
.trustpilot-star.empty svg path {
    fill: #ddd !important;
    stroke: #ccc !important;
    stroke-width: 0.5 !important;
}

/* Контейнеры для звезд */
.review-rating,
.rating-box {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-rating {
    margin-bottom: 15px;
}

/* Размеры звезд для разных мест */
.rating-box .trustpilot-star {
    width: 18px;
    height: 18px;
}

.review-rating .trustpilot-star {
    width: 20px;
    height: 20px;
}

/* Рейтинг товара */
.box-review {
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.reviews_button {
    color: #00B67A;
    text-decoration: underline;
    font-size: 14px;
    margin-right: 10px;
    cursor: pointer;
}

.reviews_button:hover {
    color: #008a5c;
    text-decoration: none;
}

.order-num {
    color: #666;
    font-size: 13px;
}

.order-num:before {
    content: "• ";
    margin-right: 5px;
}
/* .reviews_button {
  margin-left: 10px;  
} */
/* ===== ОТЗЫВЫ ===== */
.table-reply {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-header {
    background: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    font-weight: bold;
    color: #333;
}

.review-content {
    background: #fff !important;
    padding: 20px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 15px 0;
    white-space: pre-line;
}

.review-answer {
    background: #f8f9fa;
    border-left: 4px solid #00B67A;
    padding: 15px;
    margin-top: 15px;
    border-radius: 0 4px 4px 0;
}

.review-answer strong {
    color: #00B67A;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.review-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.no-reviews {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 768px) {
    .mobile-collapse-button {
        display: flex;
    }

    .desktop-title {
        display: none;
    }

    .specifications-grid-container {
        grid-template-columns: 1fr;
        margin-bottom: 0;
        border: none;
        border-radius: 0;
    }

    .prod-spec-item {
        border-right: none;
        border-left: 1px solid #e5e5e5;
        border-right: 1px solid #e5e5e5;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        border-top: none;
    }

    .prod-spec-item:first-child {
        border-top: 1px solid #e5e5e5;
    }

    .spec-name-half,
    .spec-value-half {
        width: 100%;
        text-align: left;
    }

    .spec-value-half {
        margin-top: 4px;
    }

    .prod-spec-item:last-child {
        border-bottom: 1px solid #e5e5e5;
    }

    .review-content {
        padding: 15px;
    }

    .review-header {
        padding: 10px;
        font-size: 14px;
    }

    .review-text {
        font-size: 13px;
    }

    .review-rating {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}