/* Klemmshop Cross Selling 1.0.7 */
.kscs-section {
    width: 100%;
    max-width: 100%;
    clear: both;
    box-sizing: border-box;
}

/* Product detail: compact cards at the bottom of the right product info box */
.kscs-section--compact {
    flex: 0 0 100%;
    margin: 14px 0 0;
    padding: 13px 0 2px;
    border-top: 1px solid rgba(23, 27, 36, .12);
}

.kscs-mini-heading {
    margin: 0 0 9px;
    color: var(--ks-ink, #171b24);
    font-family: Montserrat, "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.kscs-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.kscs-mini-card {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 78px;
    padding: 7px 8px;
    border: 1px solid rgba(23, 27, 36, .12);
    border-radius: 9px;
    background: #fff;
    color: var(--ks-ink, #171b24);
    text-decoration: none !important;
    box-shadow: 0 1px 2px rgba(23, 27, 36, .03);
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.kscs-mini-card:hover,
.kscs-mini-card:focus-visible {
    color: var(--ks-ink, #171b24);
    border-color: rgba(23, 27, 36, .28);
    box-shadow: 0 3px 10px rgba(23, 27, 36, .08);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.kscs-mini-image-wrap {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    margin-right: 9px;
    border-radius: 7px;
    overflow: hidden;
    background: #f6f7f8;
}

.kscs-mini-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.kscs-mini-image--empty {
    background: #f3f4f5;
}

.kscs-mini-copy {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.kscs-mini-name {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ks-ink, #171b24);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kscs-mini-price {
    display: block;
    min-height: 17px;
    margin-top: 4px;
    color: var(--ks-ink, #171b24);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.kscs-mini-price-star {
    font-weight: 700;
}

.kscs-mini-arrow {
    flex: 0 0 auto;
    margin-left: 5px;
    color: rgba(23, 27, 36, .48);
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
}

/* Cart: integrated into the NOVA checkout summary card below "Zur Kasse" */
.kscs-section--compact-cart {
    margin: 15px 0 0;
    padding: 14px 0 0;
    border: 0;
    border-top: 1px solid rgba(23, 27, 36, .12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.kscs-mini-heading--cart {
    margin: 0 0 9px;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.3;
}

.kscs-mini-grid--cart {
    grid-template-columns: 1fr;
    gap: 7px;
}

.kscs-mini-card--cart {
    min-height: 64px;
    padding: 6px 7px;
    border-color: rgba(23, 27, 36, .10);
    border-radius: 8px;
    box-shadow: none;
}

.kscs-mini-card--cart:hover,
.kscs-mini-card--cart:focus-visible {
    border-color: rgba(23, 27, 36, .24);
    box-shadow: 0 2px 7px rgba(23, 27, 36, .06);
}

.kscs-mini-image-wrap--cart {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    margin-right: 8px;
    border-radius: 6px;
}

.kscs-mini-name--cart {
    font-size: 11.75px;
    line-height: 1.25;
}

.kscs-section--compact-cart .kscs-mini-price {
    margin-top: 3px;
    font-size: 12px;
}

.kscs-section--compact-cart .kscs-mini-arrow {
    margin-left: 4px;
    font-size: 18px;
}

/* Home: keep the native JTL/NOVA slider */
.kscs-section:not(.kscs-section--compact) {
    margin: 2rem 0 2.5rem;
}

.kscs-section .kscs-product-slider {
    width: 100%;
    min-width: 0;
}

.kscs-section .hr-sect.h2,
.kscs-section .h2 {
    color: var(--ks-ink, #171b24);
    font-family: Montserrat, "Open Sans", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -.025em;
}

.kscs-section .product-wrapper,
.kscs-section .productbox,
.kscs-section .productbox-inner {
    min-width: 0;
    box-sizing: border-box;
}

.kscs-section .productbox-inner {
    border-radius: 15px;
}

@media (max-width: 575.98px) {
    .kscs-mini-grid {
        grid-template-columns: 1fr;
    }

    .kscs-mini-card {
        min-height: 74px;
    }

    .kscs-mini-image-wrap {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 575.98px) {
    .kscs-mini-card--cart {
        min-height: 64px;
    }

    .kscs-mini-image-wrap--cart {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }
}
