/* الخطوط والتنسيق العام */
body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f9f9f9;
    padding-top: 56px;
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
    

}

@media (min-width: 992px) {
    body {
        padding-top: 72px;
            font-family: 'Cairo', sans-serif;

    }
}


/* صندوق البحث */
.search-box {
    display: flex;
    align-items: center;
}

.search-box input[type="text"] {
    border: 1px solid #ddd;
    border-radius: 25px 0 0 25px; /* يمين دائري للصندوق */
    padding: 8px 15px;
    outline: none;
    width: 250px;
}

.search-box button {
    border: 1px solid #ddd;
    border-left: none;
    background: #ff4400;
    color: #fff;
    border-radius: 0 25px 25px 0; /* يسار دائري للزر */
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #e63b00;
}



/* شريط التنقل */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.navbar-brand {
    font-weight: 700;
    color: #ff4400 !important;
    font-size: 1.6rem;
}

/* البانر / السلايدر */
.carousel-inner img {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* الأقسام */
.section-title {
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: #ff4400;
    border-radius: 3px;
}

/* كروت المنتجات */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: contain;
    background: #fafafa;
    padding: 10px;
}

.product-price .current-price {
    font-weight: bold;
    color: #ff4400;
    font-size: 1.1rem;
}

.product-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* كروت الفئات */
.category-card .card {
    transition: transform 0.3s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.category-card:hover .card {
    transform: translateY(-5px);
}

.category-card .card-img-top {
    height: 150px;
    object-fit: cover;
}

/* شارة السلة */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4400;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* تنسيق التنبيهات الثابتة */
.fixed-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
}
