/* تعديلات مخصصة على Bootstrap */

/* تعديل هوامش ms-3 */
.ms-3 {
    margin-right: 0rem !important;
    margin-left: 1rem !important;
}

/* تعديل نافذة البحث المنبثقة */
.search-modal.active {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-content {
    max-width: 500px !important;
    width: 90% !important;
    margin: 0 auto;
    border-radius: 12px;
    position: relative;
    top: 0;
    transform: translateY(0);
}

/* تنسيق المنتجات التي نفذت من المخزون */
.product-card.out-of-stock {
    position: relative;
    overflow: hidden;
    border: 1px solid #f8d7da !important;
    background-color: #fff8f8 !important;
}

.product-card.out-of-stock:before {
    content: "نفذ من المخزون";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(220, 53, 69, 0.85);
    color: white;
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
    z-index: 2;
    font-size: 0.875rem;
}

.product-card.out-of-stock img {
    opacity: 0.6;
    filter: grayscale(30%);
}

.product-card.out-of-stock .card-title,
.product-card.out-of-stock .card-text,
.product-card.out-of-stock .fw-bold {
    opacity: 0.8;
}

/* إخفاء نص "غير متوفر" من كروت المنتجات */
.product-card p.text-danger.mt-2.mb-0,
.product-card p.text-danger.mt-2.mb-0.fw-bold,
.card-body p.text-danger.mt-2.mb-0,
.card-body p.text-danger.mt-2.mb-0.fw-bold {
    display: none !important;
}

/* تعديل نافذة سلة المشتريات */
.cart-modal.active {
    padding: 0 20px;
}

.cart-modal-content {
    width: 90% !important;
    max-width: 450px !important;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .search-modal.active {
        padding: 0 15px;
    }
    
    .search-modal-content {
        width: 100% !important;
    }
    
    .h5, h5 {
        font-size: 1rem !important;
    }
    
    /* إخفاء وصف المنتج في بطاقات المنتجات */
    .product-card .card-text,
    .card-body .card-text {
        display: none !important;
    }
} 