/* CATCommerceChild 1.1.1
   Ausschließlich projektspezifische Anpassungen.
*/
:root {
    --cat-brand-primary: #2664ad;
    --cat-brand-accent: #ffb400;
}


/* CATCommerceChild 1.1.1 – Produktdetail-Erweiterungen */
.cat-commerce-service-info {
    display: grid;
    gap: .65rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.cat-commerce-service-item {
    display: grid;
    grid-template-columns: 1.5rem minmax(0, 1fr);
    gap: .7rem;
    align-items: start;
    padding: .7rem .8rem;
    background: rgba(0, 0, 0, .035);
    border-radius: .35rem;
}

.cat-commerce-service-item strong {
    display: block;
    margin-bottom: .1rem;
}

.cat-commerce-service-item p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.4;
}

.cat-commerce-service-item a {
    display: inline-block;
    margin-top: .25rem;
    font-size: .88rem;
    text-decoration: underline;
    text-underline-offset: .15em;
}

.cat-product-facts-container {
    margin-top: 1.5rem;
}

.cat-product-facts {
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: .65rem;
    background: #fff;
}

.cat-product-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
}

.cat-product-fact {
    min-width: 0;
    padding: .7rem .9rem;
    border-bottom: 1px solid rgba(0, 0, 0, .09);
}

.cat-product-fact:nth-child(odd) {
    background: rgba(0, 0, 0, .025);
}

.cat-product-fact dt {
    margin-bottom: .15rem;
    font-size: .8rem;
    font-weight: 600;
    color: #5b6470;
}

.cat-product-fact dd {
    margin: 0;
    font-weight: 600;
    overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
    .cat-product-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .cat-product-facts-grid {
        grid-template-columns: 1fr;
    }
}
