﻿: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: 22px;
    --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;
    }
}