/* Product Availability Badges */
.product-source-availability {
    display: block;
    margin: 8px 0;
}

.product-source-availability span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

/* AVAILABLE - Green */
.badge-available {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.badge-available svg {
    stroke: #10b981;
}

/* ISSUE 3 FIX: OUT OF STOCK - Orange/Yellow */
.badge-out-of-stock {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.badge-out-of-stock svg {
    stroke: #f59e0b;
}

/* NOT AVAILABLE - Red */
.badge-not-available {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.badge-not-available svg {
    stroke: #ef4444;
}

/* ISSUE 1 FIX: Disable Add to Cart for unavailable products */
.disabled-cart-button {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.product-item.not-available .action.tocart,
.product-info-main.not-available .action.tocart {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Old styles - keep for backward compatibility */
.product-availability {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
}

.available-badge {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.available-badge svg {
    stroke: #065f46;
    stroke-width: 2.5;
    width: 16px;
    height: 16px;
}

.not-available-badge {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.not-available-badge svg {
    stroke: #991b1b;
    stroke-width: 2;
    width: 16px;
    height: 16px;
}