/* =========================================================
   BYSAA - CART / CHECKOUT / PAYMENT
   v3 — tipografía corregida, proporcional en todos los tamaños
========================================================= */

:root {
    --bysaa-bg: #f5f7fb;
    --bysaa-card: #ffffff;
    --bysaa-border: #e7ebf3;
    --bysaa-text: #0f172a;
    --bysaa-muted: #667085;
    --bysaa-primary: #2f61e8;
    --bysaa-primary-dark: #214cc0;
    --bysaa-soft-blue: #edf3ff;
    --bysaa-success-bg: #eefcf3;
    --bysaa-success-border: #c8efd6;
    --bysaa-success-text: #16a34a;
    --bysaa-neutral-bg: #f8fafc;
    --bysaa-neutral-border: #e6ebf2;
    --bysaa-danger-soft: #fff3f2;
    --bysaa-danger-border: #ffd7d2;
    --bysaa-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    --bysaa-radius-xl: 20px;
    --bysaa-radius-lg: 16px;
    --bysaa-radius-md: 12px;
    --bysaa-radius-sm: 10px;
}

/* ─────────────────────────────────────────────
   BASE
───────────────────────────────────────────── */
.bysaa-checkout-page {
    background: var(--bysaa-bg);
    padding: 28px 0 56px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bysaa-text);
}

.bysaa-checkout-page .container {
    max-width: 1200px;
}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.bysaa-checkout-header {
    margin-bottom: 24px;
}

.bysaa-checkout-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eef3ff;
    border: 1px solid #dbe6ff;
    color: #5f6f89;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bysaa-checkout-header h1 {
    margin: 0 0 10px;
    color: var(--bysaa-text);
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.bysaa-checkout-header p {
    margin: 0;
    color: #4b5b73;
    font-size: 15px;
    line-height: 1.7;
}

/* ─────────────────────────────────────────────
   GRID PRINCIPAL
───────────────────────────────────────────── */
.bysaa-cart-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.bysaa-cart-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.bysaa-cart-sidebar {
    position: sticky;
    top: 100px;
}

/* ─────────────────────────────────────────────
   CARDS
───────────────────────────────────────────── */
.bysaa-card {
    background: var(--bysaa-card);
    border: 1px solid var(--bysaa-border);
    border-radius: var(--bysaa-radius-xl);
    box-shadow: var(--bysaa-shadow);
    padding: 22px;
    margin-bottom: 18px;
}

.bysaa-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--bysaa-border);
    flex-wrap: wrap;
}

.bysaa-card-head h2 {
    margin: 0;
    color: var(--bysaa-text);
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.bysaa-card-head span {
    color: #667085;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    background: var(--bysaa-bg);
    border: 1px solid var(--bysaa-border);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ─────────────────────────────────────────────
   ITEMS DEL CARRITO
───────────────────────────────────────────── */
.bysaa-cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bysaa-cart-item {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--bysaa-border);
    border-radius: var(--bysaa-radius-lg);
    background: #fff;
}

.bysaa-cart-item-media {
    width: 100px;
    height: 100px;
    border-radius: var(--bysaa-radius-md);
    overflow: hidden;
    background: #f3f5f8;
    border: 1px solid #edf0f4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bysaa-cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bysaa-cart-item-placeholder {
    color: #7b8798;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.bysaa-cart-item-body {
    min-width: 0;
}

.bysaa-cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.bysaa-cart-item-top h3 {
    margin: 0 0 4px;
    color: var(--bysaa-text);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.bysaa-muted {
    color: var(--bysaa-muted);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* ─────────────────────────────────────────────
   PRECIOS — grid 2 cols en desktop, 1 col en mobile
───────────────────────────────────────────── */
.bysaa-cart-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.bysaa-price-line {
    background: var(--bysaa-neutral-bg);
    border: 1px solid var(--bysaa-border);
    border-radius: var(--bysaa-radius-sm);
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.bysaa-price-line span {
    color: #76839a;
    font-size: 12px;
    font-weight: 600;
}

.bysaa-price-line strong {
    color: var(--bysaa-text);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.bysaa-price-line-affiliate {
    border-color: #cfe0ff;
    background: #f7faff;
}

.bysaa-price-line-affiliate strong {
    color: var(--bysaa-primary);
}

.bysaa-line-total {
    grid-column: span 2;
    background: #fff;
    border-color: var(--bysaa-border);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
}

.bysaa-line-total span {
    font-size: 13px;
    font-weight: 700;
    color: var(--bysaa-text);
}

.bysaa-line-total strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--bysaa-primary);
}

/* ─────────────────────────────────────────────
   SIDEBAR RESUMEN
───────────────────────────────────────────── */
.bysaa-summary-card {
    padding: 20px;
}

.bysaa-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}

.bysaa-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--bysaa-border);
}

.bysaa-summary-line:last-child {
    border-bottom: none;
}

.bysaa-summary-line span {
    color: #64748b;
    font-size: 14px;
}

.bysaa-summary-line strong {
    color: var(--bysaa-text);
    font-size: 15px;
    font-weight: 700;
    text-align: right;
}

.bysaa-summary-line.total {
    padding-top: 12px;
    margin-top: 4px;
}

.bysaa-summary-line.total span {
    font-size: 15px;
    font-weight: 700;
    color: var(--bysaa-text);
}

.bysaa-summary-line.total strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--bysaa-primary);
    letter-spacing: -0.02em;
}

.bysaa-summary-note {
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid var(--bysaa-border);
    border-radius: var(--bysaa-radius-sm);
    background: var(--bysaa-neutral-bg);
}

.bysaa-summary-note p {
    margin: 0;
    color: #55657e;
    font-size: 13px;
    line-height: 1.65;
}

/* ─────────────────────────────────────────────
   MODOS DE COMPRA
───────────────────────────────────────────── */
.bysaa-customer-modes,
.bysaa-mode-grid,
.bysaa-customer-mode-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bysaa-mode-box,
.bysaa-mode-card,
.bysaa-customer-mode-card {
    background: #fff;
    border: 2px solid var(--bysaa-border);
    border-radius: var(--bysaa-radius-lg);
    padding: 18px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.bysaa-mode-box.active,
.bysaa-mode-card.is-highlight,
.bysaa-customer-mode-card.is-highlight,
.bysaa-customer-mode-card.active {
    background: var(--bysaa-soft-blue);
    border-color: #9cc0ff;
    box-shadow: 0 0 0 3px rgba(47, 97, 232, 0.07);
}

.bysaa-mode-box-head {
    margin-bottom: 10px;
}

.bysaa-mode-box-head h3,
.bysaa-mode-box h3,
.bysaa-mode-card h3,
.bysaa-customer-mode-card h3 {
    margin: 0 0 3px;
    color: var(--bysaa-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.bysaa-mode-box-head span {
    font-size: 12px;
    font-weight: 600;
    color: var(--bysaa-primary);
}

.bysaa-mode-box > p,
.bysaa-mode-card p,
.bysaa-customer-mode-card p {
    color: #4f6078;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 14px;
}

.bysaa-mode-card small,
.bysaa-customer-mode-card small {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--bysaa-primary);
    font-size: 13px;
    font-weight: 700;
}

/* ─────────────────────────────────────────────
   VALIDACIÓN AFILIADO EXITOSA
───────────────────────────────────────────── */
.bysaa-validation-success {
    background: var(--bysaa-success-bg);
    border: 1.5px solid var(--bysaa-success-border);
    border-radius: var(--bysaa-radius-md);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bysaa-validation-success strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--bysaa-success-text);
    display: flex;
    align-items: center;
    gap: 7px;
}

.bysaa-validation-success strong::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--bysaa-success-text);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

.bysaa-validation-success span {
    font-size: 13px;
    color: #166534;
    padding-left: 25px;
}

/* ─────────────────────────────────────────────
   STATE BOXES
───────────────────────────────────────────── */
.bysaa-state-box {
    border-radius: var(--bysaa-radius-lg);
    padding: 16px 18px;
    border: 1px solid var(--bysaa-neutral-border);
    background: var(--bysaa-neutral-bg);
}

.bysaa-state-box.success {
    background: var(--bysaa-success-bg);
    border-color: var(--bysaa-success-border);
}

.bysaa-state-box.neutral {
    background: var(--bysaa-neutral-bg);
    border-color: var(--bysaa-neutral-border);
}

.bysaa-state-box h3 {
    margin: 0 0 6px;
    color: var(--bysaa-text);
    font-size: 15px;
    font-weight: 700;
}

.bysaa-state-box.success h3 {
    color: var(--bysaa-success-text);
}

.bysaa-state-box p {
    margin: 0 0 4px;
    color: #4c5d76;
    font-size: 14px;
    line-height: 1.7;
}

.bysaa-state-box p:last-child {
    margin-bottom: 0;
}

.bysaa-state-box ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #4c5d76;
}

.bysaa-state-box li {
    margin-bottom: 5px;
    line-height: 1.6;
    font-size: 14px;
}

/* ─────────────────────────────────────────────
   ALERTAS
───────────────────────────────────────────── */
.bysaa-alert {
    margin-bottom: 18px;
    padding: 13px 16px;
    border-radius: var(--bysaa-radius-md);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.bysaa-alert-success {
    background: #edf9f0;
    border: 1px solid #ccebd5;
    color: #1f6b3f;
}

.bysaa-alert-error {
    background: #fff4f2;
    border: 1px solid #ffd9d2;
    color: #b42318;
}

/* ─────────────────────────────────────────────
   FORMULARIOS
───────────────────────────────────────────── */
.bysaa-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bysaa-affiliate-form {
    margin-top: 4px;
}

.bysaa-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bysaa-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bysaa-form-group label {
    color: var(--bysaa-text);
    font-size: 13px;
    font-weight: 700;
}

.bysaa-form-group input,
.bysaa-form-group textarea,
.bysaa-form-group select {
    width: 100%;
    border: 1.5px solid var(--bysaa-border);
    background: #fff;
    border-radius: var(--bysaa-radius-md);
    padding: 12px 14px;
    color: var(--bysaa-text);
    font-size: 15px;
    line-height: 1.4;
    outline: none;
    transition: .2s ease;
    box-sizing: border-box;
    min-height: 48px;
    -webkit-appearance: none;
    appearance: none;
}

.bysaa-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.bysaa-form-group input:focus,
.bysaa-form-group textarea:focus,
.bysaa-form-group select:focus {
    border-color: #8cb1ff;
    box-shadow: 0 0 0 3px rgba(47, 97, 232, .08);
}

.bysaa-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.bysaa-form-group input::placeholder,
.bysaa-form-group textarea::placeholder {
    color: #b0b9c8;
}

/* ─────────────────────────────────────────────
   BOTONES
───────────────────────────────────────────── */
.bysaa-btn {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: var(--bysaa-radius-md);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.bysaa-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.bysaa-btn:active {
    transform: translateY(0) scale(0.98);
}

.bysaa-btn-primary {
    background: var(--bysaa-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(47, 97, 232, .2);
}

.bysaa-btn-primary:hover {
    background: var(--bysaa-primary-dark);
    color: #fff;
}

.bysaa-btn-light {
    background: #fff;
    color: var(--bysaa-text);
    border: 1.5px solid var(--bysaa-border);
}

.bysaa-btn-light:hover {
    background: #f8fafc;
    color: var(--bysaa-text);
}

.bysaa-btn-danger {
    background: var(--bysaa-danger-soft);
    color: #d92d20;
    border: 1px solid var(--bysaa-danger-border);
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--bysaa-radius-sm);
    font-size: 13px;
}

.bysaa-btn-block {
    width: 100%;
    display: flex;
}

.bysaa-btn:disabled,
.bysaa-btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.bysaa-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.bysaa-btn.loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: bysaa-spin 0.7s linear infinite;
    margin-left: 6px;
    vertical-align: middle;
}

.bysaa-btn-light.loading::after {
    border-color: rgba(0, 0, 0, 0.15);
    border-top-color: var(--bysaa-text);
}

@keyframes bysaa-spin {
    to { transform: rotate(360deg); }
}

/* ─────────────────────────────────────────────
   ACCIONES DEL CHECKOUT
───────────────────────────────────────────── */
.bysaa-checkout-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--bysaa-border);
}

.bysaa-checkout-actions .bysaa-btn-primary {
    flex: 1;
}

/* ─────────────────────────────────────────────
   CARRITO VACÍO
───────────────────────────────────────────── */
.bysaa-empty-cart {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.bysaa-empty-cart-card {
    background: var(--bysaa-card);
    border: 1px solid var(--bysaa-border);
    border-radius: var(--bysaa-radius-xl);
    padding: 48px 32px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--bysaa-shadow);
}

.bysaa-empty-cart-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bysaa-text);
    margin: 0 0 10px;
}

.bysaa-empty-cart-card p {
    font-size: 15px;
    color: var(--bysaa-muted);
    line-height: 1.65;
    margin: 0 0 24px;
}

/* ─────────────────────────────────────────────
   BARRA STICKY MOBILE — oculta en desktop
───────────────────────────────────────────── */
.bysaa-mobile-summary-bar {
    display: none;
}

/* ─────────────────────────────────────────────
   UTILIDADES
───────────────────────────────────────────── */
.bysaa-copy-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bysaa-copy-row .bysaa-btn {
    min-height: 44px;
    font-size: 14px;
}

/* ═══════════════════════════════════════════
   TABLET 1100px
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .bysaa-cart-grid {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 20px;
    }
}

/* ═══════════════════════════════════════════
   TABLET 860px — sidebar baja al stack
═══════════════════════════════════════════ */
@media (max-width: 860px) {
    .bysaa-checkout-page {
        padding: 18px 0 36px;
    }

    .bysaa-cart-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bysaa-cart-sidebar {
        position: static;
        top: auto;
    }

    .bysaa-customer-modes,
    .bysaa-mode-grid,
    .bysaa-customer-mode-grid,
    .bysaa-form-row {
        grid-template-columns: 1fr;
    }

    .bysaa-checkout-header h1 {
        font-size: 22px;
    }

    .bysaa-card {
        padding: 18px;
        margin-bottom: 14px;
    }

    .bysaa-cart-prices {
        grid-template-columns: 1fr 1fr;
    }
}

/* ═══════════════════════════════════════════
   MOBILE 768px — activa barra sticky inferior
═══════════════════════════════════════════ */
@media (max-width: 768px) {

    .bysaa-checkout-page {
        padding-bottom: 100px;
    }

    /* Ocultar sidebar — reemplazado por barra sticky */
    .bysaa-cart-sidebar {
        display: none;
    }

    /* Barra sticky inferior */
    .bysaa-mobile-summary-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 200;
        background: #fff;
        border-top: 1px solid var(--bysaa-border);
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
    }

    .bysaa-mobile-summary-bar .bysaa-mobile-total {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .bysaa-mobile-summary-bar .bysaa-mobile-total-label {
        font-size: 11px;
        color: var(--bysaa-muted);
        font-weight: 600;
    }

    .bysaa-mobile-summary-bar .bysaa-mobile-total-amount {
        font-size: 20px;
        font-weight: 800;
        color: var(--bysaa-primary);
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .bysaa-mobile-summary-bar .bysaa-btn {
        flex-shrink: 0;
        min-height: 48px;
        font-size: 14px;
        padding: 0 18px;
    }
}

/* ═══════════════════════════════════════════
   MOBILE 640px
═══════════════════════════════════════════ */
@media (max-width: 640px) {

    .bysaa-checkout-page .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .bysaa-checkout-header h1 {
        font-size: 20px;
    }

    .bysaa-checkout-header p {
        font-size: 14px;
    }

    .bysaa-card {
        padding: 16px;
        border-radius: var(--bysaa-radius-lg);
        margin-bottom: 12px;
    }

    .bysaa-card-head h2 {
        font-size: 16px;
    }

    /* Ítem: columna única en móvil pequeño */
    .bysaa-cart-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bysaa-cart-item-media {
        width: 100%;
        height: 160px;
        border-radius: var(--bysaa-radius-md);
    }

    .bysaa-cart-prices {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .bysaa-line-total {
        grid-column: span 2;
    }

    .bysaa-price-line strong {
        font-size: 15px;
    }

    .bysaa-state-box {
        padding: 14px;
    }

    .bysaa-state-box h3 {
        font-size: 14px;
    }

    .bysaa-mode-box,
    .bysaa-mode-card,
    .bysaa-customer-mode-card {
        padding: 16px;
    }

    .bysaa-mode-box h3,
    .bysaa-mode-box-head h3,
    .bysaa-mode-card h3,
    .bysaa-customer-mode-card h3 {
        font-size: 15px;
    }

    .bysaa-form-group input,
    .bysaa-form-group textarea,
    .bysaa-form-group select {
        /* 16px mínimo para evitar zoom automático en iOS */
        font-size: 16px;
        min-height: 48px;
    }

    .bysaa-btn {
        min-height: 48px;
        font-size: 15px;
    }

    .bysaa-checkout-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bysaa-checkout-actions .bysaa-btn {
        width: 100%;
        flex: none;
    }
}

/* ═══════════════════════════════════════════
   EXTRA SMALL 420px
═══════════════════════════════════════════ */
@media (max-width: 420px) {

    .bysaa-checkout-header h1 {
        font-size: 18px;
    }

    .bysaa-card-head h2 {
        font-size: 15px;
    }

    .bysaa-summary-line.total strong {
        font-size: 20px;
    }

    .bysaa-line-total strong {
        font-size: 16px;
    }

/* Sidebar de pago — nunca se oculta, el QR es crítico */
@media (max-width: 768px) {
    .bysaa-sidebar-payment {
        display: block !important;
        position: static;
    }

    .bysaa-sidebar-payment .bysaa-summary-card {
        display: block !important;
    }
}

}