/* Oferta Relámpago - transformación del "Paquete Recomendado" */

/* Header */
.or-header {
    background: linear-gradient(90deg, #f5b301 0%, #ffd93b 50%, #f5b301 100%);
    border-radius: 10px;
    padding: 14px 22px !important;
    box-shadow: 0 4px 14px rgba(245, 179, 1, 0.25);
}

.or-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    flex-wrap: wrap;
    min-height: 60px;
}

.or-title {
    color: #1a1a1a !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
}

/* Círculo con el rayo */
.or-badge-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5b301 0%, #ffd93b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(245, 179, 1, 0.35);
    animation: orPulse 2s ease-in-out infinite;
}

.or-badge-circle i {
    font-size: 2.5rem;
    color: #1a1a1a;
}

@keyframes orPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Countdown premium */
.or-countdown {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    flex-shrink: 0;
}

.or-cd-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.or-cd-blocks {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.or-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.or-cd-box {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: 1.5px solid rgba(255, 217, 59, 0.5);
    border-radius: 8px;
    min-width: 52px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.or-cd-unit-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.85);
}

/* Separador ':' alineado verticalmente con el centro de las cajas */
.or-cd-sep {
    height: 46px;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 2px;
    animation: orSepBlink 1s ease-in-out infinite;
}

@keyframes orSepBlink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Acento dorado en el borde de la card */
.or-card-accent {
    border: 3px solid #ffd93b !important;
    position: relative;
}

/* Badge % OFF sobre la imagen */
.or-percent-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd93b;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1rem;
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    z-index: 2;
    font-family: 'Quicksand', sans-serif;
}

/* Botón CTA oferta relámpago */
.or-cta {
    background: linear-gradient(90deg, #f5b301 0%, #ffd93b 50%, #f5b301 100%) !important;
    color: #1a1a1a !important;
    font-weight: 800 !important;
    letter-spacing: 0.6px !important;
    box-shadow: 0 4px 12px rgba(245, 179, 1, 0.35) !important;
    border: none !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.or-cta:hover,
.or-cta:focus {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(245, 179, 1, 0.5) !important;
    color: #1a1a1a !important;
}

/* Responsive */
@media (max-width: 768px) {
    .or-header { padding: 10px 14px !important; }
    .or-header-content {
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
    .or-title {
        font-size: 1.1rem !important;
        justify-content: center;
        width: 100%;
    }
    .or-badge-circle { width: 60px; height: 60px; }
    .or-badge-circle i { font-size: 1.8rem; }
    .or-cd-box { min-width: 42px; height: 38px; font-size: 1.2rem; }
    .or-cd-label { font-size: 0.65rem; letter-spacing: 1px; }
    .or-cd-blocks { gap: 4px; }
    .or-cd-sep { height: 38px; font-size: 1.3rem; }
    .or-cd-unit-label { font-size: 0.6rem; }
    .or-percent-badge { font-size: 0.85rem; padding: 6px 10px; top: 10px; right: 10px; }
}
@media (max-width: 480px) {
    .or-cd-box { min-width: 36px; height: 34px; font-size: 1.05rem; }
    .or-cd-sep { height: 34px; font-size: 1.1rem; }
    .or-cd-blocks { gap: 3px; }
}
