/*
 * PRENSHIP_FLASH_BUYER_TIMER_C1
 * Public product Flash Sale countdown.
 */

.product-price-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.product-price-line > .product-price {
    flex: 1 1 auto;
}

.product-flash-timer {
    flex: 0 1 320px;
    min-width: 270px;
    padding: 12px 14px;
    border: 1px solid var(--product-border);
    border-radius: 14px;
    background: var(--product-panel);
}

.product-flash-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
}

.product-flash-heading strong {
    color: var(--product-accent);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.product-flash-heading span {
    color: var(--product-muted);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.05em;
}

.product-flash-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(48px, 1fr));
    gap: 6px;
}

.product-flash-unit {
    min-width: 0;
    text-align: center;
}

.product-flash-unit strong {
    display: block;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 950;
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
}

.product-flash-unit span {
    display: block;
    margin-top: 4px;
    color: var(--product-muted);
    font-size: 0.68rem;
    font-weight: 800;
}

.product-flash-timer.is-transitioning {
    opacity: 0.72;
}

@media (max-width: 720px) {
    .product-price-line {
        display: block;
    }

    .product-flash-timer {
        width: 100%;
        min-width: 0;
        margin-top: 14px;
    }
}
