/* تنسيق الصورة */
.custom-banner-image {
    width: 100%;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}
/* للجوال - الصورة بحجمها الأصلي */
@media (max-width: 768px) {
    .custom-banner-image {
        background-image: url('https://raw.githubusercontent.com/Khalid2657/1/main/1a2.jpg');
        padding-top: 120%;
    }
}
/* للكمبيوتر - الصورة الجديدة */
@media (min-width: 769px) {
    .custom-banner-image {
        background-image: url('https://raw.githubusercontent.com/Khalid2657/2/main/1a23.jpg');
        padding-top: 65%;
    }
}
/* توسيط عناصر الفوتر */
.store-footer__inner .container {
    text-align: center !important;
}
.store-footer__inner .container > div {
    justify-content: center !important;
    align-items: center !important;
}
/* توسيط اللوجو */
.store-footer__inner a.flex.items-center {
    justify-content: center !important;
}
/* توسيط العناوين */
.store-footer__inner h3 {
    text-align: center !important;
}
/* توسيط الروابط وخليها تحت بعض */
.s-menu-footer-list {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.s-menu-footer-item {
    text-align: center !important;
}
/* توسيط معلومات التواصل */
.s-contacts-list {
    justify-content: center !important;
    text-align: center !important;
}
.s-contacts-item {
    justify-content: center !important;
}
/* توسيط الأيقونات الاجتماعية */
.s-social-list {
    justify-content: center !important;
}
/* تنسيق النص فوق الصورة */
.banner-text-overlay {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    display: none;
}
.banner-text-overlay h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}
/* النص يظهر فقط بالجوال */
@media (max-width: 768px) {
    .banner-text-overlay {
        display: block !important;
    }
    .banner-text-overlay h2 {
        font-size: 24px;
    }
}

/* إزالة الحواف الرمادية من كرت المنتج في جميع الصفحات */
.athena-card {
    border: none !important;
}

/* إلغاء الـ grid وتوسيط المنتجات */
body.homepage-custom .athena_fixed_products_parent {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
}

/* للكمبيوتر */
@media (min-width: 769px) {
    body.homepage-custom .athena-card-wrapper {
        width: calc(100% - 0px) !important;
        max-width: 350px !important;
    }
}

/* للجوال - يأخذ كامل العرض مع فراغ */
@media (max-width: 768px) {
    body.homepage-custom .athena-card-wrapper {
        width: calc(100% - 0px) !important;
        max-width: 350px !important;
    }
}