/* 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 */
.or-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #1a1a1a;
    font-family: 'Quicksand', sans-serif;
}

.or-cd-label {
    font-size: 0.82rem;
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.or-cd-box {
    background: #1a1a1a;
    color: #ffd93b;
    border-radius: 6px;
    padding: 6px 11px;
    min-width: 40px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.or-cd-sep {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
}

/* 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-countdown { justify-content: center; width: 100%; }
    .or-badge-circle { width: 60px; height: 60px; }
    .or-badge-circle i { font-size: 1.8rem; }
    .or-cd-box { padding: 4px 8px; min-width: 32px; font-size: 0.95rem; }
    .or-cd-label { font-size: 0.72rem; margin-right: 4px; }
    .or-percent-badge { font-size: 0.85rem; padding: 6px 10px; top: 10px; right: 10px; }
}
@media (max-width: 480px) {
    .or-cd-label { display: none; }
}
