/* V2 — uniquement fiches produit */
body#product .product-information .tabs,
body#product .tabs {
    width: min(92vw, 760px) !important;
    max-width: 760px !important;
    box-sizing: border-box !important;

    /* Bordure plus épaisse, bleu foncé côté intérieur, bleu clair côté extérieur */
    border: 6px solid transparent !important;
    border-radius: 12px !important;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg,
            #0a2f63 0%,
            #0d4f91 28%,
            #2f7fbe 58%,
            #7fc1ea 82%,
            #b8def7 100%) border-box !important;

    box-shadow:
        inset 0 0 0 2px rgba(7, 43, 89, .72),
        0 0 0 5px rgba(70, 151, 209, .28),
        0 0 18px rgba(19, 93, 152, .38) !important;

    padding: 18px 22px 22px !important;
    margin-top: 20px !important;
    margin-bottom: 24px !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Préserve l'intérieur */
body#product .product-information .tabs .tab-content,
body#product .tabs .tab-content {
    background: #fff !important;
}

/* Petit écran */
@media (max-width: 767px) {
    body#product .product-information .tabs,
    body#product .tabs {
        width: calc(100vw - 28px) !important;
        max-width: none !important;
        padding: 14px !important;
        border-width: 4px !important;
    }
}
