/* ── Hide OOS elements ── */
[data-fluent-cart-add-to-cart-button].fct-oos-hidden,
[data-fluent-cart-direct-checkout-button].fct-oos-hidden,
[data-fluent-cart-product-quantity-container].fct-oos-hidden {
    display: none !important;
}

/* ── Anfrage button (single product page) ── */
.fct-oos-anfrage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7em 1.8em;
    background: #4a4a4a;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
    white-space: nowrap;

    &:hover,
    &:focus-visible {
        background: #333;
        color: #fff;
        transform: translateY(-1px);
        text-decoration: none;
    }

    &:focus-visible {
        outline: 2px solid currentColor;
        outline-offset: 3px;
    }
}
