body {
    font-family: 'Cairo', sans-serif;
    background-color: #f8f9fa;
}
h2.section-title {
    font-weight: 700;
    color: #343a40;
}
a.view-all-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}
.promo-header {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}
.promo-header img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.sections-nav {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
}
.items-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0;
}
.items-carousel::-webkit-scrollbar {
    display: none;
}
.item-card {
    flex: 0 0 220px;
    margin-left: 1rem;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}
.item-card:first-child {
    margin-right: 0;
}
.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.item-card .item-image {
    width: 100%;
    height: 285px;
    object-fit: contain; /* <--- هذا هو التغيير المطلوب */
    background-color: #fdfdfd; /* لون خلفية أنيق للفراغات إن وجدت */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    cursor: pointer;
}
.item-card .item-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item-card .item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #495057;
}
.item-card .item-description {
    font-size: 0.85rem;
    color: #6c757d;
    flex-grow: 1;
}
.item-card .contact-btn {
    font-weight: bold;
}

/* 
============================================================
  الإصلاح النهائي: تم تعديل هذا الجزء فقط
============================================================
*/
.price-wrapper .price,
.price-wrapper .old-price {
    display: block;      /* يجبر كل سعر على أن يكون في سطر منفصل */
    line-height: 1.2;    /* يضبط المسافة بين السطرين */
    text-align: right;   /* يضمن المحاذاة لليمين في اللغة العربية */
}

.price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745;
}

.old-price {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
}

/* 
============================================================
  كود الهيدر الاحترافي الجديد
============================================================
*/
.site-header {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa); /* تدرج لوني خفيف */
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.site-header .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 75px;
    width: 75px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-title {
    margin-right: 15px; /* مسافة بين الشعار والنص */
    text-align: right;
}

.site-title h2 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 1.8rem;
    color: #343a40; /* لون رمادي داكن */
}

.site-title p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #6c757d; /* لون رمادي ثانوي */
    letter-spacing: 1px; /* تباعد الحروف لمظهر أجمل */
}```

/* 
============================================================
  كود جديد لجعل تبويبات الأقسام قابلة للسحب
============================================================
*/
.sections-nav {
    display: flex;          /* يجعل الأزرار بجانب بعضها */
    overflow-x: auto;       /* يضيف شريط تمرير أفقي عند الحاجة */
    white-space: nowrap;    /* يمنع الأزرار من النزول لسطر جديد */
    padding-bottom: 15px;   /* يضيف مساحة سفلية لتجنب تلاصق شريط التمرير (إذا ظهر) */
    -ms-overflow-style: none;  /* يخفي شريط التمرير في IE و Edge */
    scrollbar-width: none;  /* يخفي شريط التمرير في Firefox */
}

/* يخفي شريط التمرير في Chrome, Safari, Opera */
.sections-nav::-webkit-scrollbar {
    display: none;
}






/* 
============================================================
  تعديل تصميم شريط الإشعارات لجعله ملفتاً
============================================================
*/
.announcement-bar {
    background-color: #d9534f; /* لون أحمر جذاب */
    color: white;              /* لون الخط أبيض */
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid #b94a48; /* حد سفلي لإضافة عمق */
}