/* حالة المخزون — أسفل محدد الكمية */

.ahlmall-pdp-qty-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 12px;
    clear: both;
}

.ahlmall-pdp-qty-wrap .quantity {
    float: none;
}

.ahlmall-stock-status {
    width: 100%;
    max-width: 100%;
    float: none !important;
    line-height: normal !important;
}

.ahlmall-stock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    animation: ahlmall-stock-badge-in 0.35s ease;
}

.ahlmall-stock-badge i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ahlmall-stock-badge--out {
    color: #991b1b;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    border: 1px solid #fda4af;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.18);
    animation: ahlmall-stock-badge-in 0.35s ease, ahlmall-stock-pulse 2.2s ease-in-out infinite;
}

.ahlmall-stock-badge--in {
    color: #047857;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.15);
}

@keyframes ahlmall-stock-badge-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ahlmall-stock-pulse {
    0%,
    100% {
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.18);
    }
    50% {
        box-shadow: 0 6px 22px rgba(220, 38, 38, 0.32);
    }
}
