﻿:root {
    --rv-primary: #061842;
    --rv-accent: #EC1C24;
    --rv-bg: #f5f6fa;
    --rv-card: #ffffff;
    --rv-text: #172033;
    --rv-muted: #6b7280;
    --rv-radius: 22px;
}

* {
    box-sizing: border-box
}


@font-face {
    font-family: 'catamaran';
    src: url('../webfonts/catamaran.ttf') format('truetype');
}


body {
    background: var(--rv-bg);
    color: var(--rv-text);
    font-family: 'catamaran',sans-serif;
    margin: 0
}

a {
    text-decoration: none
}

.rv-page {
    min-height: 100vh;
    background: var(--rv-bg)
}

/* =========================
   HEADER / MENU V2
   Estructura: logo izquierda + menu/carrito/salir derecha
========================= */

.rv-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7e9ef;
    box-shadow: 0 2px 12px rgba(15,23,42,.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.rv-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 18px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.rv-header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

    .rv-header-logo img {
        height: 48px;
        width: auto;
        display: block;
    }

.rv-header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
}

.rv-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #344054;
    text-decoration: none;
    font-family: 'catamaran', sans-serif;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 12px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    white-space: nowrap;
}

    .rv-nav-link:hover {
        background: #eef3ff;
        color: var(--rv-primary);
    }

    .rv-nav-link.active {
        background: #0b84d8;
        color: #fff;
    }

    .rv-nav-link i {
        font-size: 14px;
    }

.rv-cart-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    /*border: 1px solid #d8d8d8;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #111;
    text-decoration: none;
    transition: all .25s ease;
}

    .rv-cart-link i {
        font-size: 15px;
        color: #111;
        transition: all .25s ease;
    }

    /* Hover */
    .rv-cart-link:hover {
        background: #eef3ff;
        border-color: #d9d9d9;
        color: #111;
        transform: translateY(-1px);
    }

        .rv-cart-link:hover i {
            color: #111;
        }

    /* Active */
    .rv-cart-link.active,
    .rv-cart-link:active {
        background: #d9d9d9;
        border-color: #d9d9d9;
    }

/* contador */
.rv-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0b84d8;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    padding: 0 4px;
}

.rv-cart-link i {
    font-size: 18px;
}


.rv-separator {
    width: 1px;
    height: 30px;
    background: #d8dde8;
    margin: 0 4px;
}

.rv-logout-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #344054;
    text-decoration: none;
    font-family: 'catamaran', sans-serif;
    font-weight: 800;
    padding: 10px 8px;
    border-radius: 10px;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
}

    .rv-logout-link:hover {
        color: var(--rv-accent);
        background: #fff1f2;
    }

/* Compatibilidad temporal:
   Si tu Master todav�a trae clases viejas, no rompen el layout.
   Puedes eliminarlas cuando ya uses rv-header en el HTML. */
.rv-navbar,
.rv-navbar-inner,
.rv-brand,
.rv-nav-links,
.rv-nav-actions,
.rv-cart-btn {
    all: unset;
}

.rv-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 18px 60px
}

.rv-hero {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 18px;
    margin-bottom: 20px
}

.rv-hero-main, .rv-hero-side {
    border-radius: 28px;
    overflow: hidden;
    min-height: 230px;
    position: relative;
    background: linear-gradient(135deg,#061842,#0284c7);
    color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.rv-hero-side {
    background: linear-gradient(135deg,#EC1C24,#f08300)
}

.rv-hero h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1.05
}

.rv-hero p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.9);
    font-weight: 600
}

.rv-hero-badge {
    width: max-content;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.25);
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-weight: 800
}

.rv-toolbar {
    background: #fff;
    border-radius: var(--rv-radius);
    padding: 16px;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    box-shadow: 0 6px 24px rgba(15,23,42,.06)
}

.rv-search {
    display: flex;
    gap: 10px
}

    .rv-search input {
        height: 48px;
        border: 1px solid #dfe3ea;
        border-radius: 999px;
        padding: 0 18px;
        width: 100%;
        outline: none
    }

.rv-input {
    width: 100%;
    height: 52px;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    transition: all .2s ease;
    background: #fff;
}

    .rv-input:focus {
        border-color: #0f62fe;
        box-shadow: 0 0 0 4px rgba(15,98,254,.12);
    }

    .rv-input.input-error {
        border-color: #ff2d55;
        background: #fff7f8;
    }

    .rv-input.input-ok {
        border-color: #16a34a;
    }

.rv-error {
    min-height: 20px;
    margin: 6px 0 0px;
    color: #ff2d55;
    font-size: 13px;
    font-weight: 600;
}

.rv-login-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #061842, #0f62fe);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .rv-login-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(15,98,254,.25);
    }

.rv-btn {
    height: 48px;
    border: none;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 900;
    cursor: pointer
}

.rv-btn-primary {
    background: var(--rv-accent);
    color: #fff
}

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

.rv-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rv-muted);
    font-weight: 700
}

    .rv-filter input[type=checkbox] {
        width: 18px;
        height: 18px;
        accent-color: var(--rv-accent)
    }

.rv-range-panel {
    background: #fff;
    border-radius: var(--rv-radius);
    padding: 16px;
    margin-bottom: 18px;
    box-shadow: 0 6px 24px rgba(15,23,42,.06)
}

.rv-range-title {
    font-weight: 900;
    margin-bottom: 8px
}

.rv-range-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center
}

.rv-range-text {
    border: none;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 800;
    width: 100%
}

.slider-range {
    margin-top: 14px
}

.rv-categories {
    margin: 0 0 22px
}

.rv-categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 12px;
    margin: 0;
    list-style: none;
    scrollbar-width: none
}

    .rv-categories-scroll::-webkit-scrollbar {
        display: none
    }

.rv-cat {
    flex: 0 0 auto
}

    .rv-cat a {
        display: flex;
        align-items: center;
        gap: 9px;
        background: #fff;
        color: #30394b;
        border-radius: 999px;
        padding: 12px 18px;
        box-shadow: 0 5px 18px rgba(15,23,42,.07);
        font-weight: 900;
        white-space: nowrap
    }

    .rv-cat.active a {
        background: var(--rv-primary);
        color: #fff
    }

.rv-cat-icon {
    width: 24px;
    height: 24px;
    object-fit: contain
}

.rv-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 14px
}

    .rv-section-title h2 {
        font-size: 22px;
        margin: 0;
        font-weight: 950
    }

.rv-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none
}

.rv-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15,23,42,.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .2s ease
}

    .rv-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 34px rgba(15,23,42,.12)
    }

.rv-img-wrap {
    height: 220px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.rv-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.rv-info {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.rv-title {
    display: block;
    color: #111827;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    min-height: 40px;
    max-height: 40px;
    overflow: hidden
}

.rv-price {
    margin-top: 12px;
    color: var(--rv-accent);
    font-size: 20px;
    font-weight: 950
}

.rv-action {
    margin-top: auto;
    padding-top: 14px
}

.rv-btn-add {
    width: 100%;
    height: 44px;
    background: var(--rv-primary);
    color: #fff !important;
    border-radius: 14px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900
}

.rv-empty {
    grid-column: 1/-1;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    color: var(--rv-muted);
    font-weight: 800
}

.rv-login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 430px;
    background: #0b1220
}

.rv-login-art {
    background: radial-gradient(circle at 20% 20%,#0ea5e9,transparent 35%),linear-gradient(135deg,#061842,#0f172a);
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .rv-login-art h1 {
        font-size: 48px;
        line-height: 1.02;
        margin: 0
    }

    .rv-login-art p {
        font-size: 18px;
        color: rgba(255,255,255,.8);
        max-width: 520px
    }

.rv-login-card {
    background: #fff;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .rv-login-card h2 {
        font-size: 28px;
        margin: 0 0 8px
    }

    .rv-login-card label {
        font-weight: 800;
        margin-top: 16px
    }

    .rv-login-card input {
        height: 50px;
        border: 1px solid #dfe3ea;
        border-radius: 14px;
        padding: 0 14px;
        width: 100%;
        margin-top: 6px
    }

.rv-login-submit {
    margin-top: 22px;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 14px;
    background: var(--rv-accent);
    color: #fff;
    font-weight: 950
}

.rv-login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}


.rv-logo-img {
    width: clamp(120px, 18vw, 190px);
    height: auto;
    display: block;
    margin: 0 auto;
}


@media(max-width:1100px) {
    .rv-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .rv-hero {
        grid-template-columns: 1fr
    }

    .rv-hero-side {
        min-height: 150px
    }
}

@media(max-width:760px) {

    .rv-header-inner {
        min-height: 66px;
        padding: 8px 12px;
        gap: 10px;
    }

    .rv-header-logo img {
        height: 42px;
    }

    .rv-header-menu {
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }

        .rv-header-menu::-webkit-scrollbar {
            display: none;
        }

    .rv-nav-link {
        padding: 9px 10px;
        border-radius: 10px;
        font-size: 0;
    }

        .rv-nav-link i {
            font-size: 17px;
        }

    .rv-cart-link {
        width: 42px;
        height: 42px;
        margin-left: 4px;
        flex: 0 0 auto;
    }

        .rv-cart-link i {
            font-size: 16px;
        }

    .rv-cart-count {
        font-size: 11px;
        right: 7px;
        top: 6px;
    }

    .rv-separator,
    .rv-logout-link span {
        display: none;
    }

    .rv-logout-link {
        padding: 9px 8px;
    }

        .rv-logout-link i {
            font-size: 17px;
        }

    .rv-toolbar {
        grid-template-columns: 1fr
    }

    .rv-search {
        flex-direction: column
    }

    .rv-btn {
        width: 100%
    }

    .rv-range-row {
        grid-template-columns: 1fr
    }

    .rv-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 12px
    }

    .rv-img-wrap {
        height: 150px
    }

    .rv-info {
        padding: 0 12px 12px
    }

    .rv-title {
        font-size: 13px;
        min-height: 34px;
        max-height: 34px
    }

    .rv-price {
        font-size: 17px
    }

    .rv-hero-main, .rv-hero-side {
        border-radius: 20px;
        padding: 24px;
        min-height: 170px
    }

    .rv-hero h1 {
        font-size: 28px
    }

    .rv-login-page {
        grid-template-columns: 1fr;
    }

    .rv-login-art {
        display: none
    }

    .rv-login-card {
        min-height: auto !important;
        height: auto !important;
        padding: 22px !important;
        justify-content: flex-start !important;
    }

    .rv-login-logo {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .rv-login-title {
        margin-top: 0;
    }
}

.rv-mobile-toggle {
    display: none;
}

@media (max-width: 768px) {

    .rv-header-inner {
        position: relative;
    }

    .rv-header-menu {
        display: none;
        position: absolute;
        top: 58px;
        right: 12px;
        width: 245px;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 10px 28px rgba(0,0,0,.18);
        padding: 8px 0;
        z-index: 9999;
        flex-direction: column;
        align-items: stretch;
    }

        .rv-header-menu.show {
            display: flex;
        }

    .rv-mobile-toggle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #fff;
        border: none;
        color: #555;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .25s ease;
        border: 1px solid #d8d8d8;
    }

        .rv-mobile-toggle:hover {
            background: #d0d0d0;
        }

    .rv-header-menu a {
        width: 100%;
        height: auto;
        border-radius: 0;
        justify-content: flex-start;
        gap: 10px;
        padding: 12px 16px;
        background: transparent !important;
        box-shadow: none !important;
        color: #222 !important;
        text-decoration: none;
    }

        .rv-header-menu a:hover {
            background: #f6f7f9 !important;
            color: #005baa !important;
        }

        .rv-header-menu a span {
            display: inline-block;
            font-size: 14px;
            font-weight: 500;
        }

    .rv-cart-count {
        margin-left: auto;
    }

    .rv-separator {
        display: none;
    }
}

.rv-mobile-actions {
    display: none;
}

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

    .rv-mobile-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .rv-cart-desktop {
        display: none !important;
    }

    .rv-cart-mobile {
        display: flex !important;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        position: relative;
    }

        .rv-cart-mobile .rv-cart-count {
            position: absolute;
            top: -4px;
            right: -4px;
            min-width: 18px;
            height: 18px;
            border-radius: 50%;
            /*background: #ff2b2b;*/
            color: #fff;
            font-size: 11px;
            line-height: 18px;
            text-align: center;
            padding: 0;
        }
}

/* WEB */
@media (min-width:769px) {

    .rv-mobile-actions {
        display: none !important;
    }

    .rv-cart-mobile {
        display: none !important;
    }

    .rv-cart-desktop {
        display: flex !important;
    }
}

.rv-cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 9998;
}

    .rv-cart-overlay.show {
        display: block;
    }

.rv-mini-cart {
    display: none;
    position: fixed;
    top: 72px;
    right: 50px;
    width: 340px;
    max-width: calc(100% - 24px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    z-index: 9999;
    overflow: hidden;
    animation: rvCartIn .2s ease;
}

    .rv-mini-cart.show {
        display: block;
    }

@keyframes rvCartIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rv-mini-cart-header {
    padding: 16px 18px;
    background: #f7f8fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .rv-mini-cart-header h3 {
        margin: 0;
        font-size: 13px;
        font-weight: 800;
        color: #111;
    }

        .rv-mini-cart-header h3 span {
            color: #0b84d8;
        }

.rv-mini-cart-close {
    border: 0;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.rv-mini-cart-body {
    max-height: 330px;
    overflow-y: auto;
    padding: 4px 14px;
}

.rv-mini-cart-item {
    display: grid;
    grid-template-columns: 54px 1fr 28px;
    gap: 12px;
    align-items: start;
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
}

.rv-mini-cart-img {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #f3f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .rv-mini-cart-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.rv-mini-cart-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.rv-mini-cart-info {
    display: flex;
    flex-direction: column;
}

.rv-mini-cart-points {
    margin-top: 8px;
    font-size: 13px;
    color: #9a9a9a;
    font-weight: 700;
}

.rv-mini-cart-delete {
    align-self: end;
    margin-bottom: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rv-mini-cart-footer {
    padding: 18px;
}

.rv-mini-cart-total {
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.rv-mini-cart-finish {
    display: block;
    width: 100%;
    background: #000b2f;
    color: #fff !important;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.rv-mini-cart-continue {
    display: block;
    width: 100%;
    margin-top: 14px;
    background: transparent;
    color: #111;
    text-decoration: underline !important;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 768px) {
    .rv-mini-cart {
        top: 62px;
        right: 10px;
        width: calc(100% - 20px);
        border-radius: 16px;
    }
}
/* ================================
   VOUCHER STICKY BAR
================================ */

.rv-voucher-sticky {
    position: sticky;
    top: 68px; /* altura del header */
    z-index: 998;
    width: 100%;
    background: linear-gradient(90deg, #082b8f 0%, #009fda 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

.rv-voucher-inner {
    /*max-width: 1280px;*/
    max-width: 1350px;
    margin: 0 auto;
    min-height: 76px;
    display: grid;
    grid-template-columns: 140px 1fr 380px 190px;
    align-items: center;
    gap: 18px;
    padding: 10px 22px;
}

.rv-voucher-user,
.rv-voucher-info,
.rv-voucher-form {
    border-right: 1px solid rgba(255,255,255,.35);
    padding-right: 18px;
}

    .rv-voucher-user span,
    .rv-voucher-balance span {
        display: block;
        font-size: 12px;
        opacity: .95;
    }

    .rv-voucher-user strong {
        display: block;
        font-size: 14px;
        font-weight: 700;
    }

.rv-voucher-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .rv-voucher-info i {
        font-size: 26px;
    }

    .rv-voucher-info strong {
        display: block;
        font-size: 15px;
        font-weight: 800;
    }

    .rv-voucher-info span {
        display: block;
        font-size: 12px;
        line-height: 1.25;
        opacity: .95;
    }

.rv-voucher-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rv-voucher-input {
    width: 190px;
    height: 40px;
    border: 0;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.rv-voucher-btn {
    height: 40px;
    min-width: 130px;
    border-radius: 6px;
    background: #ffb23e;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: .2s ease;
}

    .rv-voucher-btn:hover {
        background: #ffa51c;
        color: #fff !important;
    }

.rv-voucher-balance strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

/* TABLET */
@media (max-width: 992px) {
    .rv-voucher-inner {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px 14px;
    }

    .rv-voucher-user,
    .rv-voucher-info,
    .rv-voucher-form {
        border-right: 0;
        padding-right: 0;
    }

    .rv-voucher-form {
        justify-content: flex-start;
    }

    .rv-voucher-balance {
        text-align: right;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .rv-voucher-sticky {
        top: 58px;
    }

    .rv-voucher-inner {
        min-height: auto;
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding: 14px 10px;
    }

    .rv-voucher-user {
        display: none;
    }

    .rv-voucher-info {
        gap: 8px;
    }

        .rv-voucher-info i {
            font-size: 18px;
        }

        .rv-voucher-info strong {
            font-size: 13px;
        }

        .rv-voucher-info span {
            display: none;
        }

    .rv-voucher-form {
        grid-column: 1 / 3;
        width: 100%;
        gap: 8px;
    }

    .rv-voucher-input {
        flex: 1;
        width: 100%;
        height: 36px;
        font-size: 13px;
    }

    .rv-voucher-btn {
        height: 36px;
        min-width: 105px;
        font-size: 12px;
    }

    .rv-voucher-balance {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
        white-space: nowrap;
        height: 100%;
    }

        .rv-voucher-balance span {
            font-size: 13px;
            font-weight: 600;
            line-height: 1;
        }

        .rv-voucher-balance strong {
            font-size: 13px;
            font-weight: 800;
            line-height: 1;
        }
}
/*-Carrusel-*/
.rv-home-catalog {
    width: 100%;
    background: #f5f6f8;
    padding-bottom: 35px;
}

.rv-promo-carousel {
    width: 100%;
    background: #fff;
    overflow: hidden;
}

    .rv-promo-carousel .carousel-inner img {
        width: 100%;
        height: 310px;
        object-fit: cover;
    }

    .rv-promo-carousel .carousel-control {
        background: none;
        width: 44px;
        opacity: 1;
    }

        .rv-promo-carousel .carousel-control span {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,.9);
            color: #111;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.rv-section-title {
    max-width: 1240px;
    margin: 24px auto 12px;
    padding: 0 18px;
}

    .rv-section-title h2 {
        margin: 0;
        font-size: 28px;
        font-weight: 900;
        color: #061842;
    }

.rv-categories-carousel {
    max-width: 1240px;
    margin: 0 auto 22px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    align-items: center;
    gap: 10px;
}

.rv-cat-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 2px 14px;
}

    .rv-cat-track::-webkit-scrollbar {
        height: 6px;
    }

    .rv-cat-track::-webkit-scrollbar-thumb {
        background: #cfd5dd;
        border-radius: 10px;
    }

.rv-cat-card {
    min-width: 145px;
    height: 112px;
    background: #fff;
    border: 1px solid #e7e9ef;
    border-radius: 18px;
    text-decoration: none !important;
    color: #1d2433;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(0,0,0,.06);
    transition: all .2s ease;
}

    .rv-cat-card:hover,
    .rv-cat-card.active {
        background: #0E75BF;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0,120,215,.25);
    }

.rv-cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #f2f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .rv-cat-icon img {
        max-width: 32px;
        max-height: 32px;
        object-fit: contain;
    }

.rv-cat-name {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1.15;
}

.rv-cat-arrow {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111;
    box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

.rv-products-area {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 18px;
}

.rv-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 992px) {
    .rv-promo-carousel .carousel-inner img {
        height: 240px;
    }

    .rv-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rv-promo-carousel .carousel-inner img {
        height: 175px;
    }

    .rv-section-title {
        margin-top: 16px;
    }

        .rv-section-title h2 {
            font-size: 21px;
        }

    .rv-categories-carousel {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .rv-cat-arrow {
        display: none;
    }

    .rv-cat-card {
        min-width: 112px;
        height: 92px;
        border-radius: 15px;
    }

    .rv-cat-icon {
        width: 38px;
        height: 38px;
    }

    .rv-cat-name {
        font-size: 11px;
    }

    .rv-products-area {
        padding: 0 10px;
    }

    .rv-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
/* FIX CATEGOR�AS + PRODUCTOS NUEVO LOOK */

.rv-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

    .rv-products-grid li {
        list-style: none !important;
    }

.rv-product-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
    border: 1px solid #edf0f5;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    transition: all .22s ease;
}

    .rv-product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(15,23,42,.14);
    }

.rv-product-img {
    height: 215px;
    padding: 18px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .rv-product-img img {
        max-width: 100%;
        max-height: 180px;
        object-fit: contain;
    }

.rv-product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rv-product-title {
    color: #071a44 !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    min-height: 58px;
    max-height: 58px;
    overflow: hidden;
    text-decoration: none !important;
}

.rv-product-points {
    margin-top: 12px;
    font-size: 22px;
    font-weight: 900;
    color: #0b84d8;
}

    .rv-product-points span {
        font-size: 13px;
        font-weight: 700;
        color: #6b7280;
    }

.rv-product-btn {
    margin-top: auto;
    height: 44px;
    border-radius: 14px;
    background: #061842;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
}

    .rv-product-btn:hover {
        background: #0b84d8;
        color: #fff !important;
    }

/* CARRUSEL CATEGOR�AS */
.rv-cat-track {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.rv-cat-card {
    flex: 0 0 145px;
}

.rv-cat-arrow {
    cursor: pointer;
    z-index: 2;
}

@media (max-width: 992px) {
    .rv-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .rv-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .rv-product-card {
        border-radius: 18px;
        min-height: 315px;
    }

    .rv-product-img {
        height: 145px;
        padding: 12px;
    }

        .rv-product-img img {
            max-height: 120px;
        }

    .rv-product-info {
        padding: 12px;
    }

    .rv-product-title {
        font-size: 13px;
        min-height: 48px;
        max-height: 48px;
    }

    .rv-product-points {
        font-size: 18px;
    }

    .rv-product-btn {
        height: 38px;
        border-radius: 12px;
        font-size: 12px;
    }

    .rv-cat-card {
        flex: 0 0 118px;
    }
}
/* PROMO CAROUSEL SIN BOOTSTRAP */

.rv-promo-carousel {
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.rv-promo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1920 / 500;
    background: #fff;
}

.rv-promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.rv-promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease;
}

    .rv-promo-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }

    .rv-promo-slide img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.rv-promo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #071a44;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,.16);
}

.rv-promo-prev {
    left: 16px;
}

.rv-promo-next {
    right: 16px;
}

.rv-promo-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 7px;
}

    .rv-promo-dots button {
        width: 9px;
        height: 9px;
        border: 0;
        border-radius: 50%;
        background: rgba(255,255,255,.65);
        cursor: pointer;
    }

        .rv-promo-dots button.active {
            width: 24px;
            border-radius: 999px;
            background: #fff;
        }

@media (max-width: 992px) {
    .rv-promo-slider {
    }
}

@media (max-width: 768px) {
    .rv-promo-slider {
    }

    .rv-promo-arrow {
        width: 34px;
        height: 34px;
    }

    .rv-promo-prev {
        left: 8px;
    }

    .rv-promo-next {
        right: 8px;
    }
}

#ANCLA_PRODUCTOS {
    display: block;
    position: relative;
    top: -220px;
    visibility: hidden;
}

@media (max-width:768px) {
    #ANCLA_PRODUCTOS {
        scroll-margin-top: 135px;
    }
}

.btn-addtocart.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.tamanio {
    width: 230px
}

.selector-talla {
    margin-top: 18px;
}

    .selector-talla label {
        font-weight: 600;
        margin-bottom: 8px;
        display: block;
    }

.tallas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-talla {
    min-width: 45px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 2px solid #dcdcdc;
    background: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

    .btn-talla:hover {
        border-color: #0E75BF;
        color: #0E75BF;
    }

    .btn-talla.active {
        background: #0E75BF;
        color: #ffffff;
        border-color: #8DBE22;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    }

    .btn-talla:active {
        transform: scale(0.95);
    }

.mensaje-error {
    color: #d9534f;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.input-error {
    border: 2px solid #d9534f !important;
}

.talla-error {
    border-color: #d9534f !important;
}

/* ===============================
   POPUP
=================================*/
.swal2-popup.mi-alerta {
    width: 450px !important;
    border-radius: 15px !important;
    padding: 25px !important;
}

.texto-alerta {
    font-size: 16px !important;
    font-weight: 500;
    color: #333;
    display: block;
    margin-top: 10px;
}

/* ===============================
   ICONO
=================================*/
.icono-premio {
    font-size: 65px !important;
    color: #8DBE22 !important;
    margin-bottom: 15px !important;
}

/* ===============================
   CONTENEDOR BOTONES
=================================*/
.swal2-actions {
    gap: 20px !important; /* separaci�n horizontal */
    margin-top: 20px !important;
}

/* ===============================
   BOT�N CONFIRMAR
=================================*/
.swal2-confirm.btn-confirmar {
    background: #061842 !important;
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 5px !important;
    border: none !important;
    font-weight: 600 !important;
    min-width: 160px;
    font-size: 12px;
}

    .swal2-confirm.btn-confirmar:hover {
        background: #061842 !important;
    }

/* ===============================
   BOT�N CANCELAR
=================================*/
.swal2-cancel.btn-cancelar {
    background: #6c757d !important;
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 5px !important;
    border: none !important;
    font-weight: 600 !important;
    min-width: 160px;
    font-size: 14px;
}

    .swal2-cancel.btn-cancelar:hover {
        background: #5a6268 !important;
    }

/* ===============================
   RESPONSIVE (M�VIL)
=================================*/
@media (max-width: 576px) {

    .swal2-popup.mi-alerta {
        width: 90% !important;
        padding: 20px !important;
    }

    .swal2-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

        .swal2-actions button {
            width: 100% !important;
        }
}
/* ===============================
   POPUP VH
=================================*/
.swal2-popup.vh-alerta {
    width: 450px !important;
    border-radius: 15px !important;
    padding: 25px !important;
}

/* ===============================
   ICONO VH
=================================*/
.vh-icono-premio {
    font-size: 65px !important;
    color: #e53935 !important; /* rojo error */
    margin-bottom: 15px !important;
}

/* ===============================
   TEXTO VH
=================================*/
.vh-texto-alerta {
    font-size: 18px !important;
    font-weight: 500;
    color: #333;
    display: block;
    margin-top: 10px;
}

/* ===============================
   BOT�N VH
=================================*/
.swal2-confirm.vh-btn-confirmar {
    background: #8DBE22 !important;
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 5px !important;
    border: none !important;
    font-weight: 600 !important;
    min-width: 160px;
    font-size: 12px;
}

    .swal2-confirm.vh-btn-confirmar:hover {
        background: #8DBE22 !important;
    }

@media (max-width: 768px) {
    .tamanio {
        width: 100%;
    }
}

.rv-swal-popup {
    width: 430px !important;
    border-radius: 18px !important;
    padding: 28px !important;
}

.rv-swal-icon {
    font-size: 62px !important;
    margin-bottom: 14px !important;
}

.rv-swal-text {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #172033;
    line-height: 1.4;
}

.rv-swal-confirm {
    min-width: 150px;
    height: 42px;
    border: 0 !important;
    border-radius: 12px !important;
    background: #061842 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

    .rv-swal-confirm:hover {
        background: #0b84d8 !important;
    }

@media (max-width: 576px) {
    .rv-swal-popup {
        width: 92% !important;
        padding: 22px !important;
    }

    .rv-swal-confirm {
        width: 100%;
    }
}

.rv-mini-cart-delete {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #111 !important;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .rv-mini-cart-delete:hover {
        color: #ec1c24 !important;
    }
/* ===============================
   DETALLE PRODUCTO NUEVO LOOK
================================ */

.rv-detail-page {
    width: 100%;
    background: #f5f6f8;
    padding: 34px 16px 60px;
}

.rv-detail-container {
    max-width: 1180px;
    margin: 0 auto;
}

.rv-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #061842 !important;
    font-weight: 800;
    text-decoration: none !important;
}

    .rv-detail-back:hover {
        color: #0b84d8 !important;
    }

.rv-detail-card {
    display: grid;
    grid-template-columns: minmax(320px, 470px) 1fr;
    gap: 34px;
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 28px;
    box-shadow: 0 12px 34px rgba(15,23,42,.09);
    padding: 30px;
}

.rv-detail-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rv-detail-image-box {
    width: 100%;
    min-height: 430px;
    background: #f8fafc;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

    .rv-detail-image-box img {
        max-width: 100%;
        max-height: 370px;
        object-fit: contain;
        display: block;
    }

.rv-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rv-detail-label {
    width: max-content;
    background: #eef3ff;
    color: #0b84d8;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.rv-detail-title {
    margin: 0;
    color: #061842;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;
}

.rv-detail-price {
    margin-top: 18px;
    color: #0b84d8;
    font-size: 34px;
    font-weight: 900;
}

    .rv-detail-price span {
        color: #6b7280;
        font-size: 15px;
        font-weight: 800;
    }

.rv-detail-option {
    margin-top: 22px;
}

    .rv-detail-option label {
        display: block;
        margin-bottom: 8px;
        color: #172033;
        font-size: 14px;
        font-weight: 900;
    }

.rv-detail-input {
    width: 230px;
    height: 44px;
    border: 1.5px solid #dfe3ea;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
}

    .rv-detail-input:focus {
        border-color: #0b84d8;
        box-shadow: 0 0 0 4px rgba(11,132,216,.12);
    }

.rv-detail-actions {
    margin-top: 24px;
}

.rv-detail-btn {
    width: 230px;
    height: 48px;
    border-radius: 15px;
    background: #061842;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none !important;
    transition: all .22s ease;
}

    .rv-detail-btn:hover {
        background: #0b84d8;
        color: #fff !important;
        transform: translateY(-2px);
    }

.rv-detail-description {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #edf0f5;
}

    .rv-detail-description h3 {
        margin: 0 0 8px;
        color: #061842;
        font-size: 17px;
        font-weight: 900;
    }

    .rv-detail-description p {
        margin: 0;
        color: #566070;
        font-size: 14px;
        line-height: 1.6;
    }

@media (max-width: 900px) {
    .rv-detail-card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 22px;
    }

    .rv-detail-image-box {
        min-height: 300px;
    }

        .rv-detail-image-box img {
            max-height: 260px;
        }

    .rv-detail-title {
        font-size: 26px;
    }

    .rv-detail-price {
        font-size: 28px;
    }

    .rv-detail-btn,
    .rv-detail-input,
    .tamanio {
        width: 100%;
    }
}
/* ===============================
   CERRAR CANJE - NUEVO LOOK
================================ */
.rv-checkout-page {
    background: #f5f6f8;
    min-height: 100vh;
    padding: 28px 14px 60px;
}

.rv-checkout-container {
    max-width: 1180px;
    margin: 0 auto;
}

.rv-checkout-hero {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15,23,42,.07);
    margin-bottom: 20px;
}

    .rv-checkout-hero img {
        width: 100%;
        height: auto;
        display: block;
    }

.rv-checkout-header {
    margin-bottom: 18px;
}

.rv-checkout-step {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: #eef3ff;
    color: #0b84d8;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rv-checkout-header h1 {
    margin: 0;
    color: #061842;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
}

.rv-checkout-header p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 14px;
}

.rv-checkout-card,
.rv-address-card,
.rv-summary-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(15,23,42,.08);
}

.rv-checkout-card {
    overflow: hidden;
}

.rv-checkout-table-head {
    display: grid;
    grid-template-columns: 1fr 120px 90px;
    gap: 14px;
    padding: 16px 20px;
    background: #061842;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.rv-checkout-product-row {
    display: grid;
    grid-template-columns: 1fr 120px 90px;
    gap: 14px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #edf0f5;
}

.rv-checkout-product-main {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.rv-checkout-product-img {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .rv-checkout-product-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.rv-checkout-product-name {
    color: #061842;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 900;
}

.rv-checkout-product-attr {
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
}

.rv-checkout-points {
    color: #0b84d8;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.rv-checkout-delete-wrap {
    display: flex;
    justify-content: center;
}

.rv-checkout-delete {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff1f2;
    color: #ec1c24 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all .2s ease;
}

    .rv-checkout-delete:hover {
        background: #ec1c24;
        color: #fff !important;
    }

.rv-checkout-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.rv-checkout-total {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

    .rv-checkout-total span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

        .rv-checkout-total strong,
        .rv-checkout-total span[id*="lblTotal"] {
            display: inline;
            white-space: nowrap;
        }


.rv-checkout-actions {
    display: flex;
    gap: 12px;
}

.rv-btn-main,
.rv-btn-outline,
.rv-btn-soft,
.rv-btn-mini {
    border: 0;
    cursor: pointer;
    font-weight: 900;
    transition: all .2s ease;
    text-decoration: none !important;
}

.rv-btn-main {
    min-height: 46px;
    border-radius: 14px;
    padding: 0 22px;
    background: #061842;
    color: #fff !important;
}

    .rv-btn-main:hover {
        background: #0b84d8;
        transform: translateY(-1px);
    }

.rv-btn-outline {
    min-height: 46px;
    border-radius: 14px;
    padding: 0 22px;
    background: #fff;
    color: #061842 !important;
    border: 1px solid #dfe3ea;
}

    .rv-btn-outline:hover {
        background: #eef3ff;
    }

.rv-btn-soft {
    min-height: 44px;
    border-radius: 14px;
    padding: 0 16px;
    background: #eef3ff;
    color: #0b84d8 !important;
}

.rv-btn-mini {
    height: 44px;
    min-width: 86px;
    border-radius: 12px;
    background: #0b84d8;
    color: #fff !important;
}

.rv-btn-full {
    width: 100%;
    margin-top: 16px;
}

.rv-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 22px;
    align-items: start;
}

.rv-address-card {
    padding: 22px;
}

.rv-address-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 18px;
}

.rv-address-actions-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
}

.rv-btn-main:disabled,
.rv-btn-outline:disabled,
.rv-btn-soft:disabled,
.rv-btn-mini:disabled,
.rv-btn-main[disabled],
.rv-btn-outline[disabled],
.rv-btn-soft[disabled],
.rv-btn-mini[disabled],
.rv-btn-main.aspNetDisabled,
.rv-btn-outline.aspNetDisabled,
.rv-btn-soft.aspNetDisabled,
.rv-btn-mini.aspNetDisabled {
    background: #e5e7eb !important;
    border-color: #d1d5db !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    box-shadow: none !important;
    transform: none !important;
    pointer-events: none;
}

.rv-address-block {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #edf0f5;
}

    .rv-address-block h2 {
        margin: 0 0 14px;
        color: #061842;
        font-size: 18px;
        font-weight: 900;
    }

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

.rv-field {
    min-width: 0;
}

    .rv-field label {
        display: block;
        margin-bottom: 6px;
        color: #344054;
        font-size: 13px;
        font-weight: 900;
    }

.rv-field-full,
.rv-field-wide {
    grid-column: 1 / -1;
}

.rv-input-control {
    width: 100%;
    height: 44px;
    border: 1.5px solid #dfe3ea;
    border-radius: 13px;
    padding: 0 13px;
    color: #172033;
    background: #fff;
    font-size: 14px;
    outline: none;
}

    .rv-input-control:focus {
        border-color: #0b84d8;
        box-shadow: 0 0 0 4px rgba(11,132,216,.12);
    }

    .rv-input-control[readonly],
    .rv-input-control:disabled,
    .rv-input-control[disabled] {
        background: #f8fafc;
        color: #6b7280;
    }

.rv-cp-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.rv-cp-message,
.mensaje-cp {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 800;
}

.cp-valido {
    color: #16a34a;
}

.cp-invalido {
    color: #dc3545;
}

.rv-address-actions-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #edf0f5;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.rv-hidden-field {
    display: none;
}

.rv-summary-card {
    padding: 20px;
    position: sticky;
    top: 170px;
}

.rv-summary-title span {
    display: block;
    color: #0b84d8;
    font-size: 12px;
    font-weight: 900;
}

.rv-summary-title strong {
    display: block;
    color: #061842;
    font-size: 22px;
    font-weight: 900;
}

.rv-summary-list {
    margin-top: 16px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

    .rv-summary-list::-webkit-scrollbar {
        display: none;
    }

.rv-summary-list {
    scrollbar-width: none;
}

.rv-summary-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f5;
}

.rv-summary-img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .rv-summary-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.rv-summary-name {
    color: #061842;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.rv-summary-attr {
    margin-top: 3px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.rv-summary-points {
    margin-top: 5px;
    color: #0b84d8;
    font-size: 13px;
    font-weight: 900;
}

.rv-summary-total {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .rv-summary-total span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .rv-summary-total strong {
        white-space: nowrap;
    }

.rv-summary-back {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: #111 !important;
    text-decoration: underline !important;
    font-size: 13px;
    font-weight: 800;
}

.input-error {
    border: 2px solid #dc3545 !important;
    transition: all .2s ease-in-out;
}

.error-msg {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
    animation: rvFadeIn .2s ease-in-out;
}

.rv-text-center {
    text-align: center;
}

@keyframes rvFadeIn {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .rv-checkout-layout {
        grid-template-columns: 1fr;
    }

    .rv-summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .rv-checkout-page {
        padding: 18px 10px 44px;
    }

    .rv-checkout-header h1 {
        font-size: 24px;
    }

    .rv-checkout-table-head {
        display: none;
    }

    .rv-checkout-product-row {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 14px;
    }

    .rv-checkout-product-main {
        grid-column: 1 / 3;
        grid-template-columns: 62px 1fr;
    }

    .rv-checkout-product-img {
        width: 62px;
        height: 62px;
    }

    .rv-checkout-points {
        text-align: left;
        font-size: 16px;
        padding-left: 76px;
    }

    .rv-checkout-delete-wrap {
        justify-content: flex-end;
    }

    .rv-checkout-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .rv-checkout-actions {
        flex-direction: column;
    }

    .rv-btn-main,
    .rv-btn-outline,
    .rv-btn-soft {
        width: 100%;
    }

    .rv-address-card,
    .rv-summary-card {
        border-radius: 18px;
        padding: 16px;
    }

    .rv-address-top {
        grid-template-columns: 1fr;
    }

    .rv-address-actions-top {
        width: 100%;
        justify-content: stretch;
    }

        .rv-address-actions-top .rv-btn-soft,
        .rv-address-actions-top .rv-btn-outline {
            flex: 1;
            min-width: 0;
        }

    .rv-form-grid {
        grid-template-columns: 1fr;
    }

    .rv-address-actions-bottom {
        flex-direction: column;
    }
}
/* ===============================
   CERRAR CANJE - NUEVO LOOK
================================ */
.rv-checkout-page {
    background: #f5f6f8;
    min-height: 100vh;
    padding: 28px 14px 60px;
}

.rv-checkout-container {
    max-width: 1180px;
    margin: 0 auto;
}

.rv-checkout-hero {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15,23,42,.07);
    margin-bottom: 20px;
}

    .rv-checkout-hero img {
        width: 100%;
        height: auto;
        display: block;
    }

.rv-checkout-header {
    margin-bottom: 18px;
}

.rv-checkout-step {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: #eef3ff;
    color: #0b84d8;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rv-checkout-header h1 {
    margin: 0;
    color: #061842;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
}

.rv-checkout-header p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 14px;
}

.rv-checkout-card,
.rv-address-card,
.rv-summary-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(15,23,42,.08);
}

.rv-checkout-card {
    overflow: hidden;
}

.rv-checkout-table-head {
    display: grid;
    grid-template-columns: 1fr 120px 90px;
    gap: 14px;
    padding: 16px 20px;
    background: #061842;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.rv-checkout-product-row {
    display: grid;
    grid-template-columns: 1fr 120px 90px;
    gap: 14px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #edf0f5;
}

.rv-checkout-product-main {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.rv-checkout-product-img {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .rv-checkout-product-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.rv-checkout-product-name {
    color: #061842;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 900;
}

.rv-checkout-product-attr {
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
}

.rv-checkout-points {
    color: #0b84d8;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.rv-checkout-delete-wrap {
    display: flex;
    justify-content: center;
}

.rv-checkout-delete {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff1f2;
    color: #ec1c24 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all .2s ease;
}

    .rv-checkout-delete:hover {
        background: #ec1c24;
        color: #fff !important;
    }

.rv-checkout-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.rv-checkout-actions {
    display: flex;
    gap: 12px;
}

.rv-btn-main,
.rv-btn-outline,
.rv-btn-soft,
.rv-btn-mini {
    border: 0;
    cursor: pointer;
    font-weight: 900;
    transition: all .2s ease;
    text-decoration: none !important;
}

.rv-btn-main {
    min-height: 46px;
    border-radius: 14px;
    padding: 0 22px;
    background: #061842;
    color: #fff !important;
}

    .rv-btn-main:hover {
        background: #0b84d8;
        transform: translateY(-1px);
    }

.rv-btn-outline {
    min-height: 46px;
    border-radius: 14px;
    padding: 0 22px;
    background: #fff;
    color: #061842 !important;
    border: 1px solid #dfe3ea;
}

    .rv-btn-outline:hover {
        background: #eef3ff;
    }

.rv-btn-soft {
    min-height: 44px;
    border-radius: 14px;
    padding: 0 16px;
    background: #eef3ff;
    color: #0b84d8 !important;
}

.rv-btn-mini {
    height: 44px;
    min-width: 86px;
    border-radius: 12px;
    background: #0b84d8;
    color: #fff !important;
}

.rv-btn-full {
    width: 100%;
    margin-top: 16px;
}

.rv-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 22px;
    align-items: start;
}

.rv-address-card {
    padding: 22px;
}

.rv-address-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 18px;
}

.rv-address-actions-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
}

.rv-btn-main:disabled,
.rv-btn-outline:disabled,
.rv-btn-soft:disabled,
.rv-btn-mini:disabled,
.rv-btn-main[disabled],
.rv-btn-outline[disabled],
.rv-btn-soft[disabled],
.rv-btn-mini[disabled],
.rv-btn-main.aspNetDisabled,
.rv-btn-outline.aspNetDisabled,
.rv-btn-soft.aspNetDisabled,
.rv-btn-mini.aspNetDisabled {
    background: #e5e7eb !important;
    border-color: #d1d5db !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    box-shadow: none !important;
    transform: none !important;
    pointer-events: none;
}

.rv-address-block {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #edf0f5;
}

    .rv-address-block h2 {
        margin: 0 0 14px;
        color: #061842;
        font-size: 18px;
        font-weight: 900;
    }

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

.rv-field {
    min-width: 0;
}

    .rv-field label {
        display: block;
        margin-bottom: 6px;
        color: #344054;
        font-size: 13px;
        font-weight: 900;
    }

.rv-field-full,
.rv-field-wide {
    grid-column: 1 / -1;
}

.rv-input-control {
    width: 100%;
    height: 44px;
    border: 1.5px solid #dfe3ea;
    border-radius: 13px;
    padding: 0 13px;
    color: #172033;
    background: #fff;
    font-size: 14px;
    outline: none;
}

    .rv-input-control:focus {
        border-color: #0b84d8;
        box-shadow: 0 0 0 4px rgba(11,132,216,.12);
    }

    .rv-input-control[readonly],
    .rv-input-control:disabled,
    .rv-input-control[disabled] {
        background: #f8fafc;
        color: #6b7280;
    }

.rv-cp-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.rv-cp-message,
.mensaje-cp {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 800;
}

.cp-valido {
    color: #16a34a;
}

.cp-invalido {
    color: #dc3545;
}

.rv-address-actions-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #edf0f5;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.rv-hidden-field {
    display: none;
}

.rv-summary-card {
    padding: 20px;
    position: sticky;
    top: 170px;
}

.rv-summary-title span {
    display: block;
    color: #0b84d8;
    font-size: 12px;
    font-weight: 900;
}

.rv-summary-title strong {
    display: block;
    color: #061842;
    font-size: 22px;
    font-weight: 900;
}

.rv-summary-list {
    margin-top: 16px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 4px;
}

.rv-summary-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f5;
}

.rv-summary-img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .rv-summary-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.rv-summary-name {
    color: #061842;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.rv-summary-attr {
    margin-top: 3px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.rv-summary-points {
    margin-top: 5px;
    color: #0b84d8;
    font-size: 13px;
    font-weight: 900;
}

.rv-summary-back {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: #111 !important;
    text-decoration: underline !important;
    font-size: 13px;
    font-weight: 800;
}

.input-error {
    border: 2px solid #dc3545 !important;
    transition: all .2s ease-in-out;
}

.error-msg {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
    animation: rvFadeIn .2s ease-in-out;
}

.rv-text-center {
    text-align: center;
}

@keyframes rvFadeIn {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .rv-checkout-layout {
        grid-template-columns: 1fr;
    }

    .rv-summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .rv-checkout-page {
        padding: 18px 10px 44px;
    }

    .rv-checkout-header h1 {
        font-size: 24px;
    }

    .rv-checkout-table-head {
        display: none;
    }

    .rv-checkout-product-row {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 14px;
    }

    .rv-checkout-product-main {
        grid-column: 1 / 3;
        grid-template-columns: 62px 1fr;
    }

    .rv-checkout-product-img {
        width: 62px;
        height: 62px;
    }

    .rv-checkout-points {
        text-align: left;
        font-size: 16px;
        padding-left: 76px;
    }

    .rv-checkout-delete-wrap {
        justify-content: flex-end;
    }

    .rv-checkout-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .rv-checkout-actions {
        flex-direction: column;
    }

    .rv-btn-main,
    .rv-btn-outline,
    .rv-btn-soft {
        width: 100%;
    }

    .rv-address-card,
    .rv-summary-card {
        border-radius: 18px;
        padding: 16px;
    }

    .rv-address-top {
        grid-template-columns: 1fr;
    }

    .rv-form-grid {
        grid-template-columns: 1fr;
    }

    .rv-address-actions-bottom {
        flex-direction: column;
    }
}
/* ===============================
   MIS CANJES NUEVO LOOK
================================ */
.rv-exchanges-page {
    width: 100%;
    min-height: 100vh;
    background: #f5f6f8;
    padding: 34px 16px 60px;
}

.rv-exchanges-hero,
.rv-exchanges-list {
    max-width: 1180px;
    margin: 0 auto;
}

.rv-exchanges-hero {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 22px;
}

.rv-exchanges-hero-info,
.rv-exchanges-help {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 26px;
    box-shadow: 0 10px 28px rgba(15,23,42,.08);
}

.rv-exchanges-hero-info {
    padding: 28px;
}

.rv-exchanges-badge {
    display: inline-flex;
    width: max-content;
    background: #eef3ff;
    color: #0b84d8;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.rv-exchanges-hero h1 {
    margin: 0;
    color: #061842;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.rv-exchanges-hero p {
    margin: 12px 0 0;
    color: #566070;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.rv-exchanges-help {
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .rv-exchanges-help > i {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        background: #eef3ff;
        color: #0b84d8;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex: 0 0 auto;
    }

    .rv-exchanges-help strong {
        display: block;
        color: #061842;
        font-size: 15px;
        font-weight: 900;
    }

    .rv-exchanges-help span {
        display: block;
        color: #566070;
        font-size: 13px;
        line-height: 1.35;
        margin: 4px 0 10px;
    }

    .rv-exchanges-help a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #fff !important;
        background: #16a34a;
        border-radius: 999px;
        padding: 9px 13px;
        font-size: 13px;
        font-weight: 900;
        text-decoration: none !important;
    }

.rv-exchanges-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rv-exchange-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
}

.rv-exchange-top {
    min-height: 58px;
    background: #061842;
    color: #fff;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.rv-exchange-small {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.rv-exchange-top strong {
    font-size: 14px;
    font-weight: 900;
}

.rv-status,
.estatus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

    .estatus.success {
        color: #166534;
        background: #dcfce7;
    }

    .estatus.warning {
        color: #92400e;
        background: #fef3c7;
    }

    .estatus.danger {
        color: #991b1b;
        background: #fee2e2;
    }

    .estatus.neutral {
        color: #344054;
        background: #eef2f7;
    }

.rv-exchange-body {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px;
}

.rv-exchange-img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

    .rv-exchange-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.rv-exchange-info h2 {
    margin: 0;
    color: #061842;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 900;
}

.rv-exchange-attr {
    margin: 5px 0 16px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
}

.rv-exchange-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.rv-exchange-data {
    background: #f8fafc;
    border: 1px solid #edf0f5;
    border-radius: 16px;
    padding: 12px;
    min-height: 70px;
}

    .rv-exchange-data span,
    .rv-digital-code span {
        display: block;
        color: #6b7280;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .rv-exchange-data strong,
    .rv-digital-code strong {
        display: block;
        color: #061842;
        font-size: 14px;
        font-weight: 900;
        overflow-wrap: anywhere;
    }

.rv-digital-code {
    margin-top: 12px;
    background: #eef3ff;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.rv-copy-btn {
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: #061842;
    color: #fff;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

    .rv-copy-btn:hover {
        background: #0b84d8;
    }

    .rv-copy-btn:disabled {
        opacity: .75;
        cursor: default;
    }

.rv-exchanges-empty {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 24px;
    padding: 42px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
}

    .rv-exchanges-empty i {
        font-size: 42px;
        color: #0b84d8;
        margin-bottom: 12px;
    }

    .rv-exchanges-empty h3 {
        margin: 0;
        color: #061842;
        font-size: 22px;
        font-weight: 900;
    }

    .rv-exchanges-empty p {
        color: #6b7280;
        font-weight: 700;
    }

.rv-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 20px;
    border-radius: 13px;
    background: #061842;
    color: #fff !important;
    font-weight: 900;
    text-decoration: none !important;
}

@media (max-width: 960px) {
    .rv-exchanges-hero {
        grid-template-columns: 1fr;
    }

    .rv-exchange-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .rv-exchanges-page {
        padding: 22px 10px 46px;
    }

    .rv-exchanges-hero h1 {
        font-size: 28px;
    }

    .rv-exchanges-hero-info,
    .rv-exchanges-help {
        border-radius: 20px;
        padding: 18px;
    }

    .rv-exchange-body {
        grid-template-columns: 90px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .rv-exchange-img {
        width: 90px;
        height: 90px;
        border-radius: 16px;
        padding: 10px;
    }

    .rv-exchange-info h2 {
        font-size: 15px;
    }

    .rv-exchange-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        grid-column: 1 / -1;
    }

    .rv-exchange-data {
        min-height: 62px;
        padding: 10px;
    }

        .rv-exchange-data span {
            font-size: 10px;
            line-height: 1.15;
            margin-bottom: 4px;
        }

        .rv-exchange-data strong {
            font-size: 12px;
            line-height: 1.2;
        }

    .rv-digital-code {
        flex-direction: column;
        align-items: stretch;
    }

    .rv-copy-btn {
        width: 100%;
    }

    .rv-exchange-top {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* ===============================
   TIPOGRAFÍA GLOBAL - CATAMARAN
   Pegar al final de main.css
================================ */

:root {
    --font-family-base: "Catamaran", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-size-body: 16px;
    --font-size-body-lg: 18px;
    --font-size-small: 13px;
    --font-size-h1: clamp(36px, 5.2vw, 60px);
    --font-size-h2: clamp(28px, 3.6vw, 38px);
    --font-size-h3: 14px;
    --font-size-h4: 18px;
    --line-height-body: 1.65;
    --line-height-heading-tight: 1.06;
    --line-height-heading: 1.2;
}

/* Fuente local Catamaran */
@font-face {
    font-family: "Catamaran";
    src: url("../webfonts/catamaran.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html,
body {
    font-family: var(--font-family-base) !important;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-body);
    color: var(--rv-text);
}

/* Texto general */
p,
span,
li,
label,
input,
select,
textarea {
    font-family: var(--font-family-base);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

/* Títulos */
h1,
.rv-hero h1,
.rv-login-art h1,
.rv-checkout-header h1 {
    font-family: var(--font-family-base);
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: var(--line-height-heading-tight);
    letter-spacing: -0.02em;
}

h2,
.rv-section-title h2,
.rv-login-card h2,
.rv-address-block h2 {
    font-family: var(--font-family-base);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: var(--line-height-heading);
    letter-spacing: -0.015em;
}

h3,
.rv-mini-cart-header h3,
.rv-detail-description h3 {
    font-family: var(--font-family-base);
    font-size: var(--font-size-h3);
    font-weight: 600;
    line-height: 1.25;
}

/* Menú */
.rv-nav-link,
.rv-logout-link {
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

/* Botones */
.rv-btn,
.rv-btn-main,
.rv-btn-outline,
.rv-btn-soft,
.rv-btn-mini,
.rv-btn-add,
.rv-product-btn,
.rv-detail-btn,
.rv-login-btn,
.rv-login-submit,
.rv-voucher-btn {
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
}

/* Cards de producto */
.rv-title,
.rv-product-title,
.rv-checkout-product-name,
.rv-summary-name {
    font-family: var(--font-family-base);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.rv-price,
.rv-product-points,
.rv-checkout-points,
.rv-detail-price {
    font-family: var(--font-family-base);
    font-weight: 700;
    line-height: 1.15;
}

/* Categorías */
.rv-cat a,
.rv-cat-name {
    font-family: var(--font-family-base);
    font-weight: 600;
}

/* Voucher */
.rv-voucher-user span,
.rv-voucher-balance span,
.rv-voucher-info span {
    font-size: 13px;
    font-weight: 400;
}

.rv-voucher-user strong,
.rv-voucher-info strong {
    font-size: 15px;
    font-weight: 600;
}

.rv-voucher-balance strong {
    font-size: 30px;
    font-weight: 700;
}

/* Formularios */
.rv-input,
.rv-input-control,
.rv-detail-input,
.rv-voucher-input,
.rv-search input {
    font-family: var(--font-family-base);
    font-size: 15px;
    font-weight: 400;
}

/* Mensajes pequeños */
.rv-error,
.error-msg,
.mensaje-error,
.rv-checkout-step,
.rv-detail-label,
.rv-summary-title span {
    font-size: 13px;
    font-weight: 600;
}

/* SweetAlert */
.rv-swal-text,
.texto-alerta,
.vh-texto-alerta {
    font-family: var(--font-family-base);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.rv-swal-confirm,
.swal2-confirm.btn-confirmar,
.swal2-cancel.btn-cancelar,
.swal2-confirm.vh-btn-confirmar {
    font-family: var(--font-family-base);
    font-weight: 700 !important;
}

/* Mobile */
@media (max-width: 768px) {
    html,
    body {
        font-size: 15px;
    }

    p,
    span,
    li,
    label,
    input,
    select,
    textarea {
        font-size: 15px;
    }

    h1,
    .rv-hero h1,
    .rv-login-art h1,
    .rv-checkout-header h1 {
        font-size: 30px;
        font-weight: 700;
    }

    h2,
    .rv-section-title h2,
    .rv-login-card h2,
    .rv-address-block h2 {
        font-size: 24px;
        font-weight: 700;
    }

    h3,
    .rv-mini-cart-header h3,
    .rv-detail-description h3 {
        font-size: 19px;
        font-weight: 600;
    }

    .rv-nav-link,
    .rv-logout-link {
        font-size: 14px;
        font-weight: 600;
    }

    .rv-product-title,
    .rv-title {
        font-size: 13px;
        font-weight: 600;
    }

    .rv-product-points,
    .rv-price {
        font-size: 18px;
        font-weight: 700;
    }

    .rv-product-btn,
    .rv-btn-add,
    .rv-detail-btn,
    .rv-btn-main,
    .rv-btn-outline,
    .rv-btn-soft {
        font-size: 13px;
        font-weight: 700;
    }

    .rv-voucher-balance strong,
    .rv-voucher-balance span {
        font-size: 13px;
    }
}
/* =========================================================
   DASHBOARD MECÁNICA / HOME CLIENTE
   Pegar al final de assets/css/main.css
========================================================= */

.rv-dash-page {
    background: #f4f7ff;
    min-height: calc(100vh - 80px);
    padding: 22px 14px 34px;
    color: #071a44;
}

.rv-dash-container {
    max-width: 1220px;
    margin: 0 auto;
}

.rv-dash-hero-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.rv-dash-welcome-card,
.rv-dash-balance-card,
.rv-dash-voucher-card,
.rv-dash-card,
.rv-dash-bottom-banner,
.rv-dash-alert-ok {
    background: #fff;
    border: 1px solid #e2e9f7;
    box-shadow: 0 12px 34px rgba(7, 26, 68, .07);
}

.rv-dash-welcome-card {
    border-radius: 14px;
    min-height: 350px;
    padding: 72px 32px 32px;
}

    .rv-dash-welcome-card h1 {
        margin: 0 0 18px;
        color: #071a44;
        font-size: 38px;
        font-weight: 950;
        line-height: 1.05;
    }

    .rv-dash-welcome-card p {
        margin: 0;
        max-width: 260px;
        color: #143167;
        font-size: 21px;
        font-weight: 500;
        line-height: 1.35;
    }

.rv-dash-balance-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    min-height: 350px;
    padding: 38px 40px;
    display: grid;
    grid-template-columns: 1fr 330px;
    align-items: center;
    background: radial-gradient(circle at 85% 28%, rgba(16,132,255,.35), transparent 27%), linear-gradient(135deg, #071a44 0%, #005cff 100%);
    color: #fff;
}

.rv-dash-balance-info > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.92);
    font-size: 22px;
    font-weight: 850;
}

.rv-dash-balance-info strong {
    display: block;
    font-size: 62px;
    line-height: .9;
    font-weight: 950;
    letter-spacing: -1px;
}

.rv-dash-balance-info small {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.95);
    font-size: 26px;
    font-weight: 900;
}

.rv-dash-balance-info em {
    display: block;
    margin: 14px 0 22px;
    color: rgba(255,255,255,.92);
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
}

.rv-dash-explore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 48px;
    gap: 12px;
    padding: 0 20px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none !important;
    color: #0b5cff !important;
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
}

    .rv-dash-explore-btn:hover {
        color: #0b5cff !important;
        background: #f7f9ff;
        text-decoration: none !important;
    }

    /* ESTE ES EL IMPORTANTE */

    .rv-dash-explore-btn span {
        display: block;
        color: #0b5cff !important;
        font-weight: 700;
        white-space: nowrap;
        line-height: 1;
    }

    /* ICONO REGALO */

    .rv-dash-explore-btn .fa-gift {
        color: #0b5cff !important;
        font-size: 15px;
    }

    /* FLECHA */

    .rv-dash-explore-btn .fa-arrow-right {
        color: #0b5cff !important;
        font-size: 14px;
        margin-left: auto;
    }

.rv-dash-gift-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .rv-dash-gift-box img {
        width: 320px;
        max-width: 100%;
        filter: drop-shadow(0 20px 26px rgba(0,0,0,.22));
    }

.rv-dash-voucher-card {
    border-radius: 14px;
    padding: 30px 34px;
    display: grid;
    grid-template-columns: 1fr 650px;
    gap: 34px;
    align-items: center;
    margin-bottom: 18px;
}

.rv-dash-voucher-left {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 36px;
    border-right: 1px solid #d9e1ef;
}

.rv-dash-voucher-icon {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d7bff, #0056ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 44px;
    flex: 0 0 auto;
    box-shadow: 0 16px 28px rgba(0, 92, 255, .22);
}

.rv-dash-voucher-left h2,
.rv-dash-card h2,
.rv-dash-bottom-banner h2 {
    margin: 0;
    color: #071a44;
    font-weight: 950;
}

.rv-dash-voucher-left h2 {
    font-size: 26px;
}

.rv-dash-voucher-left p {
    margin: 4px 0 0;
    color: #143167;
    font-size: 17px;
    line-height: 1.35;
}

.rv-dash-voucher-right {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 18px;
    align-items: start;
}

.rv-dash-voucher-input {
    width: 100%;
    height: 56px;
    border: 1.5px solid #cfd8e8;
    border-radius: 8px;
    padding: 0 20px;
    color: #071a44;
    font-size: 17px;
    font-weight: 700;
    outline: none;
}

    .rv-dash-voucher-input:focus {
        border-color: #005cff;
        box-shadow: 0 0 0 4px rgba(0,92,255,.10);
    }

.rv-dash-help-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: #005cff !important;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none !important;
}

.rv-dash-redimir-btn {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #1688ff, #005cff);
    color: #fff !important;
    font-size: 17px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(0,92,255,.18);
}

.rv-dash-alert-ok {
    position: relative;
    border-radius: 14px;
    min-height: 96px;
    padding: 20px 70px 20px 30px;
    display: grid;
    grid-template-columns: 62px 1fr 300px;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #f2fff7 0%, #ffffff 100%);
}

.rv-dash-alert-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #0b7a37;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border: 7px solid #dff8e9;
}

.rv-dash-alert-copy strong,
.rv-dash-alert-balance strong {
    display: block;
    color: #087034;
    font-size: 20px;
    font-weight: 950;
}

.rv-dash-alert-copy span,
.rv-dash-alert-balance span {
    display: block;
    color: #087034;
    font-size: 17px;
    font-weight: 700;
}

.rv-dash-alert-balance span {
    color: #071a44;
}

.rv-dash-alert-close {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #5f6f95;
    font-size: 20px;
    cursor: pointer;
}

.rv-dash-main-grid {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 18px;
    margin-bottom: 18px;
}

.rv-dash-card {
    border-radius: 14px;
    padding: 26px;
}

.rv-dash-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

    .rv-dash-card-head h2,
    .rv-dash-level-card h2 {
        font-size: 21px;
    }

    .rv-dash-card-head a {
        color: #005cff !important;
        font-size: 14px;
        font-weight: 900;
        text-decoration: none !important;
    }

.rv-dash-prizes-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(116px, 1fr));
    gap: 16px;
}

.rv-dash-prize-card {
    display: block;
    min-width: 0;
    border: 1px solid #e2e9f7;
    border-radius: 8px;
    overflow: hidden;
    color: #071a44 !important;
    text-decoration: none !important;
    background: #fff;
    transition: all .2s ease;
}

    .rv-dash-prize-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 24px rgba(7,26,68,.10);
    }

.rv-dash-brand {
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 950;
    font-size: 23px;
    text-align: center;
}

.rv-brand-amazon {
    background: #111;
    font-size: 70px;
    font-family: Arial, sans-serif;
}

.rv-brand-starbucks {
    background: #057344;
    font-size: 46px;
}

.rv-brand-liverpool {
    background: #e1007a;
    font-size: 20px;
}

.rv-brand-google {
    background: #fff;
    color: #1688ff;
    font-size: 44px;
}

.rv-brand-uber {
    background: #000;
    font-size: 34px;
}

.rv-dash-prize-card strong,
.rv-dash-prize-card span,
.rv-dash-prize-card em {
    display: block;
    padding: 0 12px;
}

.rv-dash-prize-card strong {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 950;
    min-height: 20px;
}

.rv-dash-prize-card span {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 850;
}

.rv-dash-prize-card em {
    width: max-content;
    margin: 10px 12px 14px;
    padding: 5px 10px;
    border-radius: 6px;
    background: #dceaff;
    color: #005cff;
    font-style: normal;
    font-size: 13px;
    font-weight: 950;
}

.rv-dash-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

    .rv-dash-dots span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #cfd8e8;
    }

        .rv-dash-dots span.active {
            background: #005cff;
        }

.rv-dash-level-card {
    padding: 26px 22px;
}

.rv-dash-level-content {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 34px;
}

.rv-dash-level-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d8bff, #005cff);
    border: 8px solid #dceaff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.rv-dash-level-content strong {
    display: block;
    color: #071a44;
    font-size: 18px;
    font-weight: 950;
}

.rv-dash-level-content p {
    margin: 5px 0 0;
    color: #2b467d;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.rv-dash-progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #cfd8e8;
    overflow: hidden;
    margin-top: 32px;
}

    .rv-dash-progress span {
        display: block;
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, #005cff, #1688ff);
    }

.rv-dash-progress-text {
    margin-top: 18px;
    color: #45608f;
    font-size: 17px;
    font-weight: 700;
}

.rv-dash-level-link {
    display: inline-flex;
    gap: 8px;
    margin-top: 28px;
    color: #005cff !important;
    font-size: 16px;
    font-weight: 850;
    text-decoration: none !important;
}

.rv-dash-activity-card {
    margin-bottom: 18px;
}

.rv-dash-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.rv-dash-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

    .rv-dash-table th {
        padding: 0 0 12px;
        color: #63769f;
        font-size: 12px;
        font-weight: 950;
        text-align: left;
        text-transform: uppercase;
        border-bottom: 1px solid #dce3ef;
    }

    .rv-dash-table td {
        padding: 14px 0;
        color: #36517f;
        font-size: 14px;
        font-weight: 650;
        border-bottom: 1px solid #edf1f8;
        vertical-align: middle;
    }

        .rv-dash-table td strong {
            color: #071a44;
            font-weight: 950;
        }

.rv-dash-row-icon {
    width: 32px;
    height: 32px;
    margin-right: 14px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .rv-dash-row-icon.green {
        background: #64c987;
    }

    .rv-dash-row-icon.blue {
        background: #005cff;
    }

    .rv-dash-row-icon.darkgreen {
        background: #087034;
    }

    .rv-dash-row-icon.purple {
        background: #8b67d9;
    }

.rv-dash-table .plus {
    color: #09863e;
    font-weight: 950;
}

.rv-dash-table .minus {
    color: #ec1c24;
    font-weight: 950;
}

.rv-dash-more-activity {
    width: max-content;
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #005cff !important;
    font-size: 15px;
    font-weight: 950;
    text-decoration: none !important;
}

.rv-dash-bottom-banner {
    min-height: 96px;
    border-radius: 10px;
    padding: 18px 32px;
    display: grid;
    grid-template-columns: 160px 1fr 190px;
    align-items: center;
    gap: 26px;
    background: linear-gradient(90deg, #ddecff 0%, #f8fbff 100%);
}

.rv-dash-bottom-gift img {
    width: 130px;
    display: block;
}

.rv-dash-bottom-banner h2 {
    font-size: 18px;
}

.rv-dash-bottom-banner p {
    margin: 4px 0 0;
    color: #143167;
    font-size: 13px;
    font-weight: 700;
}

.rv-dash-bottom-banner a {
    height: 42px;
    border: 1.5px solid #005cff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005cff !important;
    background: #fff;
    text-decoration: none !important;
    font-weight: 950;
}

@media (max-width: 1100px) {
    .rv-dash-hero-grid,
    .rv-dash-main-grid {
        grid-template-columns: 1fr;
    }

    .rv-dash-welcome-card {
        min-height: auto;
        padding: 28px;
    }

    .rv-dash-voucher-card {
        grid-template-columns: 1fr;
    }

    .rv-dash-voucher-left {
        border-right: 0;
        border-bottom: 1px solid #d9e1ef;
        padding: 0 0 22px;
    }
}

@media (max-width: 768px) {
    .rv-dash-page {
        padding: 14px 10px 28px;
    }

    .rv-dash-balance-card {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }

    .rv-dash-balance-info strong {
        font-size: 48px;
    }

    .rv-dash-balance-info small {
        font-size: 22px;
    }

    .rv-dash-gift-box img {
        width: 230px;
        margin-top: 20px;
    }

    .rv-dash-voucher-left {
        align-items: flex-start;
    }

    .rv-dash-voucher-icon {
        width: 74px;
        height: 74px;
        font-size: 30px;
    }

    .rv-dash-voucher-right {
        grid-template-columns: 1fr;
    }

    .rv-dash-alert-ok {
        grid-template-columns: 48px 1fr;
        padding: 18px 52px 18px 18px;
    }

    .rv-dash-alert-balance {
        grid-column: 2;
    }

    .rv-dash-prizes-row {
        display: flex;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .rv-dash-prize-card {
        flex: 0 0 150px;
        scroll-snap-align: start;
    }

    .rv-dash-bottom-banner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;
    }

    .rv-dash-bottom-gift img {
        margin: 0 auto;
    }

    .rv-dash-bottom-banner a {
        width: 100%;
    }
}


/* =========================================================
   AJUSTE DASHBOARD MECÁNICA - TAMAÑOS, CARRUSEL Y MOBILE
   Pegar DESPUÉS del CSS anterior del dashboard
========================================================= */

.rv-dash-container {
    max-width: 1160px;
}

.rv-dash-hero-grid {
    grid-template-columns: 295px 1fr;
    gap: 16px;
}

.rv-dash-welcome-card {
    min-height: 305px;
    padding: 58px 28px 28px;
    border-radius: 12px;
}

    .rv-dash-welcome-card h1 {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

        .rv-dash-welcome-card h1 span {
            font-size: 26px;
        }

    .rv-dash-welcome-card p {
        font-size: 19px;
        line-height: 1.35;
        max-width: 230px;
    }

.rv-dash-balance-card {
    min-height: 305px;
    padding: 34px 38px;
    grid-template-columns: 1fr 310px;
    border-radius: 12px;
}

.rv-dash-balance-info > span {
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 11px;
}

.rv-dash-balance-info strong {
    font-size: 58px;
    line-height: .92;
    letter-spacing: -1.3px;
}

.rv-dash-balance-info small {
    font-size: 23px;
    margin-top: 5px;
    line-height: 1.05;
}

.rv-dash-balance-info em {
    font-size: 16px;
    margin: 14px 0 20px;
}

.rv-dash-explore-btn {
    width: 285px;
    height: 56px;
    border-radius: 8px;
    font-size: 17px;
    gap: 16px;
}

.rv-dash-gift-box img {
    width: 285px;
}

.rv-dash-voucher-card {
    padding: 26px 32px;
    grid-template-columns: 1fr 560px;
}

.rv-dash-voucher-icon {
    width: 86px;
    height: 86px;
    font-size: 36px;
}

.rv-dash-voucher-left h2 {
    font-size: 23px;
}

.rv-dash-voucher-left p {
    font-size: 16px;
}

.rv-dash-voucher-right {
    grid-template-columns: 1fr 180px;
}

.rv-dash-voucher-input,
.rv-dash-redimir-btn {
    height: 52px;
    font-size: 16px;
}

.rv-dash-card-head h2,
.rv-dash-level-card > h2,
.rv-dash-card h2 {
    font-size: 18px;
}

.rv-dash-card-head a {
    font-size: 13px;
}

.rv-dash-main-grid {
    grid-template-columns: 1fr 300px;
    gap: 14px;
}

.rv-dash-card {
    border-radius: 12px;
}

/* Carrusel de premios destacados */
.rv-dash-prizes-carousel {
    position: relative;
}

.rv-dash-prizes-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 10px;
    scrollbar-width: none;
}

    .rv-dash-prizes-row::-webkit-scrollbar {
        display: none;
    }

.rv-dash-prize-card {
    flex: 0 0 132px;
    min-width: 132px;
}

.rv-dash-brand {
    height: 96px;
}

.rv-dash-prize-card strong {
    font-size: 13px;
}

.rv-dash-prize-card span {
    font-size: 13px;
}

.rv-dash-prize-card em {
    font-size: 12px;
}

.rv-dash-prize-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #0066ff;
    box-shadow: 0 10px 24px rgba(7, 26, 68, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
}

.rv-dash-prize-prev {
    left: -14px;
}

.rv-dash-prize-next {
    right: -14px;
}

.rv-dash-prize-arrow:hover {
    background: #eef4ff;
}

.rv-dash-level-card {
    padding: 28px 22px;
}

.rv-dash-level-content {
    grid-template-columns: 78px 1fr;
    gap: 14px;
}

.rv-dash-level-icon {
    width: 76px;
    height: 76px;
    font-size: 34px;
}

.rv-dash-level-content strong {
    font-size: 16px;
}

.rv-dash-level-content p,
.rv-dash-progress-text,
.rv-dash-level-link {
    font-size: 13px;
}

.rv-dash-progress {
    height: 8px;
    margin-top: 28px;
}

/* TABLET */
@media (max-width: 992px) {
    .rv-dash-page {
        padding: 16px 12px 34px;
    }

    .rv-dash-hero-grid {
        grid-template-columns: 1fr;
    }

    .rv-dash-welcome-card {
        min-height: auto;
        padding: 28px;
    }

        .rv-dash-welcome-card p {
            max-width: 100%;
        }

    .rv-dash-balance-card {
        min-height: 270px;
        grid-template-columns: 1fr 260px;
    }

    .rv-dash-balance-info strong {
        font-size: 52px;
    }

    .rv-dash-gift-box img {
        width: 245px;
    }

    .rv-dash-voucher-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rv-dash-voucher-left {
        border-right: 0;
        border-bottom: 1px solid #d9e1ef;
        padding: 0 0 20px;
    }

    .rv-dash-main-grid {
        grid-template-columns: 1fr;
    }

    .rv-dash-level-card {
        position: relative;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .rv-dash-page {
        padding: 12px 10px 28px;
    }

    .rv-dash-hero-grid {
        gap: 12px;
        margin-bottom: 12px;
    }

    .rv-dash-welcome-card {
        border-radius: 16px;
        padding: 22px 20px;
        text-align: left;
    }

        .rv-dash-welcome-card h1 {
            font-size: 27px;
            margin-bottom: 8px;
        }

            .rv-dash-welcome-card h1 span {
                font-size: 22px;
            }

        .rv-dash-welcome-card p {
            font-size: 16px;
            line-height: 1.35;
        }

    .rv-dash-balance-card {
        min-height: auto;
        border-radius: 16px;
        padding: 22px 20px;
        grid-template-columns: 1fr 120px;
        gap: 8px;
    }

    .rv-dash-balance-info > span {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .rv-dash-balance-info strong {
        font-size: 40px;
        line-height: .95;
    }

    .rv-dash-balance-info small {
        font-size: 18px;
    }

    .rv-dash-balance-info em {
        font-size: 13px;
        margin: 10px 0 16px;
    }

    .rv-dash-explore-btn {
        width: 100%;
        height: 50px;
        font-size: 15px;
        gap: 12px;
    }

    .rv-dash-gift-box {
        align-self: start;
        justify-content: flex-end;
        padding-top: 12px;
    }

        .rv-dash-gift-box img {
            width: 125px;
        }

    .rv-dash-voucher-card {
        border-radius: 16px;
        padding: 18px;
        margin-bottom: 12px;
    }

    .rv-dash-voucher-left {
        gap: 14px;
        align-items: flex-start;
    }

    .rv-dash-voucher-icon {
        width: 58px;
        height: 58px;
        font-size: 25px;
    }

    .rv-dash-voucher-left h2 {
        font-size: 20px;
    }

    .rv-dash-voucher-left p {
        font-size: 14px;
    }

    .rv-dash-voucher-right {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rv-dash-voucher-input,
    .rv-dash-redimir-btn {
        height: 48px;
        font-size: 14px;
    }

    .rv-dash-help-link {
        font-size: 13px;
    }

    .rv-dash-alert-ok {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 16px 48px 16px 16px;
        min-height: auto;
        border-radius: 16px;
    }

    .rv-dash-alert-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-width: 5px;
    }

    .rv-dash-alert-copy strong {
        font-size: 15px;
    }

    .rv-dash-alert-copy span {
        font-size: 13px;
    }

    .rv-dash-alert-balance {
        grid-column: 1 / -1;
        padding-left: 54px;
        text-align: left;
    }

        .rv-dash-alert-balance strong {
            font-size: 17px;
        }

    .rv-dash-card {
        border-radius: 16px;
        padding: 18px;
    }

    .rv-dash-card-head {
        align-items: center;
    }

        .rv-dash-card-head h2,
        .rv-dash-level-card > h2,
        .rv-dash-card h2 {
            font-size: 17px;
        }

    .rv-dash-prize-card {
        flex-basis: 128px;
        min-width: 128px;
    }

    .rv-dash-brand {
        height: 90px;
    }

    .rv-dash-prize-arrow {
        display: none;
    }

    .rv-dash-dots {
        margin-top: 6px;
    }

    .rv-dash-level-card {
        padding: 20px 18px;
    }

    .rv-dash-level-content {
        grid-template-columns: 66px 1fr;
        gap: 12px;
        align-items: center;
    }

    .rv-dash-level-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .rv-dash-progress {
        width: 100%;
        height: 9px;
        margin-top: 18px;
    }

        .rv-dash-progress span {
            max-width: 100%;
        }

    .rv-dash-progress-text {
        font-size: 13px;
        margin-top: 9px;
        word-break: keep-all;
    }

    .rv-dash-level-link {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        font-size: 14px;
    }

    .rv-dash-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .rv-dash-table {
        min-width: 760px;
    }

    .rv-dash-bottom-banner {
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 16px;
        border-radius: 16px;
    }

    .rv-dash-bottom-gift img {
        width: 68px;
    }

    .rv-dash-bottom-banner h2 {
        font-size: 16px;
    }

    .rv-dash-bottom-banner p {
        font-size: 13px;
    }

    .rv-dash-bottom-banner a {
        grid-column: 1 / -1;
        width: 100%;
        height: 44px;
    }
}

@media (max-width: 430px) {
    .rv-dash-balance-card {
        grid-template-columns: 1fr;
    }

    .rv-dash-gift-box {
        position: absolute;
        right: 14px;
        top: 24px;
        opacity: .45;
    }

        .rv-dash-gift-box img {
            width: 120px;
        }

    .rv-dash-balance-info {
        position: relative;
        z-index: 2;
    }
}


/* =========================================================
   AJUSTE DASHBOARD MECÁNICA - TAMAÑOS, CARRUSEL Y MOBILE
   Pegar DESPUÉS del CSS anterior del dashboard
========================================================= */

.rv-dash-container {
    max-width: 1160px;
}

.rv-dash-hero-grid {
    grid-template-columns: 295px 1fr;
    gap: 16px;
}

.rv-dash-welcome-card {
    min-height: 305px;
    padding: 58px 28px 28px;
    border-radius: 12px;
}

    .rv-dash-welcome-card h1 {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

        .rv-dash-welcome-card h1 span {
            font-size: 26px;
        }

    .rv-dash-welcome-card p {
        font-size: 19px;
        line-height: 1.35;
        max-width: 230px;
    }

.rv-dash-balance-card {
    min-height: 305px;
    padding: 34px 38px;
    grid-template-columns: 1fr 310px;
    border-radius: 12px;
}

.rv-dash-balance-info > span {
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 11px;
}

.rv-dash-balance-info strong {
    font-size: 58px;
    line-height: .92;
    letter-spacing: -1.3px;
}

.rv-dash-balance-info small {
    font-size: 23px;
    margin-top: 5px;
    line-height: 1.05;
}

.rv-dash-balance-info em {
    font-size: 16px;
    margin: 14px 0 20px;
}

.rv-dash-explore-btn {
    width: 285px;
    height: 56px;
    border-radius: 8px;
    font-size: 17px;
    gap: 16px;
}

.rv-dash-gift-box img {
    width: 285px;
}

.rv-dash-voucher-card {
    padding: 26px 32px;
    grid-template-columns: 1fr 560px;
}

.rv-dash-voucher-icon {
    width: 86px;
    height: 86px;
    font-size: 36px;
}

.rv-dash-voucher-left h2 {
    font-size: 23px;
}

.rv-dash-voucher-left p {
    font-size: 16px;
}

.rv-dash-voucher-right {
    grid-template-columns: 1fr 180px;
}

.rv-dash-voucher-input,
.rv-dash-redimir-btn {
    height: 52px;
    font-size: 16px;
}

.rv-dash-card-head h2,
.rv-dash-level-card > h2,
.rv-dash-card h2 {
    font-size: 18px;
}

.rv-dash-card-head a {
    font-size: 13px;
}

.rv-dash-main-grid {
    grid-template-columns: 1fr 300px;
    gap: 14px;
}

.rv-dash-card {
    border-radius: 12px;
}

/* Carrusel de premios destacados */
.rv-dash-prizes-carousel {
    position: relative;
}

.rv-dash-prizes-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 10px;
    scrollbar-width: none;
}

    .rv-dash-prizes-row::-webkit-scrollbar {
        display: none;
    }

.rv-dash-prize-card {
    flex: 0 0 132px;
    min-width: 132px;
}

.rv-dash-brand {
    height: 96px;
}

.rv-dash-prize-card strong {
    font-size: 13px;
}

.rv-dash-prize-card span {
    font-size: 13px;
}

.rv-dash-prize-card em {
    font-size: 12px;
}

.rv-dash-prize-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #0066ff;
    box-shadow: 0 10px 24px rgba(7, 26, 68, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
}

.rv-dash-prize-prev {
    left: -14px;
}

.rv-dash-prize-next {
    right: -14px;
}

.rv-dash-prize-arrow:hover {
    background: #eef4ff;
}

.rv-dash-level-card {
    padding: 28px 22px;
}

.rv-dash-level-content {
    grid-template-columns: 78px 1fr;
    gap: 14px;
}

.rv-dash-level-icon {
    width: 76px;
    height: 76px;
    font-size: 34px;
}

.rv-dash-level-content strong {
    font-size: 16px;
}

.rv-dash-level-content p,
.rv-dash-progress-text,
.rv-dash-level-link {
    font-size: 13px;
}

.rv-dash-progress {
    height: 8px;
    margin-top: 28px;
}

/* TABLET */
@media (max-width: 992px) {
    .rv-dash-page {
        padding: 16px 12px 34px;
    }

    .rv-dash-hero-grid {
        grid-template-columns: 1fr;
    }

    .rv-dash-welcome-card {
        min-height: auto;
        padding: 28px;
    }

        .rv-dash-welcome-card p {
            max-width: 100%;
        }

    .rv-dash-balance-card {
        min-height: 270px;
        grid-template-columns: 1fr 260px;
    }

    .rv-dash-balance-info strong {
        font-size: 52px;
    }

    .rv-dash-gift-box img {
        width: 245px;
    }

    .rv-dash-voucher-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rv-dash-voucher-left {
        border-right: 0;
        border-bottom: 1px solid #d9e1ef;
        padding: 0 0 20px;
    }

    .rv-dash-main-grid {
        grid-template-columns: 1fr;
    }

    .rv-dash-level-card {
        position: relative;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .rv-dash-page {
        padding: 12px 10px 28px;
    }

    .rv-dash-hero-grid {
        gap: 12px;
        margin-bottom: 12px;
    }

    .rv-dash-welcome-card {
        border-radius: 16px;
        padding: 22px 20px;
        text-align: left;
    }

        .rv-dash-welcome-card h1 {
            font-size: 27px;
            margin-bottom: 8px;
        }

            .rv-dash-welcome-card h1 span {
                font-size: 22px;
            }

        .rv-dash-welcome-card p {
            font-size: 16px;
            line-height: 1.35;
        }

    .rv-dash-balance-card {
        min-height: auto;
        border-radius: 16px;
        padding: 22px 20px;
        grid-template-columns: 1fr 120px;
        gap: 8px;
    }

    .rv-dash-balance-info > span {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .rv-dash-balance-info strong {
        font-size: 40px;
        line-height: .95;
    }

    .rv-dash-balance-info small {
        font-size: 18px;
    }

    .rv-dash-balance-info em {
        font-size: 13px;
        margin: 10px 0 16px;
    }

    .rv-dash-explore-btn {
        width: 100%;
        height: 50px;
        font-size: 15px;
        gap: 12px;
    }

    .rv-dash-gift-box {
        align-self: start;
        justify-content: flex-end;
        padding-top: 12px;
    }

        .rv-dash-gift-box img {
            width: 125px;
        }

    .rv-dash-voucher-card {
        border-radius: 16px;
        padding: 18px;
        margin-bottom: 12px;
    }

    .rv-dash-voucher-left {
        gap: 14px;
        align-items: flex-start;
    }

    .rv-dash-voucher-icon {
        width: 58px;
        height: 58px;
        font-size: 25px;
    }

    .rv-dash-voucher-left h2 {
        font-size: 20px;
    }

    .rv-dash-voucher-left p {
        font-size: 14px;
    }

    .rv-dash-voucher-right {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rv-dash-voucher-input,
    .rv-dash-redimir-btn {
        height: 48px;
        font-size: 14px;
    }

    .rv-dash-help-link {
        font-size: 13px;
    }

    .rv-dash-alert-ok {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 16px 48px 16px 16px;
        min-height: auto;
        border-radius: 16px;
    }

    .rv-dash-alert-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-width: 5px;
    }

    .rv-dash-alert-copy strong {
        font-size: 15px;
    }

    .rv-dash-alert-copy span {
        font-size: 13px;
    }

    .rv-dash-alert-balance {
        grid-column: 1 / -1;
        padding-left: 54px;
        text-align: left;
    }

        .rv-dash-alert-balance strong {
            font-size: 17px;
        }

    .rv-dash-card {
        border-radius: 16px;
        padding: 18px;
    }

    .rv-dash-card-head {
        align-items: center;
    }

        .rv-dash-card-head h2,
        .rv-dash-level-card > h2,
        .rv-dash-card h2 {
            font-size: 17px;
        }

    .rv-dash-prize-card {
        flex-basis: 128px;
        min-width: 128px;
    }

    .rv-dash-brand {
        height: 90px;
    }

    .rv-dash-prize-arrow {
        display: none;
    }

    .rv-dash-dots {
        margin-top: 6px;
    }

    .rv-dash-level-card {
        padding: 20px 18px;
    }

    .rv-dash-level-content {
        grid-template-columns: 66px 1fr;
        gap: 12px;
        align-items: center;
    }

    .rv-dash-level-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .rv-dash-progress {
        width: 100%;
        height: 9px;
        margin-top: 18px;
    }

        .rv-dash-progress span {
            max-width: 100%;
        }

    .rv-dash-progress-text {
        font-size: 13px;
        margin-top: 9px;
        word-break: keep-all;
    }

    .rv-dash-level-link {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        font-size: 14px;
    }

    .rv-dash-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .rv-dash-table {
        min-width: 760px;
    }

    .rv-dash-bottom-banner {
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 16px;
        border-radius: 16px;
    }

    .rv-dash-bottom-gift img {
        width: 68px;
    }

    .rv-dash-bottom-banner h2 {
        font-size: 16px;
    }

    .rv-dash-bottom-banner p {
        font-size: 13px;
    }

    .rv-dash-bottom-banner a {
        grid-column: 1 / -1;
        width: 100%;
        height: 44px;
    }
}

@media (max-width: 430px) {
    .rv-dash-balance-card {
        grid-template-columns: 1fr;
    }

    .rv-dash-gift-box {
        position: absolute;
        right: 14px;
        top: 24px;
        opacity: .45;
    }

        .rv-dash-gift-box img {
            width: 120px;
        }

    .rv-dash-balance-info {
        position: relative;
        z-index: 2;
    }
}


/* =========================================================
   FIX FINAL DASHBOARD MECÁNICA - MOBILE + FONT PUNTOS
   Pegar al FINAL de main.css
========================================================= */

/* Evita que los <asp:Label> renderizados como <span> hereden tamaños equivocados */
.rv-dash-welcome-card h1 {
    font-size: clamp(31px, 3vw, 42px) !important;
    font-weight: 950 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.8px !important;
}

    .rv-dash-welcome-card h1 .rv-dash-user-name {
        font-size: inherit !important;
        font-weight: inherit !important;
        line-height: inherit !important;
        color: inherit !important;
    }

    .rv-dash-welcome-card h1 .rv-dash-emoji {
        font-size: .78em !important;
        line-height: 1 !important;
        vertical-align: 4px;
    }

.rv-dash-balance-info > span {
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px !important;
    font-size: 18px !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
}

.rv-dash-balance-info strong {
    display: block !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(58px, 5.6vw, 76px) !important;
    font-weight: 950 !important;
    line-height: .86 !important;
    letter-spacing: -2px !important;
}

    .rv-dash-balance-info strong .rv-dash-points-number,
    .rv-dash-balance-info strong span,
    .rv-dash-balance-info strong label {
        display: inline !important;
        color: inherit !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        line-height: inherit !important;
        letter-spacing: inherit !important;
    }

.rv-dash-balance-info small {
    display: block !important;
    margin-top: 10px !important;
    color: rgba(255,255,255,.96) !important;
    font-size: 25px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.rv-dash-balance-info em {
    display: block !important;
    margin: 16px 0 22px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
}

.rv-dash-container {
    max-width: 1160px !important;
}

.rv-dash-hero-grid {
    grid-template-columns: 295px minmax(0, 1fr) !important;
    gap: 16px !important;
}

.rv-dash-welcome-card {
    min-height: 305px !important;
    padding: 58px 28px 28px !important;
}

    .rv-dash-welcome-card p {
        font-size: 19px !important;
        line-height: 1.35 !important;
        max-width: 245px !important;
    }

.rv-dash-balance-card {
    min-height: 305px !important;
    padding: 34px 38px !important;
    grid-template-columns: minmax(0, 1fr) 300px !important;
}

.rv-dash-gift-box img {
    width: 285px !important;
    max-width: 100% !important;
}

.rv-dash-explore-btn {
    width: 285px !important;
    height: 56px !important;
    font-size: 17px !important;
}

/* Premios como carrusel */
.rv-dash-prizes-carousel {
    position: relative !important;
    overflow: visible !important;
}

.rv-dash-prizes-row {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 10px !important;
    scrollbar-width: none;
}

    .rv-dash-prizes-row::-webkit-scrollbar {
        display: none;
    }

.rv-dash-prize-card {
    flex: 0 0 132px !important;
    min-width: 132px !important;
    scroll-snap-align: start;
}

.rv-dash-brand {
    height: 96px !important;
}

.rv-dash-prize-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #0066ff;
    box-shadow: 0 10px 24px rgba(7, 26, 68, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
}

.rv-dash-prize-prev {
    left: -14px;
}

.rv-dash-prize-next {
    right: -14px;
}

/* Barra de nivel segura */
.rv-dash-level-card {
    min-width: 0;
}

.rv-dash-progress {
    width: 100% !important;
    max-width: 100%;
    overflow: hidden !important;
}

    .rv-dash-progress span {
        max-width: 100% !important;
    }

/* TABLET */
@media (max-width: 992px) {
    .rv-dash-container {
        max-width: 100% !important;
    }

    .rv-dash-page {
        padding: 16px 12px 34px !important;
    }

    .rv-dash-hero-grid,
    .rv-dash-main-grid {
        grid-template-columns: 1fr !important;
    }

    .rv-dash-welcome-card {
        min-height: auto !important;
        padding: 28px !important;
    }

        .rv-dash-welcome-card p {
            max-width: 100% !important;
        }

    .rv-dash-balance-card {
        min-height: 270px !important;
        grid-template-columns: minmax(0, 1fr) 250px !important;
    }

    .rv-dash-gift-box img {
        width: 240px !important;
    }

    .rv-dash-voucher-card {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .rv-dash-voucher-left {
        border-right: 0 !important;
        border-bottom: 1px solid #d9e1ef !important;
        padding: 0 0 20px !important;
    }

    .rv-dash-voucher-right {
        grid-template-columns: minmax(0, 1fr) 180px !important;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .rv-dash-page {
        padding: 12px 10px 30px !important;
        overflow-x: hidden;
    }

    .rv-dash-container {
        width: 100%;
        max-width: 100% !important;
    }

    .rv-dash-hero-grid {
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .rv-dash-welcome-card,
    .rv-dash-balance-card,
    .rv-dash-voucher-card,
    .rv-dash-card,
    .rv-dash-alert-ok,
    .rv-dash-bottom-banner {
        border-radius: 16px !important;
        box-shadow: 0 8px 22px rgba(7,26,68,.07) !important;
    }

    .rv-dash-welcome-card {
        padding: 22px 20px !important;
    }

        .rv-dash-welcome-card h1 {
            font-size: 30px !important;
            margin-bottom: 8px !important;
            letter-spacing: -0.5px !important;
        }

            .rv-dash-welcome-card h1 .rv-dash-emoji {
                font-size: 22px !important;
                vertical-align: 3px;
            }

        .rv-dash-welcome-card p {
            font-size: 16px !important;
            line-height: 1.35 !important;
            max-width: 100% !important;
        }

    .rv-dash-balance-card {
        position: relative;
        min-height: 245px !important;
        padding: 22px 20px !important;
        grid-template-columns: 1fr !important;
        overflow: hidden;
    }

    .rv-dash-balance-info {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
    }

        .rv-dash-balance-info > span {
            font-size: 15px !important;
            margin-bottom: 10px !important;
        }

        .rv-dash-balance-info strong {
            font-size: clamp(50px, 16vw, 62px) !important;
            line-height: .88 !important;
            letter-spacing: -1.4px !important;
        }

        .rv-dash-balance-info small {
            font-size: 21px !important;
            margin-top: 8px !important;
        }

        .rv-dash-balance-info em {
            font-size: 14px !important;
            margin: 12px 0 16px !important;
        }

    .rv-dash-explore-btn {
        width: min(100%, 285px) !important;
        height: 50px !important;
        font-size: 15px !important;
        gap: 12px !important;
        justify-content: center;
    }

    .rv-dash-gift-box {
        position: absolute;
        right: -12px;
        top: 34px;
        z-index: 1;
        opacity: .58;
        pointer-events: none;
    }

        .rv-dash-gift-box img {
            width: 150px !important;
            margin: 0 !important;
        }

    .rv-dash-voucher-card {
        padding: 18px !important;
        margin-bottom: 12px !important;
    }

    .rv-dash-voucher-left {
        gap: 14px !important;
        align-items: flex-start !important;
        padding-bottom: 16px !important;
    }

    .rv-dash-voucher-icon {
        width: 58px !important;
        height: 58px !important;
        font-size: 25px !important;
    }

    .rv-dash-voucher-left h2 {
        font-size: 20px !important;
    }

    .rv-dash-voucher-left p {
        font-size: 14px !important;
    }

    .rv-dash-voucher-right {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .rv-dash-voucher-input,
    .rv-dash-redimir-btn {
        height: 48px !important;
        font-size: 14px !important;
    }

    .rv-dash-help-link {
        font-size: 13px !important;
    }

    .rv-dash-alert-ok {
        grid-template-columns: 44px 1fr !important;
        gap: 12px !important;
        padding: 16px 48px 16px 16px !important;
        min-height: auto !important;
        margin-bottom: 12px !important;
    }

    .rv-dash-alert-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 18px !important;
        border-width: 5px !important;
    }

    .rv-dash-alert-copy strong {
        font-size: 15px !important;
    }

    .rv-dash-alert-copy span {
        font-size: 13px !important;
    }

    .rv-dash-alert-balance {
        grid-column: 1 / -1 !important;
        padding-left: 56px;
        text-align: left;
    }

        .rv-dash-alert-balance span {
            font-size: 13px !important;
        }

        .rv-dash-alert-balance strong {
            font-size: 17px !important;
        }

    .rv-dash-alert-close {
        right: 14px !important;
        font-size: 18px !important;
    }

    .rv-dash-main-grid {
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .rv-dash-card {
        padding: 18px !important;
    }

    .rv-dash-card-head {
        margin-bottom: 16px !important;
        align-items: center !important;
    }

        .rv-dash-card-head h2,
        .rv-dash-level-card > h2,
        .rv-dash-card h2 {
            font-size: 17px !important;
        }

        .rv-dash-card-head a {
            font-size: 12px !important;
            white-space: nowrap;
        }

    .rv-dash-prizes-carousel {
        margin-left: -2px;
        margin-right: -2px;
    }

    .rv-dash-prizes-row {
        gap: 12px !important;
        padding-bottom: 8px !important;
    }

    .rv-dash-prize-card {
        flex: 0 0 132px !important;
        min-width: 132px !important;
    }

    .rv-dash-brand {
        height: 86px !important;
    }

    .rv-brand-amazon {
        font-size: 58px !important;
    }

    .rv-brand-starbucks,
    .rv-brand-google {
        font-size: 36px !important;
    }

    .rv-brand-uber {
        font-size: 28px !important;
    }

    .rv-brand-liverpool {
        font-size: 16px !important;
    }

    .rv-dash-prize-card strong {
        margin-top: 10px !important;
        font-size: 12px !important;
        min-height: 18px !important;
    }

    .rv-dash-prize-card span {
        font-size: 12px !important;
    }

    .rv-dash-prize-card em {
        font-size: 11px !important;
        margin: 8px 10px 12px !important;
        padding: 4px 8px !important;
    }

    .rv-dash-prize-arrow {
        display: none !important;
    }

    .rv-dash-dots {
        margin-top: 6px !important;
    }

    .rv-dash-level-card {
        padding: 20px 18px !important;
    }

    .rv-dash-level-content {
        grid-template-columns: 66px minmax(0, 1fr) !important;
        gap: 12px !important;
        margin-top: 18px !important;
        align-items: center !important;
    }

    .rv-dash-level-icon {
        width: 64px !important;
        height: 64px !important;
        font-size: 28px !important;
        border-width: 6px !important;
    }

    .rv-dash-level-content strong {
        font-size: 15px !important;
    }

    .rv-dash-level-content p {
        font-size: 13px !important;
    }

    .rv-dash-progress {
        height: 9px !important;
        margin-top: 18px !important;
    }

    .rv-dash-progress-text {
        font-size: 13px !important;
        margin-top: 9px !important;
        white-space: normal !important;
    }

    .rv-dash-level-link {
        display: flex !important;
        justify-content: space-between !important;
        gap: 10px !important;
        font-size: 14px !important;
        margin-top: 18px !important;
    }

    .rv-dash-table-wrap {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 4px;
    }

    .rv-dash-table {
        min-width: 760px !important;
    }

        .rv-dash-table th {
            font-size: 11px !important;
        }

        .rv-dash-table td {
            font-size: 13px !important;
            padding: 12px 0 !important;
        }

    .rv-dash-bottom-banner {
        grid-template-columns: 70px 1fr !important;
        gap: 12px !important;
        padding: 16px !important;
        text-align: left !important;
    }

    .rv-dash-bottom-gift img {
        width: 68px !important;
        margin: 0 !important;
    }

    .rv-dash-bottom-banner h2 {
        font-size: 16px !important;
    }

    .rv-dash-bottom-banner p {
        font-size: 13px !important;
    }

    .rv-dash-bottom-banner a {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        height: 44px !important;
    }
}

@media (max-width: 430px) {
    .rv-dash-balance-card {
        min-height: 235px !important;
    }

    .rv-dash-gift-box {
        right: -22px;
        top: 42px;
        opacity: .42;
    }

        .rv-dash-gift-box img {
            width: 135px !important;
        }

    .rv-dash-balance-info strong {
        font-size: clamp(46px, 15vw, 56px) !important;
    }

    .rv-dash-explore-btn {
        max-width: 245px !important;
    }

    .rv-dash-prize-card {
        flex-basis: 124px !important;
        min-width: 124px !important;
    }

    .rv-dash-brand {
        height: 82px !important;
    }
}

/*=========================================================
   FIX CARRUSEL PREMIOS DESTACADOS - MECÁNICA
   Más productos + flechas funcionales + dots dinámicos
========================================================= */
.rv-dash-featured-card {
    overflow: hidden !important;
}

.rv-dash-prizes-carousel {
    position: relative !important;
    padding: 0 34px !important;
}

.rv-dash-prizes-row {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    padding: 2px 0 10px !important;
}

    .rv-dash-prizes-row::-webkit-scrollbar {
        display: none !important;
    }

.rv-dash-prize-card {
    flex: 0 0 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    scroll-snap-align: start !important;
}

.rv-dash-prize-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 5 !important;
    width: 46px !important;
    height: 46px !important;
    border: 2px solid #071a44 !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #0066ff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 12px 28px rgba(7,26,68,.15) !important;
}

.rv-dash-prize-prev {
    left: 0 !important;
}

.rv-dash-prize-next {
    right: 0 !important;
}

.rv-dash-prize-arrow.is-disabled {
    opacity: .35 !important;
    cursor: default !important;
    pointer-events: none !important;
}

.rv-dash-dots {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 12px !important;
}

    .rv-dash-dots span,
    .rv-dash-dots button {
        width: 9px !important;
        height: 9px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #ccd7ea !important;
        padding: 0 !important;
        cursor: pointer !important;
        transition: all .2s ease !important;
    }

        .rv-dash-dots span.active,
        .rv-dash-dots button.active {
            width: 10px !important;
            background: #0066ff !important;
        }

/* Nuevas tarjetas visuales del carrusel */
.rv-brand-cine {
    background: #0a2b6f !important;
    color: #fff !important;
    font-size: 38px !important;
}

.rv-brand-spotify {
    background: #1db954 !important;
    color: #fff !important;
    font-size: 38px !important;
}

.rv-brand-netflix {
    background: #111 !important;
    color: #e50914 !important;
    font-size: 23px !important;
    font-weight: 950 !important;
}

.rv-brand-walmart {
    background: #0071ce !important;
    color: #ffc220 !important;
    font-size: 22px !important;
    font-weight: 950 !important;
}

.rv-brand-xbox {
    background: #107c10 !important;
    color: #fff !important;
    font-size: 38px !important;
}

/* Tamaño correcto del saldo/puntos como la referencia */
.rv-dash-balance-info strong,
.rv-dash-balance-info strong .rv-dash-points-number {
    font-size: clamp(60px, 5.8vw, 78px) !important;
    font-weight: 950 !important;
    line-height: .88 !important;
    letter-spacing: -2px !important;
}

.rv-dash-balance-info small {
    font-size: 25px !important;
    font-weight: 900 !important;
}

@media (max-width: 768px) {
    .rv-dash-prizes-carousel {
        padding: 0 !important;
    }

    .rv-dash-prizes-row {
        gap: 12px !important;
        padding: 2px 2px 8px !important;
    }

    .rv-dash-prize-card {
        flex: 0 0 132px !important;
        min-width: 132px !important;
        max-width: 132px !important;
    }

    .rv-dash-prize-arrow {
        display: none !important;
    }

    .rv-dash-dots button {
        width: 8px !important;
        height: 8px !important;
    }

        .rv-dash-dots button.active {
            width: 18px !important;
        }

    .rv-dash-balance-info strong,
    .rv-dash-balance-info strong .rv-dash-points-number {
        font-size: clamp(50px, 16vw, 62px) !important;
        letter-spacing: -1.4px !important;
    }

    .rv-dash-balance-info small {
        font-size: 21px !important;
    }
}

@media (max-width: 430px) {
    .rv-dash-prize-card {
        flex-basis: 124px !important;
        min-width: 124px !important;
        max-width: 124px !important;
    }
}


/* ====================================================
   HEADER - USUARIO EN MENÚ
   Agrega avatar + nombre junto al carrito, sin flecha
==================================================== */
.rv-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 44px;
    padding: 0 10px 0 4px;
    border-radius: 999px;
    color: #061842;
    font-family: 'catamaran', sans-serif;
    font-weight: 900;
    white-space: nowrap;
}

.rv-user-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b84d8, #00a6d6);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
    /*box-shadow: 0 6px 14px rgba(11,132,216,.22);*/
}

.rv-user-name {
    display: inline-block;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 768px) {
    .rv-user-desktop {
        display: none !important;
    }
}

/* =====================================================
   AYUDA / CONTACTO - FORMULARIO USUARIO FINAL
===================================================== */
.rv-help-page {
    width: 100%;
    min-height: calc(100vh - 76px);
    background: #f3f6fb;
    padding: 32px 16px 64px;
}

.rv-help-container {
    max-width: 1180px;
    margin: 0 auto;
}

.rv-help-hero {
    width: 100%;
    margin-bottom: 30px;
}

.rv-help-hero-main,
.rv-help-side-card,
.rv-help-form-card {
    background: #fff;
    border: 1px solid #dfe7f5;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.rv-help-hero-main {
    width: 100%;
    min-height: 220px;
    border-radius: 28px;
    padding: 48px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg,#071A44 0%,#0B84D8 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(7,26,68,.12);
}


    .rv-help-hero-main:after {
        content: "";
        position: absolute;
        right: -70px;
        top: -80px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
    }

.rv-help-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.25);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.rv-help-hero-main h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
    max-width: 760px;
}

.rv-help-hero-main p {
    margin-top: 20px;
    max-width: 700px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255,255,255,.92);
}

.rv-help-side-card {
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.rv-help-side-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 13px;
    align-items: center;
}

.rv-help-side-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0b64f4;
    font-size: 20px;
}

.rv-help-side-item strong {
    display: block;
    color: #061842;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.15;
}

.rv-help-side-item span {
    display: block;
    margin-top: 3px;
    color: #586579;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.rv-help-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 22px;
    align-items: start;
}

.rv-help-form-card {
    padding: 28px;
}

.rv-help-form-head {
    margin-bottom: 22px;
}

    .rv-help-form-head h2 {
        margin: 0;
        color: #061842;
        font-size: 26px;
        line-height: 1.1;
        font-weight: 950;
    }

    .rv-help-form-head p {
        margin: 8px 0 0;
        color: #667085;
        font-size: 14px;
        font-weight: 700;
    }

.rv-help-form-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
}

.rv-help-field {
    min-width: 0;
}

.rv-help-field-full {
    grid-column: 1 / -1;
}

.rv-help-field label {
    display: block;
    margin: 0 0 7px;
    color: #061842;
    font-size: 13px;
    font-weight: 950;
}

.rv-help-required {
    color: #ec1c24;
}

.rv-help-input,
.rv-help-select,
.rv-help-textarea {
    width: 100%;
    border: 1.5px solid #dfe7f5;
    border-radius: 14px;
    background: #fff;
    color: #172033;
    font-family: 'catamaran',sans-serif;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    transition: border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

.rv-help-input,
.rv-help-select {
    height: 48px;
    padding: 0 14px;
}

.rv-help-textarea {
    min-height: 150px;
    resize: vertical;
    padding: 13px 14px;
    line-height: 1.45;
}

    .rv-help-input:focus,
    .rv-help-select:focus,
    .rv-help-textarea:focus {
        border-color: #0b64f4;
        box-shadow: 0 0 0 4px rgba(11,100,244,.11);
    }

.rv-help-input[readonly],
.rv-help-input:disabled {
    background: #f8fafc;
    color: #667085;
}

.rv-help-helptext {
    display: block;
    margin-top: 6px;
    color: #7a8699;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
}

.rv-help-counter {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
    color: #7a8699;
    font-size: 12px;
    font-weight: 800;
}

.rv-help-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 14px;
    border: 1px solid #dfe7f5;
    border-radius: 14px;
    background: #fbfdff;
}

    .rv-help-check input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        accent-color: #0b64f4;
    }

    .rv-help-check label,
    .rv-help-check span {
        margin: 0;
        color: #344054;
        font-size: 13px;
        line-height: 1.35;
        font-weight: 700;
    }

    .rv-help-check a {
        color: #0b64f4;
        font-weight: 900;
    }

.rv-help-captcha {
    padding: 14px;
    border: 1px dashed #cbd8ea;
    border-radius: 14px;
    background: #fbfdff;
    overflow: hidden;
}

.rv-help-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
}

.rv-help-btn-primary,
.rv-help-btn-outline {
    min-height: 48px;
    border-radius: 14px;
    padding: 0 22px;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'catamaran',sans-serif;
    font-size: 14px;
    font-weight: 950;
    text-decoration: none !important;
    transition: transform .2s ease,background .2s ease,box-shadow .2s ease;
}

.rv-help-btn-primary {
    background: #0b64f4;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(11,100,244,.2);
}

    .rv-help-btn-primary:hover {
        background: #061842;
        transform: translateY(-1px);
    }

.rv-help-btn-outline {
    background: #fff;
    color: #061842 !important;
    border: 1px solid #dfe7f5;
}

    .rv-help-btn-outline:hover {
        background: #eef5ff;
    }

.rv-help-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.rv-help-message-ok {
    background: #ecfdf3;
    color: #067647;
    border: 1px solid #abefc6;
}

.rv-help-message-error {
    background: #fff1f3;
    color: #b42318;
    border: 1px solid #fecdd6;
}

.rv-help-message i {
    margin-top: 2px;
}

.rv-help-info-card {
    background: #fff;
    border: 1px solid #dfe7f5;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
    padding: 24px;
    position: sticky;
    top: 98px;
}

    .rv-help-info-card h3 {
        margin: 0;
        color: #061842;
        font-size: 20px;
        font-weight: 950;
    }

    .rv-help-info-card p {
        margin: 8px 0 18px;
        color: #667085;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 700;
    }

.rv-help-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rv-help-faq-item {
    padding: 13px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
}

    .rv-help-faq-item strong {
        display: block;
        color: #061842;
        font-size: 13px;
        font-weight: 950;
    }

    .rv-help-faq-item span {
        display: block;
        margin-top: 4px;
        color: #667085;
        font-size: 12px;
        line-height: 1.3;
        font-weight: 700;
    }

.rv-help-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
}

@media(max-width:992px) {
    .rv-help-hero,
    .rv-help-layout {
        grid-template-columns: 1fr;
    }

    .rv-help-info-card {
        position: static;
    }
}

@media(max-width:768px) {
    .rv-help-page {
        padding: 18px 10px 42px;
    }

    .rv-help-hero-main,
    .rv-help-form-card,
    .rv-help-side-card,
    .rv-help-info-card {
        border-radius: 18px;
    }

    .rv-help-hero-main {
        padding: 26px 20px;
    }

        .rv-help-hero-main h1 {
            font-size: 30px;
        }

        .rv-help-hero-main p {
            font-size: 16px;
        }

    .rv-help-form-card {
        padding: 18px;
    }

    .rv-help-form-head h2 {
        font-size: 22px;
    }

    .rv-help-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rv-help-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .rv-help-btn-primary,
    .rv-help-btn-outline {
        width: 100%;
    }
}
/* =========================================================
   ADMINISTRACIÓN - CARGA MASIVA DE VOUCHERS
========================================================= */

.rv-admin-upload-page {
    width: 100%;
    min-height: calc(100vh - 90px);
    padding: 38px 24px 60px;
    background: #f4f7fb;
}

.rv-admin-upload-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.rv-admin-upload-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 26px;
    box-shadow: 0 18px 48px rgba(15, 35, 65, 0.09);
}

/* CABECERA */

.rv-admin-upload-header {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 38px 42px;
    color: #ffffff;
    background: radial-gradient( circle at 90% 10%, rgba(255, 255, 255, 0.16), transparent 34% ), linear-gradient(135deg, #071a44 0%, #0b84d8 100%);
}

.rv-admin-upload-header-icon {
    display: flex;
    flex: 0 0 70px;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    font-size: 34px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.rv-admin-upload-header-text {
    min-width: 0;
}

.rv-admin-upload-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 10px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.rv-admin-upload-header h1 {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
}

.rv-admin-upload-header p {
    max-width: 780px;
    margin: 14px 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

    .rv-admin-upload-header p strong {
        font-weight: 800;
        color: #ffffff;
    }

/* CUERPO */

.rv-admin-upload-body {
    padding: 34px 42px 40px;
}

.rv-admin-file-input,
.rv-admin-hidden-button,
.rv-admin-hidden-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* INFORMACIÓN DEL ARCHIVO */

.rv-admin-file-information {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 92px;
    margin-bottom: 26px;
    padding: 18px 20px;
    background: #f8fafc;
    border: 1px dashed #cbd6e4;
    border-radius: 18px;
}

.rv-admin-file-information-icon {
    display: flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 25px;
    color: #15803d;
    background: #dcfce7;
    border-radius: 15px;
}

.rv-admin-file-information-text {
    min-width: 0;
}

.rv-admin-file-information-title {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #64748b;
}

.rv-admin-file-name {
    display: block;
    max-width: 100%;
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #132342;
}

/* BOTONES */

.rv-admin-upload-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

.rv-admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    min-height: 50px;
    padding: 13px 24px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    border: 0;
    border-radius: 13px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

    .rv-admin-button:hover:not(:disabled) {
        transform: translateY(-2px);
    }

    .rv-admin-button:active:not(:disabled) {
        transform: translateY(0);
    }

/* BOTÓN SELECCIONAR */

.rv-admin-button-select {
    color: #ffffff;
    background: linear-gradient(135deg, #0b84d8, #086bb3);
    box-shadow: 0 10px 24px rgba(11, 132, 216, 0.25);
}

    .rv-admin-button-select:hover {
        color: #ffffff;
        background: linear-gradient(135deg, #0876c2, #075e9e);
        box-shadow: 0 14px 28px rgba(11, 132, 216, 0.31);
    }

/* BOTÓN GUARDAR */

.rv-admin-button-save {
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.23);
}

    .rv-admin-button-save:hover:not(:disabled) {
        color: #ffffff;
        background: linear-gradient(135deg, #158f43, #116c35);
        box-shadow: 0 14px 28px rgba(22, 163, 74, 0.29);
    }

/* BOTÓN DESHABILITADO */

.rv-admin-button:disabled,
.rv-admin-button[disabled] {
    color: #8c9aab;
    cursor: not-allowed;
    background: #e5eaf0;
    box-shadow: none;
    opacity: 1;
}

/* VISTA PREVIA */

.rv-admin-preview-section {
    padding: 32px 42px 42px;
    border-top: 1px solid #e9eef5;
}

.rv-admin-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
}

.rv-admin-preview-label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #16a34a;
}

.rv-admin-preview-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    color: #132342;
}

.rv-admin-preview-header p {
    margin: 7px 0 0;
    font-size: 15px;
    line-height: 1.5;
    color: #66758a;
}

.rv-admin-preview-status {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 800;
    color: #15803d;
    background: #dcfce7;
    border-radius: 999px;
}

    .rv-admin-preview-status i {
        font-size: 16px;
    }

.rv-admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e1e7ef;
    border-radius: 16px;
}

.rv-admin-preview-table {
    width: 100%;
    min-width: 620px;
    margin: 0;
    border-collapse: collapse;
    background: #ffffff;
}

    .rv-admin-preview-table th {
        padding: 15px 18px;
        font-size: 13px;
        font-weight: 800;
        text-align: center;
        color: #ffffff;
        background: #132342;
        border: 0;
    }

    .rv-admin-preview-table td {
        padding: 14px 18px;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        color: #344258;
        border-bottom: 1px solid #edf1f5;
    }

    .rv-admin-preview-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .rv-admin-preview-table tbody tr:nth-child(even) {
        background: #f8fafc;
    }

    .rv-admin-preview-table tbody tr:hover {
        background: #eef7fd;
    }

/* RESPONSIVE */

@media (max-width: 768px) {

    .rv-admin-upload-page {
        padding: 22px 14px 40px;
    }

    .rv-admin-upload-card {
        border-radius: 20px;
    }

    .rv-admin-upload-header {
        flex-direction: column;
        gap: 18px;
        padding: 28px 24px;
    }

    .rv-admin-upload-header-icon {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        font-size: 27px;
        border-radius: 17px;
    }

    .rv-admin-upload-header h1 {
        font-size: 29px;
    }

    .rv-admin-upload-header p {
        font-size: 15px;
    }

    .rv-admin-upload-body,
    .rv-admin-preview-section {
        padding: 26px 22px 30px;
    }

    .rv-admin-file-information {
        align-items: flex-start;
    }

    .rv-admin-file-name {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .rv-admin-upload-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .rv-admin-button {
        width: 100%;
        min-width: 0;
    }

    .rv-admin-preview-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {

    .rv-admin-upload-header,
    .rv-admin-upload-body,
    .rv-admin-preview-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rv-admin-file-information {
        gap: 13px;
        padding: 16px;
    }

    .rv-admin-file-information-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}

/* =========================================================
   AJUSTE FINAL - PRIMERA SECCIÓN DEL DASHBOARD MÁS COMPACTA
   Este bloque debe permanecer al final del archivo.
   Solo modifica bienvenida + saldo; no altera la sección voucher.
========================================================= */

.rv-dash-hero-grid {
    display: grid !important;
    grid-template-columns: 265px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: stretch !important;
    margin-bottom: 18px !important;
}

    /* TARJETA DE BIENVENIDA */

    .rv-dash-hero-grid .rv-dash-welcome-card {
        min-height: 210px !important;
        height: 210px !important;
        padding: 26px 26px !important;
        border-radius: 14px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

        .rv-dash-hero-grid .rv-dash-welcome-card h1 {
            margin: 0 0 12px !important;
            font-size: 27px !important;
            line-height: 1.1 !important;
            font-weight: 900 !important;
        }

        .rv-dash-hero-grid .rv-dash-welcome-card p {
            max-width: 100% !important;
            margin: 0 !important;
            font-size: 16px !important;
            line-height: 1.4 !important;
            font-weight: 500 !important;
        }

    /* TARJETA DE SALDO */

    .rv-dash-hero-grid .rv-dash-balance-card {
        min-height: 210px !important;
        height: 210px !important;
        padding: 22px 30px 22px 34px !important;
        grid-template-columns: minmax(250px, 1fr) 250px !important;
        gap: 20px !important;
        align-items: center !important;
        border-radius: 14px !important;
    }

    .rv-dash-hero-grid .rv-dash-balance-info {
        position: relative !important;
        z-index: 2 !important;
    }

        .rv-dash-hero-grid .rv-dash-balance-info > span {
            margin-bottom: 4px !important;
            font-size: 16px !important;
            line-height: 1.2 !important;
        }

        .rv-dash-hero-grid .rv-dash-balance-info > strong {
            font-size: 48px !important;
            line-height: .9 !important;
            letter-spacing: -1px !important;
        }

        .rv-dash-hero-grid .rv-dash-balance-info > small {
            margin-top: 5px !important;
            font-size: 21px !important;
            line-height: 1 !important;
        }

        .rv-dash-hero-grid .rv-dash-balance-info > em {
            display: none !important;
        }

    .rv-dash-hero-grid .rv-dash-explore-btn {
        width: 255px !important;
        max-width: 100% !important;
        height: 50px !important;
        margin-top: 12px !important;
        padding: 0 18px !important;
        gap: 12px !important;
        border-radius: 9px !important;
        font-size: 15px !important;
    }

    /* REGALO MÁS PEQUEÑO PARA REDUCIR ALTURA */

    .rv-dash-hero-grid .rv-dash-gift-box {
        height: 100% !important;
        min-width: 0 !important;
        justify-content: flex-end !important;
        overflow: visible !important;
    }

        .rv-dash-hero-grid .rv-dash-gift-box img {
            width: 230px !important;
            max-width: 100% !important;
            max-height: 185px !important;
            object-fit: contain !important;
            filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .2)) !important;
        }

/* TABLET */

@media (max-width: 992px) {

    .rv-dash-hero-grid {
        grid-template-columns: 230px minmax(0, 1fr) !important;
    }

        .rv-dash-hero-grid .rv-dash-welcome-card,
        .rv-dash-hero-grid .rv-dash-balance-card {
            min-height: 200px !important;
            height: 200px !important;
        }

        .rv-dash-hero-grid .rv-dash-balance-card {
            grid-template-columns: minmax(220px, 1fr) 190px !important;
            padding: 20px 24px !important;
        }

        .rv-dash-hero-grid .rv-dash-gift-box img {
            width: 190px !important;
            max-height: 165px !important;
        }

        .rv-dash-hero-grid .rv-dash-explore-btn {
            width: 225px !important;
        }
}

/* MÓVIL */

@media (max-width: 768px) {

    .rv-dash-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

        .rv-dash-hero-grid .rv-dash-welcome-card {
            min-height: auto !important;
            height: auto !important;
            padding: 20px 22px !important;
        }

            .rv-dash-hero-grid .rv-dash-welcome-card h1 {
                font-size: 25px !important;
                margin-bottom: 8px !important;
            }

            .rv-dash-hero-grid .rv-dash-welcome-card p {
                font-size: 15px !important;
            }

        .rv-dash-hero-grid .rv-dash-balance-card {
            min-height: 190px !important;
            height: 190px !important;
            grid-template-columns: minmax(0, 1fr) 150px !important;
            gap: 10px !important;
            padding: 20px 22px !important;
        }

        .rv-dash-hero-grid .rv-dash-balance-info > strong {
            font-size: 43px !important;
        }

        .rv-dash-hero-grid .rv-dash-balance-info > small {
            font-size: 18px !important;
        }

        .rv-dash-hero-grid .rv-dash-explore-btn {
            width: 210px !important;
            height: 46px !important;
            font-size: 14px !important;
        }

        .rv-dash-hero-grid .rv-dash-gift-box img {
            width: 155px !important;
            max-height: 145px !important;
        }
}

@media (max-width: 520px) {

    .rv-dash-hero-grid .rv-dash-balance-card {
        min-height: 180px !important;
        height: 180px !important;
        grid-template-columns: minmax(0, 1fr) 105px !important;
        padding: 18px !important;
    }

    .rv-dash-hero-grid .rv-dash-balance-info > span {
        font-size: 14px !important;
    }

    .rv-dash-hero-grid .rv-dash-balance-info > strong {
        font-size: 39px !important;
    }

    .rv-dash-hero-grid .rv-dash-balance-info > small {
        font-size: 17px !important;
    }

    .rv-dash-hero-grid .rv-dash-explore-btn {
        width: 190px !important;
        height: 43px !important;
        padding: 0 12px !important;
        gap: 8px !important;
        font-size: 13px !important;
    }

    .rv-dash-hero-grid .rv-dash-gift-box img {
        width: 112px !important;
        max-height: 120px !important;
    }
}

/* =========================================================
   AJUSTE FINAL - BOTÓN EXPLORAR PREMIOS
   Evita que las reglas del saldo afecten el texto del LinkButton.
========================================================= */

.rv-dash-balance-info .rv-dash-explore-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    color: #0b5cff !important;
    text-decoration: none !important;
}

    .rv-dash-balance-info .rv-dash-explore-btn:hover,
    .rv-dash-balance-info .rv-dash-explore-btn:focus,
    .rv-dash-balance-info .rv-dash-explore-btn:active {
        color: #0b5cff !important;
        text-decoration: none !important;
    }

    .rv-dash-balance-info .rv-dash-explore-btn > span {
        display: inline-block !important;
        flex: 1 1 auto !important;
        margin: 0 !important;
        color: #0b5cff !important;
        font-size: inherit !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    .rv-dash-balance-info .rv-dash-explore-btn > i {
        flex: 0 0 auto !important;
        margin: 0 !important;
        color: #0b5cff !important;
        line-height: 1 !important;
    }

    .rv-dash-balance-info .rv-dash-explore-btn > .fa-arrow-right {
        margin-left: 0 !important;
    }
    /**Pantalla de confirmacion**/

.rv-confirm-page {
    background: #f5f7fb;
    padding-bottom: 48px;
}

.rv-confirm-banner {
    display: block;
    width: 100%;
    height: auto;
}

.rv-confirm-container {
    width: calc(100% - 32px);
    max-width: 1040px;
    margin: -24px auto 0;
    position: relative;
    z-index: 2;
}

.rv-confirm-card {
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
    margin-bottom: 20px;
    overflow: hidden;
}

.rv-confirm-success {
    padding: 34px 28px;
    text-align: center;
}

.rv-confirm-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eaf8ef;
    color: #19964b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.rv-confirm-title {
    margin: 0 0 10px;
    color: #172033;
    font-size: 28px;
    font-weight: 700;
}

.rv-confirm-text {
    margin: 0;
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.55;
}

.rv-confirm-folio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #eef5ff;
    color: #0b5cab;
    font-size: 15px;
    font-weight: 600;
}

.rv-confirm-section {
    padding: 24px 26px;
}

.rv-confirm-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.rv-confirm-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef5ff;
    color: #0b5cab;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex: 0 0 42px;
}

.rv-confirm-section-title {
    margin: 0;
    color: #172033;
    font-size: 20px;
    font-weight: 700;
}

.rv-confirm-section-subtitle {
    margin: 3px 0 0;
    color: #6b7280;
    font-size: 14px;
}

.rv-confirm-email {
    padding: 15px 18px;
    border: 1px solid #dce7f5;
    border-radius: 12px;
    background: #f8fbff;
    color: #172033;
    font-size: 16px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.rv-voucher-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e5e9f2;
    border-radius: 12px;
}

.rv-voucher-table {
    width: 100%;
    min-width: 520px;
    margin: 0;
    border-collapse: collapse;
    background: #fff;
}

    .rv-voucher-table th {
        padding: 14px 16px;
        background: #0b5cab;
        color: #fff;
        text-align: left;
        font-size: 14px;
        font-weight: 700;
        border: none;
    }

        .rv-voucher-table th:last-child {
            text-align: right;
        }

    .rv-voucher-table td {
        padding: 14px 16px;
        border-top: 1px solid #edf0f5;
        color: #273244;
        font-size: 15px;
    }

        .rv-voucher-table td:last-child {
            text-align: right;
            font-weight: 700;
            color: #0b5cab;
        }

    .rv-voucher-table tr:nth-child(even) td {
        background: #fafbfc;
    }

.rv-empty-table {
    padding: 24px;
    text-align: center;
    color: #6b7280;
}

.rv-confirm-error {
    margin: 0;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff4f4;
    color: #b42318;
    font-size: 14px;
}

.rv-confirm-redirect {
    margin-top: 18px;
    color: #7a8493;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 767px) {
    .rv-confirm-container {
        width: calc(100% - 20px);
        margin-top: -10px;
    }

    .rv-confirm-success,
    .rv-confirm-section {
        padding: 24px 18px;
    }

    .rv-confirm-title {
        font-size: 23px;
    }

    .rv-confirm-section-title {
        font-size: 18px;
    }
}