img {
    background-color: white !important;
}

.table-clean {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.table-clean th,
.table-clean td {
    border: none !important;
    padding: 10px 16px;
    background: transparent !important;
    font-size: 16px;
    color: #333;
    vertical-align: middle;
}

.table-clean tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.table-clean tr:first-child td:first-child,
.table-clean tr:first-child th:first-child {
    border-top-left-radius: 12px;
}

.table-clean tr:first-child td:last-child,
.table-clean tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

.table-clean tr:last-child td:first-child,
.table-clean tr:last-child th:first-child {
    border-bottom-left-radius: 12px;
}

.table-clean tr:last-child td:last-child,
.table-clean tr:last-child th:last-child {
    border-bottom-right-radius: 12px;
}


.carousel-control-prev-icon {
    background-image: none !important;
}

.carousel-control-next-icon {
    background-image: none !important;
}

#product_gallery {
    position: relative;
}

#product_gallery .carousel-control-prev,
#product_gallery .carousel-control-next {

    top: 40%;
    bottom: auto;
    transform: translateY(-50%);
}

/* #product_gallery .carousel-control-prev {
    left: -55px;
} */

#product_gallery .carousel-control-next {
    right: 5px;
}

.carousel-control-prev-icon svg,
.carousel-control-next-icon svg {
    fill: var(--color-primary-seconday);
    width: 45px;
    height: 45px;
}

@media (max-width: 820px) {
    .carousel-control-prev-icon svg,
    .carousel-control-next-icon svg {
        width: 35px;
        height: 35px;
    }
}


#product_gallery .carousel-inner > .carousel-item {
    height: max-content;
}


#product_gallery .carousel-inner > .carousel-item > img {
    max-height: none;
}

#addreview {
    margin-bottom: 30px;
}

/* ---------- Применяемость / Застосовність ---------- */
.applicability {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 4px 2px 8px;
}

.applicability__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.applicability__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #2c3338;
}

.applicability__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.applicability__chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a6cbf;
    background: rgba(0, 178, 255, .14);
    border: 1px solid rgba(0, 178, 255, .55);
    transition: background .15s ease, border-color .15s ease;
}

.applicability__chip--model {
    color: #16212a;
    background: #eceff2;
    border-color: #c7cfd6;
}

@media (max-width: 576px) {
    .applicability__chip {
        font-size: 14px;
        padding: 5px 12px;
    }
}