body {
    /* تطبيق الخط الجديد على الموقع بالكامل */
    font-family: 'Cairo', sans-serif;
    background-color: #eceff1;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.main-title {
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 500; /* خط عريض للعنوان */
    font-size: 1.5rem;
}

.container { max-width: 700px; margin: auto; }

.row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card {
    background: #ffffff;
    padding: 10px; /* تقليل الحواف الداخلية */
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* لضمان عدم خروج الصورة عن الحواف المستديرة */
}

.card:hover { transform: scale(1.03); }

/* جعل الصورة تأخذ مساحة الكارت بالكامل */
.card img { 
    width: 100%; 
    height: auto; 
    display: block;
    object-fit: contain;
}

.full-width .card { width: 100%; }

/* تنسيق العروض في الصفحات الأخرى */
.offer-box {
    background: #fff;
    margin: 15px auto;
    padding: 20px;
    border-radius: 10px;
    text-align: right;
    max-width: 500px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-right: 6px solid #ff4b2b;
}

.offer-title {
    font-size: 26px;
    font-weight: 900;
    color: #000;
    text-align: center;
    display: block;
    margin: 10px 0;
}
/* تنسيق كروت الأقسام لتشبه الرئيسية */
.category-card {
    background: #fff;
    padding: 25px;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    border: 1px solid #eee;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #ff4b2b;
}

/* القائمة السفلية بشكل مودرن */
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 25px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -10px 25px rgba(0,0,0,0.15);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    text-align: center;
}

.bottom-sheet.active { bottom: 0; }

.sheet-bar {
    width: 50px;
    height: 5px;
    background: #ddd;
    border-radius: 10px;
    margin: 0 auto 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #f8f9fa;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.2s;
}

.contact-item:hover { background: #e9ecef; }
.contact-item img { width: 30px; }
