/* Estilos para Chollos shorts (estilo TikTok) */

:root {
    --short-bg: #000;
    --short-text: #fff;
    --accent-red: #E30613;
}

/* Basic Setup */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow: hidden;
}

body.shorts-page {
    /* Evitar scroll normal del body */
    height: 100dvh;
    /* dvh for iOS Safari */
    height: 100vh;
    /* fallback */
    width: 100vw;
    overflow: hidden;
    touch-action: pan-y;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Scroll Snap Container */
.shorts-main-container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    /* scroll-behavior: smooth; REMOVED for snappier feel */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.shorts-main-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.short-section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Layout Structure --- */
.short-layout-container {
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Video Column */
.short-video-column {
    flex: 1;
    height: 100%;
    position: relative;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.short-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 500px;
    /* Estilo móvil incluso en desktop */
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.short-video-wrapper iframe {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px) !important;
    border: none;
    pointer-events: none;
}

.short-video-wrapper {
    cursor: pointer;
    position: relative;
}

.play-pause-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-pause-indicator.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: indicatorPulse 0.5s ease-out forwards;
}

@keyframes indicatorPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}


/* Overlays */
.short-overlay-top {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    pointer-events: none;
    /* Let clicks pass through if empty */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    padding: 20px 15px 40px;
    top: 0;
}

.header-logo,
.header-actions {
    pointer-events: auto;
    /* Re-enable for content */
    display: flex;
    align-items: center;
}

.shorts-logo {
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    display: block;
}

.header-actions {
    gap: 12px;
}

.header-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    margin: 0;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-btn:active {
    transform: scale(0.9);
}

/* Sound Onboarding Hint */
.sound-toggle.pulse-onboarding {
    animation: buttonPulse 1.5s infinite;
    background: var(--accent-red) !important;
    border-color: white !important;
    box-shadow: 0 0 15px var(--accent-red);
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(227, 6, 19, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0);
    }
}

.sound-hint-tooltip {
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--accent-red);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 30;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.sound-hint-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--accent-red);
}

.sound-hint-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.short-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 20px 30px;
    padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    color: white;
    z-index: 5;
    pointer-events: none;
    box-sizing: border-box;
}

.short-info {
    max-width: 85%;
    pointer-events: auto;
    overflow-x: hidden;
}

.short-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    word-break: break-word;
    overflow-wrap: break-word;
}

.short-item-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.price-info-icon {
    font-size: 1.2rem;
    color: #3498db;
    cursor: pointer;
    margin-left: 5px;
    padding: 5px;
    transition: transform 0.2s;
}

.price-info-icon:hover {
    transform: scale(1.2);
    color: #2980b9;
}

.short-price-now {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.short-price-old {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.9rem;
}

.short-discount-pill {
    background: var(--accent-red);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Action Buttons (Right) */
.short-actions-right {
    position: absolute;
    right: 15px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Reduced gap to fit more buttons */
    z-index: 10;
    align-items: center;
}

.short-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.short-action-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 5px;
    transition: transform 0.2s;
}

.short-action-btn:hover .short-action-icon {
    transform: scale(1.1);
}

.short-action-label {
    font-size: 0.75rem;
    font-weight: 600;
}

/* CTA Button */
.short-cta-btn {
    background: var(--accent-red);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    pointer-events: auto;
    transition: transform 0.2s;
}

.short-cta-btn:hover {
    transform: scale(1.05);
}

.short-cta-split {
    display: flex;
    width: 100%;
    margin-top: 10px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    pointer-events: auto;
}

.short-cta-main {
    flex: 3;
    /* 75% */
    background: #E30613;
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.short-cta-secondary {
    flex: 1;
    /* 25% */
    background: #c40510;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* Loading state - Dynamic Animated Loader */
.shorts-loader {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a0a0f;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}

/* Partículas flotantes */
.loader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.loader-particles .particle {
    position: absolute;
    bottom: -50px;
    left: var(--x, 50%);
    font-size: 24px;
    animation: floatUp 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

/* Glow de fondo animado */
.loader-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

/* Logo con pulso */
.loader-logo {
    animation: logoPulse 1.5s ease-in-out infinite;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Spinner container con emoji centro */
.loader-spinner-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    z-index: 2;
}

.loader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(227, 6, 19, 0.15);
    border-top-color: #E30613;
    border-right-color: rgba(227, 6, 19, 0.5);
    border-radius: 50%;
    animation: spinnerRotate 1.2s linear infinite;
}

@keyframes spinnerRotate {
    to {
        transform: rotate(360deg);
    }
}

/* Emoji central animado */
.loader-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    animation: emojiBounce 0.8s ease-in-out infinite;
}

@keyframes emojiBounce {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 8px));
    }
}

/* Texto principal */
.loader-main-text {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0 0 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 15px rgba(227, 6, 19, 0.5);
    transition: opacity 0.15s ease;
}

.loader-main-text.fade-text {
    opacity: 0;
}

/* Barra de progreso */
.loader-progress-container {
    width: 70%;
    max-width: 280px;
    margin-bottom: 18px;
    z-index: 2;
}

.loader-progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #E30613, #ff4757);
    border-radius: 3px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(227, 6, 19, 0.6);
}

.loader-progress-text {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Estadística dinámica */
.loader-stat {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    z-index: 2;
}

/* Mensaje de anticipación */
.loader-anticipation {
    font-size: 0.85rem;
    color: #FFD700;
    font-weight: 500;
    margin-bottom: 20px;
    z-index: 2;
    animation: anticipationPulse 2s ease-in-out infinite;
}

@keyframes anticipationPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Dots animados */
.loader-dots {
    display: flex;
    gap: 8px;
    z-index: 2;
}

.loader-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E30613;
    animation: dotBlink 1.2s ease-in-out infinite;
}

.loader-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.loader-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade out del loader */
.shorts-loader.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .short-video-wrapper {
        width: 100%;
        max-width: none;
    }

    .desktop-only {
        display: none !important;
    }
}

/* ===== DESKTOP LAYOUT ===== */
@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }

    .short-layout-container {
        flex-direction: row;
    }

    .short-video-column {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .short-video-wrapper {
        width: auto;
        height: calc(100% - 40px);
        max-width: 400px;
        aspect-ratio: 9/16;
        border-radius: 12px;
        overflow: hidden;
    }

    /* Desktop Info Column */
    .short-info-column {
        flex: 0 0 45%;
        max-width: 45%;
        height: 100%;
        background: #0a0a0a;
        border-left: 1px solid #222;
        display: flex;
        flex-direction: column;
        padding: 25px;
        box-sizing: border-box;
        overflow-y: auto;
    }

    .desktop-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #222;
        margin-bottom: 20px;
    }

    .desktop-user-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .desktop-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: contain;
        background: #111;
        padding: 5px;
    }

    .desktop-user-meta {
        display: flex;
        flex-direction: column;
    }

    .desktop-username {
        font-weight: 700;
        font-size: 1rem;
        color: white;
    }

    .desktop-time {
        font-size: 0.8rem;
        color: #666;
    }

    .desktop-close-btn {
        color: #666;
        font-size: 1.5rem;
        text-decoration: none;
        transition: color 0.2s;
    }

    .desktop-close-btn:hover {
        color: white;
    }

    .desktop-main-content {
        flex: 1;
    }

    .desktop-title-link {
        text-decoration: none;
        color: white !important;
        /* Force override common link color */
    }

    .desktop-title {
        font-size: 1.3rem;
        line-height: 1.4;
        margin: 0 0 15px 0;
        font-weight: 600;
        color: white;
    }

    .desktop-prices {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
        font-size: 1.3rem;
    }

    .desktop-prices .short-price-now {
        font-size: 1.5rem;
    }

    .desktop-actions-bar {
        display: flex;
        justify-content: space-around;
        padding: 18px 10px;
        background: #151515;
        border-radius: 12px;
        margin-bottom: 25px;
    }

    .desktop-action-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        color: #aaa;
        text-decoration: none;
        gap: 6px;
        font-size: 0.85rem;
        transition: color 0.2s;
    }

    .desktop-action-item:hover {
        color: white;
    }

    .desktop-action-item .icon-circle {
        width: 45px;
        height: 45px;
        background: #252525;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.1rem;
        transition: all 0.2s;
    }

    .desktop-action-item:hover .icon-circle {
        background: #333;
    }

    .desktop-action-item.voted,
    .desktop-action-item.voted .icon-circle {
        color: var(--accent-red);
    }

    .desktop-cta-container {
        margin: 20px 0 30px;
    }

    .desktop-cta-split {
        width: 100%;
    }

    .desktop-cta-btn {
        display: block;
        width: 100%;
        background: var(--accent-red);
        color: white;
        text-align: center;
        padding: 16px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.2s;
    }

    .desktop-cta-btn:hover {
        background: #ff1f2d;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(227, 6, 19, 0.4);
    }

    .desktop-comments-preview {
        background: #111;
        border-radius: 12px;
        padding: 18px;
        margin-top: auto;
    }

    .desktop-comments-header {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #888;
    }

    .desktop-comment-placeholder {
        color: #555;
        font-size: 0.9rem;
        text-align: center;
        padding: 15px 0;
    }

    .desktop-comment-placeholder p {
        margin: 0;
    }
}

/* Favorite Button Styles - Overriding global defaults for shorts */
.shorts-page .favorite-btn {
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    color: white !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
}

.shorts-page .favorite-btn .short-action-icon,
.shorts-page .favorite-btn .icon-circle {
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(5px) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 5px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.shorts-page .favorite-btn .short-action-label,
.shorts-page .favorite-btn strong {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: white !important;
    text-transform: none !important;
    margin-top: 0 !important;
}

.shorts-page .favorite-btn.active .short-action-icon,
.shorts-page .favorite-btn.active .icon-circle {
    background: #E30613 !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(227, 6, 19, 0.5) !important;
    border-color: #E30613 !important;
}

.shorts-page .favorite-btn.active .short-action-label,
.shorts-page .favorite-btn.active strong {
    color: #E30613 !important;
}

.shorts-page .favorite-btn i {
    font-size: 20px !important;
    font-weight: 900 !important;
}

@keyframes bookmarkPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.shorts-page .favorite-btn.active i {
    animation: bookmarkPop 0.4s ease-out;
}

/* ===== NEXT CHOLLO OVERLAY (cuando el video termina) ===== */
.next-chollo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.next-chollo-overlay.visible {
    opacity: 1;
}

.next-chollo-content {
    text-align: center;
    padding: 30px;
    max-width: 90%;
}

.next-chollo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E30613 0%, #ff4757 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    animation: bounceDown 1s ease infinite;
    box-shadow: 0 5px 25px rgba(227, 6, 19, 0.5);
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.next-chollo-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-chollo-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px;
    line-height: 1.4;
}

.next-chollo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #E30613 0%, #ff1f2d 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(227, 6, 19, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-chollo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(227, 6, 19, 0.6);
}

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

.replay-btn {
    display: block;
    margin: 20px auto 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.replay-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.replay-btn i {
    margin-right: 6px;
}

/* Ajuste para móviles */
@media (max-width: 767px) {
    .next-chollo-content {
        padding: 20px;
    }

    .next-chollo-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .next-chollo-content h3 {
        font-size: 1.3rem;
    }

    .next-chollo-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}