/* Main Timer Container - Clean & Modern */
.psm-timer {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 16px 24px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 340px;
    transition: box-shadow 0.3s ease;
}

.psm-timer:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Deactivate look when expired */
.psm-timer.expired {
    border-color: #f0f0f0;
    box-shadow: none;
    opacity: 0.6;
}

/* The "PANIC SALE" text */
.psm-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #e63946; /* Refined, premium brand red */
    font-size: 0.85em;
}

/* Professional Pulsing Dot */
.psm-badge::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #e63946;
    border-radius: 50%;
    animation: psm-pulse 1.5s infinite;
}

/* Disable the old text blink completely */
.blink {
    animation: none !important;
}

/* Flexbox Layout for the Time Blocks */
.psm-clock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Individual Time Boxes */
.psm-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 8px 10px;
    min-width: 55px;
}

/* The Big Numbers */
.psm-unit span {
    font-size: 1.3em;
    font-weight: 800;
    color: #2b2d42;
    line-height: 1.1;
    margin-bottom: 2px;
}

/* The "Days", "Hrs" labels */
.psm-unit small {
    font-size: 0.65em;
    font-weight: 600;
    color: #8d99ae;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Colon Separators */
.psm-separator {
    font-size: 1.2em;
    font-weight: 700;
    color: #ced4da;
    align-self: center;
    padding-bottom: 12px; /* Aligns with numbers */
}

/* Expired Message */
.psm-expired {
    font-size: 1.1em;
    font-weight: 700;
    color: #8d99ae;
    text-align: center;
    width: 100%;
}

/* Smooth Pulse Animation for the Live Dot */
@keyframes psm-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(230, 57, 70, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}