/* /Pages/Clientes/MisCompras.razor.rz.scp.css */
/* ==============================================
   MisCompras.razor.css - VERSIÓN FINAL PULIDA
   ============================================== */

/* --- AJUSTES PARA ESCRITORIO (PC) --- */

/* Alineación vertical central en celdas */
.contenedor-tabla[b-gz3ifn2x1h]  .mud-table-cell {
    vertical-align: middle !important;
}

/* Forzar títulos financieros a la derecha */
.contenedor-tabla[b-gz3ifn2x1h]  .header-right .mud-table-cell-content {
    justify-content: flex-end !important;
}

/* Tarjetas de resumen (KPIs) */
.kpi-card[b-gz3ifn2x1h] {
    border-radius: 12px;
    flex: 1 1 160px; /* Flexibilidad para filas en pantallas pequeñas */
    transition: transform 0.2s;
}

    .kpi-card:hover[b-gz3ifn2x1h] {
        transform: translateY(-4px);
    }

/* --- 📱 MODO CELULAR (TARJETAS ELEGANTES) --- */

@media (max-width: 960px) {
    /* Ocultamos encabezados de tabla originales */
    .contenedor-tabla[b-gz3ifn2x1h]  .mud-table-head {
        display: none !important;
    }

    .contenedor-tabla[b-gz3ifn2x1h]  .mud-table-root {
        border: none !important;
    }

    /* Cada fila se transforma en una tarjeta (Card) */
    .contenedor-tabla[b-gz3ifn2x1h]  .mud-table-row {
        display: flex;
        flex-direction: column;
        background-color: var(--mud-palette-surface);
        border-radius: 16px; /* Bordes más redondeados tipo iOS */
        margin-bottom: 12px;
        padding: 8px 16px; /* Padding optimizado */
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid var(--mud-palette-divider);
    }

    /* Celdas individuales dentro de la tarjeta */
    .contenedor-tabla[b-gz3ifn2x1h]  .mud-table-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed var(--mud-palette-divider) !important;
        padding: 6px 0 !important; /* Bisturí: Espaciado más compacto */
    }

        /* Quitamos la línea punteada a la última celda (normalmente el botón video) */
        .contenedor-tabla[b-gz3ifn2x1h]  .mud-table-cell:last-child {
            border-bottom: none !important;
        }

        /* Etiquetas de la izquierda (FECHA, LOTE, etc.) */
        .contenedor-tabla[b-gz3ifn2x1h]  .mud-table-cell::before {
            content: attr(data-label);
            font-weight: 700;
            color: var(--mud-palette-primary);
            font-size: 0.75rem; /* Bisturí: Tamaño sutil para resaltar el valor */
            text-transform: uppercase;
            letter-spacing: 0.5px;
            flex-shrink: 0;
            margin-right: 15px;
        }

        /* Contenedor de los valores a la derecha */
        .contenedor-tabla[b-gz3ifn2x1h]  .mud-table-cell .mud-table-cell-content {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
            width: 100%;
            font-size: 0.9rem;
        }

    /* 🚨 Celda de Acción (Botón Video) centrada al final */
    .contenedor-tabla[b-gz3ifn2x1h]  .action-cell {
        justify-content: center !important;
        padding-top: 12px !important;
        padding-bottom: 4px !important;
        width: 100% !important;
    }

        /* Ocultamos la etiqueta "VIDEO" en la celda de acción */
        .contenedor-tabla[b-gz3ifn2x1h]  .action-cell::before {
            display: none !important;
        }

        /* Forzamos el centrado del icono */
        .contenedor-tabla[b-gz3ifn2x1h]  .action-cell .mud-table-cell-content {
            display: flex !important;
            flex-direction: row !important;
            justify-content: center !important;
            align-items: center !important;
            width: 100% !important;
        }

    /* Ajuste para que la barra de búsqueda no flote raro */
    .contenedor-tabla[b-gz3ifn2x1h]  .mud-toolbar {
        padding: 0 8px !important;
        height: auto !important;
        min-height: 64px !important;
    }
}
/* /Pages/PujaSubasta/ClienteDashboard.razor.rz.scp.css */
/* ==========================================
   1. ANIMACIONES DE INTERFAZ
   ========================================== */
.animacion-latido[b-r461ldh1j4] {
    animation: latido-b-r461ldh1j4 1.5s infinite;
}

@keyframes latido-b-r461ldh1j4 {
    0%, 100% {
        transform: scale(1);
    }

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

.animacion-entrada[b-r461ldh1j4] {
    animation: fade-in-up-b-r461ldh1j4 0.5s ease-out;
}

@keyframes fade-in-up-b-r461ldh1j4 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.bounce-icon[b-r461ldh1j4] {
    animation: bounce-b-r461ldh1j4 1s infinite;
}

@keyframes bounce-b-r461ldh1j4 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.flash-icon[b-r461ldh1j4] {
    animation: blink-red-b-r461ldh1j4 2s infinite;
}

@keyframes blink-red-b-r461ldh1j4 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ==========================================
   2. BARRA DE CONTROL VIDEO (GLASSMORPHISM)
   ========================================== */
.punto-live[b-r461ldh1j4] {
    width: 8px;
    height: 8px;
    background-color: #ff5252;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff5252;
    animation: pulso-led-b-r461ldh1j4 1.5s infinite;
}

@keyframes pulso-led-b-r461ldh1j4 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animacion-aparicion-suave[b-r461ldh1j4] {
    animation: slide-in-left-b-r461ldh1j4 0.3s ease-out;
}

@keyframes slide-in-left-b-r461ldh1j4 {
    from {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 1;
        width: 70px;
    }
}

/* ==========================================
   3. BOTÓN DE PUJA PREMIUM
   ========================================== */
.boton-puja-premium[b-r461ldh1j4] {
    background: linear-gradient(to right, #4ade80, #22c55e, #16a34a) !important;
    box-shadow: 0 8px 25px -5px rgba(22, 163, 74, 0.6) !important;
    border: none !important;
    color: white !important;
    border-radius: 16px;
    width: 100%;
    min-height: 100px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .boton-puja-premium:hover[b-r461ldh1j4] {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px -5px rgba(22, 163, 74, 0.8) !important;
    }

.boton-confirmar-premium[b-r461ldh1j4] {
    background: #064e3b !important;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.3) !important;
}

.raqueta-badge-nativa[b-r461ldh1j4] {
    position: absolute;
    top: 4px;
    right: 10px;
    background-color: transparent !important;
    color: #ffffff !important;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* ==========================================
   4. AJUSTES TÉCNICOS (OVERRIDE MUD)
   ========================================== */
.mud-slider-root.mud-slider-sm[b-r461ldh1j4] {
    height: 4px !important;
}

.mud-slider-thumb[b-r461ldh1j4] {
    width: 12px !important;
    height: 12px !important;
    margin-top: -4px !important;
}
/* /Pages/PujaSubasta/PujaSubasta.razor.rz.scp.css */
/* Contenedor del video responsive */
.video-container[b-vqifg3v604] {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    background-color: black;
}

    .video-container iframe[b-vqifg3v604], .video-container video[b-vqifg3v604] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Para que el contenido no quede tapado por la barra inferior */
.espacio-inferior[b-vqifg3v604] {
    padding-bottom: 100px;
}

/* Estilo para el precio gigante */
.precio-gigante[b-vqifg3v604] {
    font-size: 3rem;
    font-weight: 900;
    color: #1b5e20; /* Verde oscuro */
    text-align: center;
    letter-spacing: -1px;
}
/* /Pages/Subastas/DirectorSubasta.razor.rz.scp.css */
.animacion-parpadeo-suave[b-po9qxhvtmw] {
    animation: pulso-texto-b-po9qxhvtmw 1.5s infinite alternate;
}

@keyframes pulso-texto-b-po9qxhvtmw {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

.animacion-panico[b-po9qxhvtmw] {
    animation: parpadeoRojo-b-po9qxhvtmw 1s infinite;
}

@keyframes parpadeoRojo-b-po9qxhvtmw {
    0% {
        background-color: #d32f2f;
    }

    50% {
        background-color: #b71c1c;
        box-shadow: 0 0 15px red;
    }

    100% {
        background-color: #d32f2f;
    }
}

.punto-en-vivo[b-po9qxhvtmw] {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 5px;
    animation: parpadeo-b-po9qxhvtmw 1s infinite;
}

@keyframes parpadeo-b-po9qxhvtmw {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.animacion-pulso-lento[b-po9qxhvtmw] {
    animation: girar-reloj-b-po9qxhvtmw 3s infinite ease-in-out;
}

@keyframes girar-reloj-b-po9qxhvtmw {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }

    40% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
        filter: drop-shadow(0 0 15px var(--mud-palette-error));
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
        filter: drop-shadow(0 0 15px var(--mud-palette-error));
    }

    90% {
        transform: scale(1) rotate(360deg);
        opacity: 0.8;
    }

    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.8;
    }
}
/* /Pages/Subastas/MartilloDashboard.razor.rz.scp.css */
/* =================================================
   ESTILOS TÁCTICOS - PUESTO DE COMANDO MARTILLO
   (SOPORTE PARA MODO CLARO Y OSCURO MUD-BLAZOR)
   ================================================= */

.tablero-martillo[b-3ohe3enzdw] {
    background-color: var(--mud-palette-background) !important;
    color: var(--mud-palette-text-primary);
    height: calc(100vh - 64px);
    width: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

/* === ZONA 1: INFO LOTE === */
[b-3ohe3enzdw] .z1-label {
    color: var(--mud-palette-text-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

[b-3ohe3enzdw] .z1-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--mud-palette-text-primary);
}

[b-3ohe3enzdw] .z1-lote-num {
    font-size: 8rem;
    font-weight: 950;
    line-height: 1;
    margin-top: 5px;
    color: var(--mud-palette-text-primary);
}

[b-3ohe3enzdw] .z1-proveedor {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--mud-palette-text-primary);
    text-transform: uppercase;
}

[b-3ohe3enzdw] .z1-promedio {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--mud-palette-warning);
    line-height: 1;
}

/* === LA RAQUETA SUPERIOR (ZONA CENTRAL) === */
[b-3ohe3enzdw] .raqueta-superior {
    font-size: 18rem !important; /* COLOSAL */
    font-weight: 950 !important;
    line-height: 0.9 !important;
    text-align: center;
    margin: 0 !important;
    font-family: 'Roboto Mono', monospace;
}

/* === EL PRECIO CENTRAL (ZONA CENTRAL) === */
[b-3ohe3enzdw] .precio-central {
    font-size: 14rem !important; /* EXTREMO */
    font-weight: 900 !important;
    line-height: 0.9 !important;
    letter-spacing: -4px !important;
    text-align: center;
    /* Color dinámico (Amarillo/Oro) */
    color: var(--mud-palette-warning) !important;
    text-shadow: 0 0 20px var(--mud-palette-warning-hover) !important;
    margin: 0 !important;
    font-family: 'Roboto Mono', monospace;
}

/* === PROYECCIÓN GIGANTE === */
[b-3ohe3enzdw] .proyeccion-valor-principal {
    font-size: 3.5rem !important;
    font-weight: 950 !important;
    font-family: 'Consolas', monospace;
    color: white; /* Siempre blanco porque su fondo (Azul/Verde oscuro) es estático */
    line-height: 1.1;
}

/* === COLORES NEÓN ADAPTATIVOS === */
[b-3ohe3enzdw] .texto-verde-neon {
    color: var(--mud-palette-success) !important;
    text-shadow: 0 0 35px var(--mud-palette-success-hover) !important;
}

[b-3ohe3enzdw] .texto-rojo-neon {
    color: var(--mud-palette-error) !important;
    text-shadow: 0 0 35px var(--mud-palette-error-hover) !important;
}

[b-3ohe3enzdw] .texto-cyan-neon {
    color: var(--mud-palette-info) !important;
    text-shadow: 0 0 35px var(--mud-palette-info-hover) !important;
}

/* === TEXTO DE NOMBRE === */
[b-3ohe3enzdw] .texto-nombre {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mud-palette-text-primary);
}

/* === DATOS === */
[b-3ohe3enzdw] .dato-duro {
    font-family: 'Consolas', 'Courier New', monospace;
    font-weight: bold;
}

/* === AVISOS === */
[b-3ohe3enzdw] .chip-alerta {
    background-color: var(--mud-palette-error) !important;
    color: white !important;
    font-weight: bold;
    animation: pulse-b-3ohe3enzdw 1.5s infinite;
    border-radius: 8px;
    padding: 6px 10px;
}

[b-3ohe3enzdw] .chip-ok {
    background-color: var(--mud-palette-success) !important;
    color: white !important;
    font-weight: 900;
    border: 2px solid var(--mud-palette-success-darken);
    border-radius: 8px;
    padding: 6px 10px;
}

/* === ANIMACIONES === */
[b-3ohe3enzdw] .animacion-latido {
    animation: latido-b-3ohe3enzdw 1.5s infinite;
}

@keyframes pulse-b-3ohe3enzdw {
    0% {
        box-shadow: 0 0 0 0 var(--mud-palette-error);
    }

    70% {
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes latido-b-3ohe3enzdw {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}
/* /Pages/Subastas/Viewer.razor.rz.scp.css */
/* ==========================================================================
   VIEWER / VIDEO WALL - DISEÑO BISTURÍ (Cero Descuadres)
   ========================================================================== */
.wall-container[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color: #0f0f0f;
    color: white;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.wall-header[b-ontbk947gk] {
    height: 8vh;
    background-color: #417543;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 3px solid #2d522e;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Sombra elegante */
}

.header-logo[b-ontbk947gk] {
    height: 5vh; /* Ocupa proporcionalmente el 50-60% de la barra de 8vh */
    max-height: 50px; /* Tope máximo de seguridad */
    object-fit: contain; /* Evita que el logo se estire o se deforme */
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.2)); /* Leve sombreado al logo blanco para que resalte más */
}

.wall-body[b-ontbk947gk] {
    height: 92vh;
    display: flex;
    flex-direction: row;
    width: 100%;
}

/* --- LADO IZQUIERDO: VIDEO (65%) --- */
.wall-video-section[b-ontbk947gk] {
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    border-right: 2px solid #222;
}

.video-frame[b-ontbk947gk] {
    flex-grow: 1;
    width: 100%;
    position: relative;
}

    .video-frame iframe[b-ontbk947gk] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* --- Footer Inferior del Video (Pesos) --- */
.video-footer[b-ontbk947gk] {
    height: 15vh;
    background-color: #141414;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-top: 2px solid #222;
    padding: 0 2vw; /* BISTURÍ: Un poco de margen a los lados para que respire */
}

.vf-item[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.vf-label[b-ontbk947gk] {
    color: #aaa;
    font-size: clamp(0.9rem, 1.8vh, 1.3rem);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif; /* Unificamos fuente */
    font-weight: 600;
}

.vf-value[b-ontbk947gk] {
    color: white;
    font-size: clamp(1.8rem, 3.8vh, 3.5rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1; /* Clave para que la fuente no genere un salto de línea muy alto que la empuje hacia abajo */
}

/* --- LADO DERECHO: DATOS (35%) --- */
.wall-data-section[b-ontbk947gk] {
    width: 35%;
    height: 100%;
    padding: 3vh 2vw; /* Mantenemos el padding relativo */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #111;
}

/* 1. Cabecera */
.wd-header[b-ontbk947gk] {
    text-align: center;
}

.wd-lote[b-ontbk947gk] {
    color: #4ade80; /* Verde Neón NRO DE LOTE */
    font-size: clamp(4rem, 8vh, 8rem);
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.wd-desc[b-ontbk947gk] {
    color: white; /* Descripcion Cantidad Animales - Tipo Animal */
    font-size: clamp(2rem, 4vh, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    margin: 1.5vh 0 0 0;
}

/* 2. Tarjeta de Precio */
.wd-price-card[b-ontbk947gk] {
    background-color: #1e1e1e;
    border-radius: 16px;
    padding: 3vh 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.wd-label[b-ontbk947gk] {
    color: #666;
    font-size: clamp(0.8rem, 1.5vh, 1.2rem);
    font-weight: 800;
    letter-spacing: 2px;
}

.wd-price-value[b-ontbk947gk] {
    color: #FFD600; /* Amarillo Oro  PRECIO */
    font-size: clamp(4rem, 12vh, 10rem);
    font-weight: 900; /* 🔥 BISTURÍ: Subimos a 900 para el máximo grosor */
    font-family: 'Poppins', sans-serif; /* Poppins puro */
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: 0 0 15px rgba(255, 214, 0, 0.3);
}

/* ==========================================================================
   🚨 Ajuste para el Ganador Gigante ( wd-status y wd-winner-paddle-giant )
   ========================================================================== */
.wd-status[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.5vh; /* Le damos aire con respecto al precio */
}

/* 🔥 Estilo para el número de raqueta MASIVO */
.wd-winner-paddle-giant[b-ontbk947gk] {
    /* 🔥 BISTURÍ: Reducimos drásticamente. Mínimo 1.8rem, Ideal 3.5vh, Máximo 3rem */
    font-size: clamp(1.8rem, 3.5vh, 3rem) !important;
    font-weight: 900 !important;
    color: #ffffff;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    /* Suavizamos también el resplandor para que no sea tan invasivo */
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
    text-transform: uppercase;
    margin-top: 4px; /* Un pelín de separación con el texto de "VA GANANDO" */
}

.pulse-price[b-ontbk947gk] {
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.3);
    border-color: #FFD600;
}

/* 3. Tarjeta Comparativa */
.wd-comp-card[b-ontbk947gk] {
    background-color: #1e1e1e;
    border-radius: 16px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.wd-comp-body[b-ontbk947gk] {
    display: flex;
    padding: 3vh 1vw;
    gap: 15px; /* Forzamos una separación de seguridad entre columnas */
}

.wd-comp-col[b-ontbk947gk] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0; /* Evita que la columna flex se desborde de su 50% */
}

/* Títulos ("Peso actual", "Con siguiente Puja") */
.wd-comp-title[b-ontbk947gk] {
    color: #4ade80; /* Verde */
    font-weight: 900;
    /* Cambiamos 'vh' por 'vw' y bajamos un poco el máximo para que quepa mejor */
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    margin-bottom: 2vh;
    text-align: center; /* 🔥 CLAVE: Si se rompe en dos líneas, se verá centrado y elegante */
    line-height: 1.1; /* Evita que las dos líneas queden súper separadas */
    width: 100%; /* Asegura que tome todo el espacio de su columna para centrarse bien */
}

/* Subtítulos ("x Animal", "x Lote") */
.wd-comp-sub[b-ontbk947gk] {
    color: #aaa;
    font-weight: 600;
    font-size: clamp(1rem, 1.8vh, 1.4rem); /* Ligeramente más legibles */
}

/* Valores Numéricos Proyectados */
.wd-comp-val[b-ontbk947gk] {
    color: white;
    font-weight: 900;
    font-size: clamp(1.4rem, 1.8vw, 2.8rem);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    white-space: nowrap; /* Evita que el precio se rompa en dos líneas */
}

.wd-comp-footer[b-ontbk947gk] {
    background-color: #141414;
    padding: 2.5vh; /* BISTURÍ: Un pelín más de espacio interior para que respire */
    text-align: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-top: 1px solid #333;
    color: #aaa;
    /* BISTURÍ: Subimos el tamaño base y máximo de la etiqueta "Puja Mínima:" */
    font-size: clamp(1.4rem, 2.5vh, 2rem);
}

.wd-increment[b-ontbk947gk] {
    color: #4ade80;
    font-weight: 900;
    /* BISTURÍ: Hacemos el valor (+$50) notablemente más grande que el texto */
    font-size: clamp(1.6rem, 3vh, 2.5rem);
    margin-left: 8px; /* Un poco de separación del texto */
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.4); /* Resplandor sutil para resaltar */
}

/* ==========================================================================
   🚨 RESPONSIVE (Celular / Tablet Vertical) 🚨
   ========================================================================== */
@media (max-width: 1024px) {
    body[b-ontbk947gk] {
        overflow-y: auto !important;
    }

    .wall-container[b-ontbk947gk] {
        height: auto;
        min-height: 100vh;
        overflow-y: visible;
    }

    .wall-body[b-ontbk947gk] {
        flex-direction: column;
        height: auto;
    }

    .wall-video-section[b-ontbk947gk] {
        width: 100%;
        height: 50vh;
        border-right: none;
        border-bottom: 2px solid #222;
    }

    .wall-data-section[b-ontbk947gk] {
        width: 100%;
        height: auto;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .wd-price-value[b-ontbk947gk] {
        font-size: clamp(4rem, 15vw, 6rem);
    }
}

/* ==========================================================================
   🚨 OVERLAY DE VENTA (TARJETA NEÓN) 🚨 - AHORA SÍ GLOBAL (PC Y MÓVIL)
   ========================================================================== */

/* Forzamos el fondo a que sea casi negro puro (90% de opacidad) */
[b-ontbk947gk] .blackout-overlay {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.sold-container[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: popIn-b-ontbk947gk 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* El círculo verde del check */
.sold-check-circle[b-ontbk947gk] {
    width: 100px;
    height: 100px;
    background-color: #00ff7f; /* Verde brillante */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 127, 0.6);
}

/* Texto ¡VENDIDO! */
.sold-title[b-ontbk947gk] {
    color: #00ff7f;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

/* La tarjeta verde oscuro */
.sold-card[b-ontbk947gk] {
    background-color: #1a4f22; /* Verde oscuro elegante */
    border: 4px solid #4ade80; /* Borde verde neón */
    border-radius: 24px;
    padding: 3vh 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 60px rgba(74, 222, 128, 0.25); /* Resplandor exterior */
    min-width: 300px;
}

/* Subtítulo COMPRADOR */
.sold-card-subtitle[b-ontbk947gk] {
    color: #81c784; /* Verde claro apagado */
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Texto del ganador (RAQ# 36) */
.sold-card-winner[b-ontbk947gk] {
    color: white;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

/* Línea divisoria */
.sold-card-divider[b-ontbk947gk] {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 3vh 0;
}

/* Precio Final ($ 10.600) */
.sold-card-price[b-ontbk947gk] {
    color: #FFD600; /* Amarillo Oro */
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1;
    font-family: 'Poppins', sans-serif; /* 🔥 BISTURÍ: Adiós Roboto, hola Poppins */
    text-shadow: 0 0 20px rgba(255, 214, 0, 0.4);
}

/* Animación de entrada brusca tipo "Golpe de Martillo" */
@keyframes popIn-b-ontbk947gk {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

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