/* Magemonkeys_DeliveryTimer — PDP Delivery Block */

.mmt-delivery-timer {
    font-family: inherit;
    transition: box-shadow 0.2s ease;
}

.mmt-delivery-timer:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mmt-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.mmt-stock {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mmt-stock-dot {
    flex-shrink: 0;
    animation: mmt-pulse 2s ease-in-out infinite;
}

@keyframes mmt-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.55; }
}

.mmt-stock-label {
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.04em;
}

.mmt-countdown-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mmt-countdown-timer {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.03em;
    font-size: 1.05em;
}

.mmt-message {
    font-size: 1em;
    line-height: 1.55;
}

.mmt-message strong {
    font-weight: 700;
}

/* Responsive visibility */
@media (max-width: 767px) {
    .mmt-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .mmt-hide-desktop {
        display: none !important;
    }
}

/* RTL support */
[dir="rtl"] .mmt-delivery-timer {
    text-align: right;
}

[dir="rtl"] .mmt-row-top {
    flex-direction: row-reverse;
}
