.fr-loading-wrapper {
    position: relative;
    display: inline-block;
}

.fr-spinner {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: fr-spin 0.6s linear infinite;
    pointer-events: none;
    background: transparent;
}

@keyframes fr-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Ligne shipping — mobile : label trop long, on limite la largeur du float */
@media only screen and (max-width: 921px) {
    .woocommerce table.shop_table_responsive tr.shipping td,
    .woocommerce-page table.shop_table_responsive tr.shipping td {
        overflow: hidden;
    }
    .woocommerce table.shop_table_responsive tr.shipping td::before,
    .woocommerce-page table.shop_table_responsive tr.shipping td::before {
        max-width: 60%;
        white-space: normal;
        word-wrap: break-word;
        text-align: left;
    }
}



