
  /* تعديل زر الإغلاق */
.custom-offcanvas .btn-close {
    position: absolute;
    left: 10px; /* اقصى اليسار */
    top: 10px;
    width: 25px;   /* صغر الحجم */
    height: 25px;  /* صغر الحجم */
    border-radius: 50%;
    background-color: #4d1406ff;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.custom-offcanvas .btn-close::before,
.custom-offcanvas .btn-close::after {
    background-color: #fff; /* تغيير لون العلامة X */
}

.custom-offcanvas .btn-close:hover {
    transform: rotate(90deg) scale(1.2);
    opacity: 1;
}
/* تصميم Offcanvas */
.custom-offcanvas {
    background: linear-gradient(160deg, #fff8f0, #ffe0cc);
    backdrop-filter: blur(8px);
    border-left: 3px solid #8f1f03;
    transition: all 0.5s ease-in-out;
}

/* عنوان Offcanvas */
.custom-offcanvas .offcanvas-title {
    font-weight: bold;
    font-size: 1.5rem;
    color: #8f1f03;
}

/* قائمة التصنيفات */
.custom-offcanvas ul li a {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    color: #8f1f03;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

/* تأثير عند المرور */
.custom-offcanvas ul li a:hover {
    background: #8f1f03;
    color: #fff;
    transform: translateX(5px);
}

/* إضافة أيقونة سهم عند المرور */
.custom-offcanvas ul li a::after {
    content: "→";
    position: absolute;
    right: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}
.custom-offcanvas ul li a:hover::after {
    opacity: 1;
    right: 10px;
}

/* فروعنا */
.branch-link {
    display: block;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 6px;
    background: #ffe5d9;
    color: #8f1f03;
    text-decoration: none;
    transition: 0.3s;
}
.branch-link:hover {
    background: #8f1f03;
    color: #fff;
    transform: scale(1.05);
}

/* الخرائط */
.branch-map {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* أيقونات التواصل الاجتماعي */
.flex_row {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.flex_row i {
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
}
.flex_row i:hover {
    transform: scale(1.3) rotate(10deg);
    color: #ff6f61;
}

/* متجاوبة */
@media (max-width: 576px) {
    .custom-offcanvas {
        width: 80% !important;
    }
    .branch-map iframe {
        width: 100% !important;
        height: 200px !important;
    }
}
