.product-out-of-stock {
    margin: 1.5rem 0;
}

.out-of-stock-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fdf2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    align-items: flex-start;
    animation: fadeInSlideUp 0.4s ease-out;
}

.out-of-stock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.out-of-stock-content {
    flex: 1;
}

.out-of-stock-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #991b1b;
}

.out-of-stock-text {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #7f1d1d;
    opacity: 0.85;
}

.out-of-stock-footer,
.out-of-stock-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-notify-me {
    background: #fff;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.product-out-of-stock.is-loading .out-of-stock-card {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.product-out-of-stock.is-loading .out-of-stock-icon {
    background: #f1f5f9;
    color: #64748b;
}

.product-out-of-stock.is-loading .out-of-stock-title {
    color: #475569;
}

.product-out-of-stock.is-loading .out-of-stock-text {
    color: #64748b;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Compact Mode for ProductCard */
.product-out-of-stock.is-compact {
    margin: 0.5rem 0;
}

.product-out-of-stock.is-compact .out-of-stock-card {
    padding: 0.75rem;
    gap: 0.75rem;
    border-radius: 8px;
}

.product-out-of-stock.is-compact .out-of-stock-icon {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
}

.product-out-of-stock.is-compact .out-of-stock-title {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.product-out-of-stock.is-compact .out-of-stock-text,
.product-out-of-stock.is-compact .out-of-stock-actions {
    display: none;
}
