/**
 * wmavailability — Product Availability Badges
 * Workmind · workmind.pt
 */

.wm-availability {
    margin: 20px 0 12px;
    line-height: 1;
}

.wm-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
}

/* Dot */
.wm-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

/* Label colour per state */
.wm-badge--stock .wm-label { color: #166534; }
.wm-badge--order .wm-label { color: #92400e; }
.wm-badge--out   .wm-label { color: #991b1b; }

/* Quantity hint */
.wm-qty {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    margin-left: 2px;
}

/* Animate dot pulse for in-stock */
@keyframes wm-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, .20); }
    50%       { box-shadow: 0 0 0 5px rgba(34, 197, 94, .08); }
}
.wm-badge--stock .wm-dot {
    animation: wm-pulse 2.4s ease-in-out infinite;
}
