.product-stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #2E7D32;
    line-height: 1;
}

.product-stock-status__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2E7D32;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    animation: stock-pulse 2s ease-in-out infinite;
}

.product-stock-status__dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2E7D32;
    opacity: 0.4;
    animation: stock-ripple 2s ease-out infinite;
}

@keyframes stock-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.9);
    }
}

@keyframes stock-ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.product-stock-status__text {
    letter-spacing: 0.3px;
}

