/* ============================================================
   WooCommerce Checkout — Estilos PuroOmega
   ============================================================ */

/* ── Layout: grid 2 columnas ────────────────────────────────── */
form.woocommerce-checkout {
    display: block !important;
    max-width: 1160px;
    margin: 0 auto;
}

.wl-list-pop.woocoommerce{
    display: none!important;
}

.erf-my-account-titles{
    margin-bottom: 10px!important;
}

.beps-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 489px;
    gap: 48px;
    align-items: start;
}

/* Reset floats de WooCommerce en las columnas de nuestro grid */
.beps-checkout-col {
    float: none !important;
    width: 100% !important;
    min-width: 0;
}

.beps-checkout-col--summary {
    position: sticky;
    top: 32px;
}

/* Texto "Tus datos personales..." — suprimido vía filtro PHP; CSS como fallback */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    display: none !important;
}

/* Enlaces dentro del checkbox de T&C */
.woocommerce-checkout p.form-row.terms a {
    text-decoration: underline !important;
}

/* Reset col2-set: billing/shipping dentro del formulario → 1 columna */
.beps-checkout-col--form #customer_details.col2-set {
    display: block;
    float: none;
    width: 100%;
}

.beps-checkout-col--form #customer_details .col-1,
.beps-checkout-col--form #customer_details .col-2 {
    float: none !important;
    width: 100% !important;
    padding: 0;
    margin: 0;
}

/* Reset cualquier float/width de WooCommerce en el order review */
#order_review,
.woocommerce-checkout-review-order {
    float: none !important;
    width: 100% !important;
    position: static !important;
}

/* ── Títulos de sección (Método de envío / Pago) ────────────── */
.beps-checkout-section-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #130F32 !important;
    margin: 32px 0 16px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

/* Cupón en el sidebar: formulario inline (beps-coupon-form) */
.beps-coupon-row td {
    padding: 12px 0 0 !important;
    border: none !important;
}

.beps-coupon-form {
    display: flex !important;
    gap: 0 !important;
    align-items: stretch !important;
    width: 100% !important;
}

.beps-coupon-form input#coupon_code {
    flex: 1 !important;
    height: 54px !important;
    padding: 0 16px !important;
    border: 1px solid #F4F4F4 !important;
    border-right: none !important;
    border-radius: 10px 0 0 10px !important;
    background: #fff !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #130F32 !important;
    box-shadow: none !important;
    outline: none !important;
    min-width: 0 !important;
}

.beps-coupon-form input#coupon_code::placeholder {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #D9D9D9;
}

.beps-coupon-form input#coupon_code:focus {
    border-color: #130F32 !important;
    border-right: none !important;
}

.beps-coupon-form .button[name="apply_coupon"] {
    height: 54px !important;
    padding: 0 20px !important;
    background: #130F32 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 10px 10px 0 !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    -webkit-appearance: none;
    appearance: none;
    transition: none !important;
}

/* Aviso de shipping en la columna izquierda */
.beps-shipping-notice {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    padding: 12px 0;
    font-style: italic;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .beps-checkout-layout {
        grid-template-columns: 1fr 400px;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .beps-checkout-layout {
        grid-template-columns: 1fr 340px;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .beps-checkout-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 2em;
    }

    .beps-checkout-col--summary {
        position: static;
        order: 1; /* Resumen al final, después del formulario */
        /* Rompe el padding del layout para ir full-width */
        margin-left: -2em !important;
        margin-right: -2em !important;
        width: calc(100% + 4em) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* El bloque de resumen: full-width, sin card, con padding propio */
    .beps-checkout-col--summary #order_review.beps-order-summary {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        border-top: 1px solid #E8E8E8 !important;
        padding: 2em !important;
        margin-top: 0 !important;
    }

    /* Ocultar el botón y T&C del formulario en móvil (van en el order_review) */
    .beps-checkout-col--form #place_order,
    .beps-checkout-col--form .place-order #place_order {
        display: none !important;
    }

    .beps-checkout-col--form .woocommerce-terms-and-conditions-wrapper {
        display: none !important;
    }

    .beps-checkout-section-title {
        margin-top: 24px !important;
    }
}

/* T&C clonado en el order_review — oculto en desktop */
.beps-mobile-terms {
    display: none !important;
}

@media (max-width: 768px) {
    .beps-mobile-terms {
        display: block !important;
    }
}

/* Botón móvil dentro del order_review — oculto en desktop */
.beps-mobile-place-order {
    display: none !important;
    width: 100%;
    max-width: 343px;
    height: 51px;
    background: #F9D777;
    color: #130F32;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-align: center;
    margin: 20px auto 0;
    padding: 0 24px;
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.beps-mobile-place-order:hover {
    background: #f5c840;
    box-shadow: 0 4px 16px rgba(249, 215, 119, 0.4);
}

@media (max-width: 768px) {
    .beps-mobile-place-order {
        display: block !important;
    }
}

/* ── Encabezados de sección ─────────────────────────────────── */
.woocommerce-checkout h3 {
    font-size: 26px!important;
    font-weight: 700;
    color: #130F32;
    margin: 0 0 24px;
    padding: 0;
    border: none;
    background: none;
}

/* ── Fila "Datos de envío" + "¿Ya tienes cuenta?" ───────────── */
.beps-billing-header-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
}

.beps-billing-header-row h3 {
    margin-bottom: 0 !important;
}

.beps-login-toggle-link {
    font-size: 16px;
    font-weight: 400;
    color: #130F32;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    cursor: pointer;
}

.beps-login-toggle-link:hover {
    opacity: 0.7;
}

/* ── Link "¿Ya tienes cuenta?" ──────────────────────────────── */
.woocommerce-form-login-toggle {
    margin: 0 0 16px;
    font-size: 16px;
    color: #49465B;
}

.woocommerce-form-login-toggle a {
    color: #130F32;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Campos del formulario — estilos base ───────────────────── */
.woocommerce-checkout p.form-row label,
.woocommerce-checkout p.form-row label.checkbox {
    font-size: 16px;
    font-weight: 400;
    color: #130F32;
    margin-bottom: 6px;
    display: block;
}

/* Estilos de borde/fondo aplicados a TODOS los inputs del checkout */
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout select,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"] {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #F4F4F4;
    border-radius: 8px;
    font-size: 14px;
    color: #130F32;
    background: #ffffff;
    transition: border-color 0.18s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    box-sizing: border-box;
}

.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout input[type="password"]:focus {
    border: 1px solid #130F32;
    box-shadow: none;
}

/* Campo DNI/NIF (añadido por Checkout Field Editor): se veía con un trazo azul distinto
   al resto de campos. Refuerzo directo por ID para igualarlo, sin depender de encontrar
   la regla exacta que lo pintaba de otro color. */
#billing_dni_nif,
#billing_dni_nif:invalid,
#billing_dni_nif:required {
    border: 1px solid #F4F4F4 !important;
    outline: none !important;
    box-shadow: none !important;
}
#billing_dni_nif:focus {
    border: 1px solid #130F32 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ── Billing / Shipping — layout 2 columnas ─────────────────── */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px 24px !important;
}

.woocommerce-billing-fields__field-wrapper > .form-row,
.woocommerce-shipping-fields__field-wrapper > .form-row {
    flex: 0 0 calc(50% - 12px) !important;
    width: calc(50% - 12px) !important;
    float: none !important;
    margin: 0 !important;
    clear: none !important;
    box-sizing: border-box !important;
}

.woocommerce-billing-fields__field-wrapper > .form-row.form-row-wide,
.woocommerce-shipping-fields__field-wrapper > .form-row.form-row-wide {
    flex: 0 0 100% !important;
    width: 100% !important;
}

/* Inputs de billing y shipping: 268px × 53px (no afecta al cupón) */
.woocommerce-billing-fields .input-text,
.woocommerce-billing-fields input[type="text"],
.woocommerce-billing-fields input[type="email"],
.woocommerce-billing-fields input[type="tel"],
.woocommerce-billing-fields input[type="password"],
.woocommerce-billing-fields select,
.woocommerce-shipping-fields .input-text,
.woocommerce-shipping-fields input[type="text"],
.woocommerce-shipping-fields input[type="email"],
.woocommerce-shipping-fields input[type="tel"],
.woocommerce-shipping-fields input[type="password"],
.woocommerce-shipping-fields select {
    max-width: 268px !important;
    height: 53px !important;
    padding: 0 14px !important;
}

/* Mobile: una sola columna */
@media (max-width: 600px) {
    .woocommerce-billing-fields__field-wrapper > .form-row,
    .woocommerce-shipping-fields__field-wrapper > .form-row {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
    .woocommerce-billing-fields .input-text,
    .woocommerce-billing-fields input[type="text"],
    .woocommerce-billing-fields input[type="email"],
    .woocommerce-billing-fields input[type="tel"],
    .woocommerce-billing-fields input[type="password"],
    .woocommerce-billing-fields select,
    .woocommerce-shipping-fields .input-text,
    .woocommerce-shipping-fields input[type="text"],
    .woocommerce-shipping-fields input[type="email"],
    .woocommerce-shipping-fields input[type="tel"],
    .woocommerce-shipping-fields input[type="password"],
    .woocommerce-shipping-fields select {
        max-width: 100% !important;
    }
}

/* ── NUCLEAR: anula toda coloración de labels (THWCFD, cualquier plugin) ─── */
.woocommerce-checkout label,
.woocommerce-checkout label *,
.woocommerce-checkout label span,
.woocommerce-checkout label abbr,
.woocommerce-checkout label abbr.required,
.woocommerce-checkout .form-row label,
.woocommerce-checkout .form-row label *,
.woocommerce-checkout .form-row label span,
.woocommerce-checkout .form-row label abbr,
.woocommerce-checkout p.form-row label,
.woocommerce-checkout p.form-row label *,
.woocommerce-checkout p.form-row label span,
.woocommerce-checkout p.form-row label abbr,
.woocommerce-checkout .form-row label.required_field,
.woocommerce-checkout .form-row.thwcfd-required label,
.woocommerce-checkout .form-row.thwcfd-required label *,
.woocommerce-checkout .form-row.thwcfd-optional label,
.woocommerce-checkout .form-row.thwcfd-optional label * {
    color: #130F32 !important;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

/* ── Reset bordes pintados por THWCFD (thwcfd-required/optional) */
.woocommerce-checkout .form-row.thwcfd-required .input-text,
.woocommerce-checkout .form-row.thwcfd-optional .input-text,
.woocommerce-checkout .form-row.thwcfd-required select,
.woocommerce-checkout .form-row.thwcfd-optional select {
    border: 1px solid #F4F4F4 !important;
    box-shadow: none !important;
    outline: none !important;
}

.woocommerce-checkout .form-row.thwcfd-required .input-text:focus,
.woocommerce-checkout .form-row.thwcfd-optional .input-text:focus,
.woocommerce-checkout .form-row.thwcfd-required select:focus,
.woocommerce-checkout .form-row.thwcfd-optional select:focus {
    border: 1px solid #130F32 !important;
}

/* ── Validación WooCommerce — suave, sin outline rojo agresivo ─── */
.woocommerce-checkout .form-row.woocommerce-invalid .input-text,
.woocommerce-checkout .form-row.woocommerce-invalid select {
    border-color: #F4A7A7 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Checkbox de T&C inválido — solo cambia el borde, sin outline */
.woocommerce-invalid #terms {
    border-color: #F4A7A7 !important;
    outline: none !important;
    box-shadow: none !important;
}

.woocommerce-checkout .form-row.woocommerce-validated .input-text,
.woocommerce-checkout .form-row.woocommerce-validated select {
    border-color: #F4F4F4 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ── "¿Enviar a una dirección diferente?" — heading + checkbox custom ── */
.woocommerce-shipping-fields {
    margin-top: 15px;
}

/* padding-left: 20px alinea el círculo con los de #shipping_method / #payment,
   que van dentro de una fila con padding:18px 20px — este bloque no tiene esa fila. */
#ship-to-different-address {
    display: flex;
    align-items: center;
    margin: 0 0 24px;
    padding: 0 0 0 20px;
    border: none;
    background: none;
}

#ship-to-different-address .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #130F32;
    line-height: 1.2;
}

#ship-to-different-address-checkbox {
    display: inline-block !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    border-radius: 50% !important;
    background-color: #FFFFFF !important;
    border: 1px solid #F4F4F4 !important;
    box-sizing: border-box !important;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    margin: 0 !important;
    vertical-align: middle;
    box-shadow: none !important;
}

#ship-to-different-address-checkbox:checked {
    background-color: #130F32 !important;
    border-color: #130F32 !important;
    box-shadow: inset 0 0 0 4px #FFFFFF !important;
}

/* ── "Crear una cuenta" — checkbox circular + label ────────── */
.woocommerce-account-fields .woocommerce-form__label-for-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #130F32;
    line-height: 1.3;
}

#createaccount {
    display: inline-block !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    border-radius: 50% !important;
    background-color: #FFFFFF !important;
    border: 1px solid #F4F4F4 !important;
    box-sizing: border-box !important;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    margin: 0 !important;
    vertical-align: middle;
    box-shadow: none !important;
}

#createaccount:checked {
    background-color: #130F32 !important;
    border-color: #130F32 !important;
    box-shadow: inset 0 0 0 4px #FFFFFF !important;
}

/* Input contraseña dentro de "Crear cuenta" — mismo tamaño que billing/shipping */
.woocommerce-account-fields .create-account .input-text,
.woocommerce-account-fields .create-account input[type="password"] {
    max-width: 268px !important;
    height: 53px !important;
    padding: 0 14px !important;
}

/* Label contraseña — misma tipografía que los demás campos */
.woocommerce-account-fields .create-account label {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #130F32 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

/* Mostrar/ocultar contraseña — alinear el botón */
.woocommerce-account-fields .password-input {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    max-width: 268px !important;
}

.woocommerce-account-fields .show-password-input {
    position: absolute !important;
    right: 12px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    color: #9CA3AF !important;
}

/* Tarjeta guest con cursor pointer (clickable) */
.beps-guest-points-notice {
    cursor: pointer !important;
}

/* Ocultar la sección nativa "¿Crear una cuenta?" de WooCommerce.
   La funcionalidad se reemplaza por la tarjeta beps-guest-points-notice. */
.woocommerce-account-fields {
    display: none !important;
}

/* Wrapper del campo contraseña — sin fondo ni padding, solo separa del form */
.beps-create-account-fields {
    margin: 12px 0 24px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
}

.beps-create-account-fields #account_password_field {
    margin: 0 !important;
}

.beps-create-account-fields label {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #130F32 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.beps-create-account-fields .input-text,
.beps-create-account-fields input[type="password"] {
    max-width: 268px !important;
    height: 53px !important;
    padding: 0 14px !important;
}

.beps-create-account-fields .password-input {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    max-width: 268px !important;
}

.beps-create-account-fields .show-password-input {
    position: absolute !important;
    right: 12px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    color: #9CA3AF !important;
}

/* ── Ocultar campo País (se envía como hidden con valor ES) ──── */
#billing_country_field,
#shipping_country_field {
    display: none !important;
}

/* ── Select2 — Provincia / Estado (match input design) ─────────── */
.woocommerce-checkout .select2-container {
    max-width: 268px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
    height: 53px !important;
    border: 1px solid #F4F4F4 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #130F32 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 0 36px 0 14px !important;
    line-height: 53px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #9CA3AF !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 51px !important;
    top: 1px !important;
    right: 12px !important;
    width: 20px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #130F32 transparent transparent transparent !important;
    border-width: 5px 4px 0 4px !important;
    margin-top: -2px !important;
}

/* Foco / abierto */
.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #130F32 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Flecha invertida al abrir */
.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #130F32 transparent !important;
    border-width: 0 4px 5px 4px !important;
}

/* Dropdown list */
.woocommerce-checkout .select2-dropdown {
    border: 1px solid #130F32 !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(19, 15, 50, 0.10) !important;
    overflow: hidden !important;
}

.woocommerce-checkout .select2-results__option {
    font-size: 14px !important;
    color: #130F32 !important;
    padding: 10px 14px !important;
}

.woocommerce-checkout .select2-results__option--highlighted {
    background-color: #F8F8FA !important;
    color: #130F32 !important;
}

.woocommerce-checkout .select2-container--default .select2-results__option--selected {
    background-color: #F0F0F5 !important;
}

/* Override THWCFD bordes en el select2 también */
.woocommerce-checkout .form-row.thwcfd-required .select2-selection--single,
.woocommerce-checkout .form-row.thwcfd-optional .select2-selection--single {
    border: 1px solid #F4F4F4 !important;
}

/* ── Banner informativo (puntos / login / cupón) ────────────── */
.woocommerce-checkout .woocommerce-info {
    background: #EBF5FB;
    border-top: none;
    border-left: 3px solid #3498db;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: #1a5276;
    margin: 0 0 24px;
    line-height: 1.6;
}

.woocommerce-checkout .woocommerce-info::before {
    display: none;
}

/* ── Bloque YITH puntos — aviso informativo, sin checkbox ── */
#yith-par-message-cart {
    display: block !important;
    background-color: #CBDCE5 !important;
    border-radius: 16px !important;
    padding: 20px 24px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 586px!important;
    border: none !important;
    border-top: none !important;
    border-left: none !important;
    color: #130F32 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    margin: 32px 0 24px !important;
}

#yith-par-message-cart::before { display: none !important; }

#yith-par-message-cart strong {
    font-weight: 700 !important;
    color: #130F32 !important;
}

#yith-par-message-cart .woocommerce-Price-amount,
#yith-par-message-cart .woocommerce-Price-currencySymbol,
#yith-par-message-cart bdi {
    display: inline !important;
    font-size: 14px !important;
    color: #130F32 !important;
}

/* ── Tarjeta "Crea tu cuenta para ganar puntos" (usuarios no logueados) ── */
.beps-guest-points-notice {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background-color: #CBDCE5 !important;
    border-radius: 16px !important;
    padding: 20px 24px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-height: 100px !important;
    border: none !important;
    color: #130F32 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin: 32px 50px 0 0!important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.beps-guest-points-notice__dot {
    display: inline-block !important;
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(19,15,50,0.3) !important;
    background: #FFFFFF !important;
    box-sizing: border-box !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

.beps-guest-points-notice__dot.is-checked {
    background-color: #130F32 !important;
    border-color: #130F32 !important;
    box-shadow: inset 0 0 0 4px #FFFFFF !important;
}

.beps-guest-points-notice strong {
    font-weight: 700 !important;
    color: #130F32 !important;
}

/* ── Métodos de envío — bloque único ───────────────────────────────────────── */
#shipping_method {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 586px !important;
    border: 1px solid #E8E8E8 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

#shipping_method li {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 18px 20px !important;
    border: none !important;
    border-bottom: 1px solid #E8E8E8 !important;
    margin: 0 !important;
    background: #ffffff !important;
    cursor: pointer;
    transition: background 0.15s ease;
}

#shipping_method li:last-child {
    border-bottom: none !important;
}

#shipping_method li label {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex: 1 !important;
    cursor: pointer !important;
    margin: 0 !important;
    gap: 10px !important;
}

/* Nombre del método */
#shipping_method .beps-shipping-name {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 32px !important;
    letter-spacing: -0.019em !important;
    color: #130F32 !important;
}

/* Coste / descripción del método — precio arriba, plazo de entrega debajo (ver Figma) */
#shipping_method .beps-shipping-cost {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

#shipping_method .beps-shipping-price,
#shipping_method .beps-shipping-time {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    letter-spacing: -0.019em !important;
    color: #D5D5D5 !important;
}

/* Radio circular — mismo estilo que los checkboxes del checkout */
#shipping_method input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    border-radius: 50% !important;
    border: 1.5px solid #C8C8C8 !important;
    background: #FFFFFF !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

#shipping_method input[type="radio"]:checked {
    background-color: #130F32 !important;
    border-color: #130F32 !important;
    box-shadow: inset 0 0 0 4px #FFFFFF !important;
}

/* ── Métodos de pago — bloque único ─────────────────────────────────────── */
/* form.woocommerce-checkout aumenta especificidad a [1,1,1] para ganar al CSS del tema */
#payment,
form.woocommerce-checkout #payment {
    background: none !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#payment .wc_payment_methods {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 586px !important;
    border: 1px solid #E8E8E8 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

/* Grid: columna 1 = radio (20px fijos), columna 2 = label + payment_box.
   Evita el flex-wrap que causaba gap visual alrededor del radio. */
#payment .wc_payment_methods li.wc_payment_method {
    display: grid !important;
    grid-template-columns: 20px 1fr !important;
    column-gap: 14px !important;
    align-items: center !important;
    padding: 18px 20px !important;
    border: none !important;
    border-bottom: 1px solid #E8E8E8 !important;
    margin: 0 !important;
    background: #ffffff !important;
    list-style: none !important;
}

#payment .wc_payment_methods li.wc_payment_method:last-child {
    border-bottom: none !important;
}

/* Radio — celda (fila 1, columna 1): siempre 20×20, sin márgenes */
#payment .wc_payment_methods li.wc_payment_method input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    border: 1.5px solid #C8C8C8 !important;
    background: #FFFFFF !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

#payment .wc_payment_methods li.wc_payment_method input[type="radio"]:checked {
    background-color: #130F32 !important;
    border-color: #130F32 !important;
    box-shadow: inset 0 0 0 4px #FFFFFF !important;
}

/* Label — celda (fila 1, columna 2): nombre + iconos */
#payment .wc_payment_methods li.wc_payment_method > label {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 32px !important;
    letter-spacing: -0.019em !important;
    color: #130F32 !important;
    gap: 10px !important;
}

/* Contenedor de múltiples iconos (ej: Redsys → Visa, MC, Visa Electron) */
#payment .wc_payment_methods li.wc_payment_method > label .beps-pay-icons {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

#payment .wc_payment_methods li.wc_payment_method > label .beps-pay-icons img {
    height: 22px !important;
    width: auto !important;
    max-width: 48px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
}

/* Icono único directamente en el label (ej: Bizum, PayPal) */
#payment .wc_payment_methods li.wc_payment_method > label > img {
    height: 22px !important;
    width: auto !important;
    max-width: 100px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
}

/* Caja del formulario de pago — celda (fila 2, columna 2): se alinea bajo el label */
#payment .payment_box {
    grid-column: 2 !important;
    grid-row: 2 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 13px !important;
    color: #49465B !important;
    position: static !important;
}

/* Flecha/triángulo nativo de WooCommerce — ocultar */
#payment .payment_box::before,
#payment .payment_box::after {
    display: none !important;
    content: none !important;
}

/* Descripciones de texto del método de pago — ocultar */
#payment .payment_box > p {
    display: none !important;
}

#payment .payment_box .form-row {
    margin-bottom: 10px !important;
}

#payment .payment_box .form-row:last-child {
    margin-bottom: 0 !important;
}

#payment .payment_box input.input-text {
    background: #ffffff !important;
    border: 1px solid #F4F4F4 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
    color: #130F32 !important;
    height: auto !important;
    box-shadow: none !important;
}

#payment .payment_box input.input-text:focus {
    border-color: #130F32 !important;
    outline: none !important;
}

/* ── Botón "Realizar pedido" ────────────────────────────────── */
#place_order,
.woocommerce-checkout #place_order {
    display: block !important;
    width: 100% !important;
    padding: 15px 24px !important;
    background: #F9D777 !important;
    color: #130F32 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    transition: background 0.18s ease, box-shadow 0.18s ease !important;
    margin-top: 24px !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    -webkit-appearance: none;
    appearance: none;
}

#place_order:hover,
.woocommerce-checkout #place_order:hover {
    background: #f5c840 !important;
    box-shadow: 0 4px 16px rgba(249, 215, 119, 0.4) !important;
    color: #130F32 !important;
}

/* ── Resumen del pedido — card columna derecha ───────────────── */

.beps-checkout-col--summary #order_review.beps-order-summary {
    background: #F8F8FA !important;
    border: 1px solid #E8E8E8 !important;
    border-radius: 14px !important;
    padding: 35px !important;
    float: none !important;
    width: 100% !important;
    min-height: 440px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.beps-order-summary__title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #130F32;
    margin: 0 0 20px;
    padding: 0;
    border: none;
    background: none;
}

/* ── Tabla de productos ──────────────────────────────────────── */
.beps-order-summary__table {
    width: 100%;
    border-collapse: collapse;
    border: none !important;
    background: transparent !important;
    margin-bottom: 0;
    box-shadow: none !important;
}

.beps-order-summary__table tr,
.beps-order-summary__table tr:hover,
.beps-order-summary__table td,
.beps-order-summary__table th {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.beps-order-summary__product td {
    padding: 12px 0 !important;
    vertical-align: middle;
}

.beps-order-summary__product-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    color: #130F32;
}

.beps-order-summary__product-info img {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    flex-shrink: 0;
}

.beps-order-summary__product-name {
    flex: 1;
}

.beps-order-summary__product-price {
    text-align: right;
    font-family: 'Raleway', sans-serif;
    font-weight: 400!important;
    font-size: 16px;
    white-space: nowrap;
    padding-left: 12px;
    vertical-align: middle;
    color: #130F32;
}

/* ── Separador ───────────────────────────────────────────────── */
.beps-order-summary__divider {
    border: none !important;
    border-top: 1px solid #E8E8E8 !important;
    margin: 15px 0 !important;
    background: transparent;
}

/* ── Cupón ───────────────────────────────────────────────────── */
.beps-order-summary__coupon {
    padding: 8px 0;
}

/* ── Cupón aplicado — fila de descuento en el resumen ───────── */
/* Pill tag — idéntico al .beps-cart-coupon-tag del mini-cart */
.beps-coupon-code-tag {
    display: inline-flex !important;
    align-items: center !important;
    background: #EEF7EE !important;
    border: 1px solid #B8DABC !important;
    border-radius: 100px !important;
    padding: 4px 12px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #257A38 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
}

.beps-order-summary__row.cart-discount td,
.beps-order-summary__totals .cart-discount td {
    color: #257A38 !important;
    font-weight: 600 !important;
}

.beps-order-summary__row.cart-discount td .woocommerce-Price-amount,
.beps-order-summary__totals .cart-discount td .woocommerce-Price-amount {
    color: #257A38 !important;
}

.beps-order-summary__row.cart-discount .woocommerce-remove-coupon,
.beps-order-summary__totals .cart-discount .woocommerce-remove-coupon {
    color: #257A38 !important;
    margin-left: 8px !important;
    font-size: 16px !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    opacity: 0.65 !important;
    line-height: 1 !important;
}

.beps-order-summary__row.cart-discount .woocommerce-remove-coupon:hover,
.beps-order-summary__totals .cart-discount .woocommerce-remove-coupon:hover {
    opacity: 1 !important;
    text-decoration: none !important;
}

/* ── Tabla de totales ────────────────────────────────────────── */
.beps-order-summary__totals {
    width: 100%;
    border-collapse: collapse;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.beps-order-summary__totals tr,
.beps-order-summary__totals tr:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.beps-order-summary__row th,
.beps-order-summary__row td {
    padding: 8px 0 !important;
    font-family: 'Raleway', sans-serif;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 26px !important;
    letter-spacing: 0 !important;
    color: #130F32;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.beps-order-summary__row th {
    text-align: left;
}

.beps-order-summary__row td {
    text-align: right;
}

/* Fila Total — separador superior + tipografía destacada */
.beps-order-summary__total th,
.beps-order-summary__total td {
    border: none !important;
    border-top: 1px solid #E8E8E8 !important;
    padding: 8px 0 0 !important;
}

.beps-order-summary__total th {
    font-family: 'Raleway', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 26px !important;
    text-align: left !important;
    vertical-align: middle !important;
}

.woocommerce-Price-amount.amount bdi{
    font-weight: 600!important;
}

.beps-order-summary__total td {
    font-family: 'Raleway', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 26px !important;
    text-align: right !important;
    vertical-align: middle !important;
}

/* Texto IVA bajo el total */
.beps-order-summary__total .includes_tax {
    display: block;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #9CA3AF;
    margin-top: 2px;
    line-height: 1.4 !important;
}

/* "Introduce la dirección de envío" — sin cursiva */
.beps-order-summary__shipping em,
.beps-order-summary__shipping td em {
    font-style: normal !important;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 26px !important;
    letter-spacing: 0 !important;
}

/* ── Código de descuento (posición en el checkout) ───────────── */
/* Toggle */
.woocommerce-form-coupon-toggle {
    font-size: 14px;
    color: #49465B;
    margin: 0 0 12px;
}

.woocommerce-form-coupon-toggle a {
    color: #130F32;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Formulario de cupón */
.woocommerce-form-coupon {
    display: flex !important;
    gap: 8px !important;
    align-items: stretch !important;
    padding: 16px !important;
    border: 1.5px solid #E8E8E8 !important;
    border-radius: 10px !important;
    background: #F8F8FA !important;
    margin: 0 0 24px !important;
    flex-wrap: nowrap !important;
}

.woocommerce-form-coupon p.form-row {
    margin: 0 !important;
    flex: 1;
}

.woocommerce-form-coupon p.form-row:last-child {
    flex: 0 0 auto;
}

.woocommerce-form-coupon input#coupon_code {
    padding: 10px 14px !important;
    border: 1.5px solid #E8E8E8 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    font-size: 14px !important;
    color: #49465B !important;
    width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    outline: none !important;
}

.woocommerce-form-coupon input#coupon_code::placeholder {
    color: #9CA3AF;
}

.woocommerce-form-coupon input#coupon_code:focus {
    border-color: #130F32 !important;
}

.woocommerce-form-coupon input[type="submit"],
.woocommerce-form-coupon button[type="submit"] {
    padding: 10px 18px !important;
    background: #130F32 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: opacity 0.18s ease !important;
    height: auto !important;
    -webkit-appearance: none;
    appearance: none;
}

.woocommerce-form-coupon input[type="submit"]:hover,
.woocommerce-form-coupon button[type="submit"]:hover {
    opacity: 0.85 !important;
    background: #130F32 !important;
    color: #ffffff !important;
}

/* Cupón dentro del order review (si el tema lo ubica ahí) */
.woocommerce-checkout-review-order .coupon {
    display: flex;
    gap: 8px;
    margin: 0 0 16px;
}

.woocommerce-checkout-review-order .coupon input[type="text"] {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #E8E8E8;
    border-radius: 8px;
    background: #F8F8FA;
    font-size: 14px;
    color: #49465B;
    outline: none;
    width: 100%;
}

.woocommerce-checkout-review-order .coupon input[type="text"]:focus {
    border-color: #130F32;
}

.woocommerce-checkout-review-order .coupon button,
.woocommerce-checkout-review-order .coupon input[type="submit"] {
    padding: 10px 18px;
    background: #130F32;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.18s ease;
}

.woocommerce-checkout-review-order .coupon button:hover {
    opacity: 0.85;
}

/* ── Checkboxes de consentimiento de marketing ──────────────── */
.beps-marketing-consent {
    margin: 0 0 20px;
}

.beps-marketing-consent__row {
    display: flex !important;
    align-items: flex-start !important;
    padding: 0 !important;
    margin: 0 0 10px !important;
}

.beps-marketing-consent .woocommerce-form__label-for-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer !important;
    margin: 0 !important;
    font-weight: 400 !important;
    color: #130F32 !important;
    line-height: 1.5 !important;
}

/* Texto idéntico al del checkbox de T&C */
.beps-marketing-consent .woocommerce-form__label-for-checkbox > span {
    font-family: 'Raleway', sans-serif !important;
    font-size: 18px !important;
    line-height: 25px !important;
    font-weight: 400 !important;
    color: #130F32 !important;
    letter-spacing: 0 !important;
}

.beps-consent-checkbox {
    display: inline-block !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    border-radius: 50% !important;
    background-color: #FFFFFF !important;
    border: 1px solid #F4F4F4 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
    margin: 2px 0 0 !important;
    box-shadow: none !important;
}

.beps-consent-checkbox:checked {
    background-color: #130F32 !important;
    border-color: #130F32 !important;
    box-shadow: inset 0 0 0 4px #FFFFFF !important;
}

/* Registro — mismos checkboxes dentro del form de registro */
.woocommerce-form-register .beps-marketing-consent {
    margin: 8px 0 16px;
}

/* ── Términos y condiciones ─────────────────────────────────── */
.woocommerce-terms-and-conditions-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
}

.woocommerce-privacy-policy-text {
    font-size: 13px !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
}

.woocommerce-privacy-policy-text p {
    margin: 0 !important;
}

/* Fila del checkbox de T&C */
.woocommerce-terms-and-conditions-wrapper .form-row {
    display: flex !important;
    align-items: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer !important;
    margin: 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #130F32 !important;
    line-height: 1.5 !important;
}

/* Checkbox circular — igual que los demás */
#terms,
#terms-mobile {
    display: inline-block !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    border-radius: 50% !important;
    background-color: #FFFFFF !important;
    border: 1px solid #F4F4F4 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    margin: 2px 0 0 !important;
    box-shadow: none !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

#terms:checked,
#terms-mobile:checked {
    background-color: #130F32 !important;
    border-color: #130F32 !important;
    box-shadow: inset 0 0 0 4px #FFFFFF !important;
}

/* abbr "obligatorio" — ocultar, el * va inline via ::after */
.woocommerce-terms-and-conditions-wrapper abbr.required {
    display: none !important;
}

.woocommerce-terms-and-conditions-checkbox-text::after {
    content: ' *';
    color: #130F32;
}

/* Texto del label */
.woocommerce-terms-and-conditions-checkbox-text {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 25px !important;
    letter-spacing: 0 !important;
    color: #130F32 !important;
}

.woocommerce-terms-and-conditions-checkbox-text a,
.woocommerce-privacy-policy-text a {
    color: #130F32 !important;
    text-decoration: underline !important;
}

/* Links generales en el checkout */
.woocommerce-checkout a {
    color: #130F32 !important;
    text-decoration: underline !important;
}

/* ── Spinner de carga ───────────────────────────────────────── */
.woocommerce-checkout .blockUI.blockOverlay::before {
    border-color: #130F32;
}

/* ── Mensajes de error y aviso ──────────────────────────────── */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message {
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .woocommerce-checkout h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .woocommerce-checkout h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .beps-checkout-col--summary #order_review.beps-order-summary {
        padding: 2em !important;
        border-radius: 0 !important;
        margin-top: 2em!important;
    }

    .beps-order-summary__title {
        font-size: 17px;
    }

    #place_order,
    .woocommerce-checkout #place_order {
        font-size: 15px !important;
        padding: 14px 20px !important;
        margin-top: 20px !important;
    }

    #payment .payment_box {
        margin-left: 0 !important;
    }

    .beps-coupon-form input#coupon_code {
        height: 48px !important;
        font-size: 14px !important;
    }

    .beps-coupon-form .button[name="apply_coupon"] {
        height: 48px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-checkout .form-row .input-text,
    .woocommerce-checkout select,
    .woocommerce-checkout input[type="text"],
    .woocommerce-checkout input[type="email"],
    .woocommerce-checkout input[type="tel"] {
        font-size: 16px; /* Previene zoom en iOS */
        padding: 12px 14px;
    }
}

/* ── [beps_cart_summary] ──────────────────────────────────────────────────── */

.beps-cart-summary-bar,
.woocommerce-checkout a.beps-cart-summary-bar,
.woocommerce-checkout a.beps-cart-summary-bar:hover,
.woocommerce-checkout a.beps-cart-summary-bar:visited {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8FA;
    color: #130F32 !important;
    padding: 14px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    border-radius: 8px;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    cursor: pointer;
}

.beps-cart-summary-bar__label {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 32px;
    letter-spacing: -0.019em;
}

.beps-cart-summary-bar__label svg {
    flex-shrink: 0;
    color: #130F32;
}

.beps-cart-summary-bar__total {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: right;
    color: #130F32;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}
