body {
    background-color: #ffffff;
    margin: 5rem auto 0;
    padding: 0;

    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    width: 100%;
}

/* توسيط الشعار في منتصف الصفحة */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* لملء الشاشة بالكامل */
    padding: 20px;
    text-align: center;
}

.logo-container img {
    max-width: 150px;
    height: auto;
    margin: 0;
    display: block;
}

/* تصميم الشبكة */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1280px;
    width: 100%;
}

/* تعديل حجم الصور حسب حجم الشاشة */
.banner-entry {
    width: 390px;
    height: 390px;
}

@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .banner-entry {
        width: 390px;
        height: 390px;
    }
}

@media (max-width: 768px) {
    .grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
    }
    .banner-entry {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .banner-entry {
        width: 115px;
        height: 115px;
        justify-content: center;
    }
}



/* تصميم الفوتر */
.store-footer {
    background-color: #ffffff!important;
    padding: 2rem 1rem;
}

.store-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    background-color: #ede9e0!important; /* لون الخلفية */
}

.store-footer__inner .container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .store-footer__inner .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .store-footer__inner .container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.store-footer__inner h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.store-footer__inner a {
    color: #7b3822;
    text-decoration: none;
}

.store-footer__inner a:hover {
    text-decoration: underline;
}

/* تنسيقات الـ main-nav-container */
.main-nav-container {
   background-color: #ede9e0;
    margin-top: 1px;
    border-radius: 30px; /* يجعل الزوايا منحنية بالكامل */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* استعلام للشاشات الصغيرة */
@media (max-width: 768px) {
.main-nav-container {
        border-radius: 20px; /* تقليل انحناء الزوايا لشاشات الجوال */
        margin-top: 5px; /* تعديل المسافة العلوية إذا لزم الأمر */
        padding: 10px; /* إضافة مساحة داخلية لتحسين المظهر */
    }

.top-navbar {
    background-color: #ffffff!important;

}


/* تحسين تنسيقات القائمة */
.custom-main-menu {
    display: flex;
    gap: 16px;
}

.custom-main-menu a {
    color: #333;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-main-menu a:hover {
    background-color: #ede9e0;
    color: #ede9e0;
}

/* تصميم البحث */
.header-search input {
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    width: 100% !important;
    transition: border-color 0.3s ease;
}

.header-search input:focus {
    border-color: #007bff !important;
}

@media (max-width: 768px) {
    .header-search input {
        border-radius: 10px;
        padding: 6px 12px;
        width: 100%;
    }
}

/* تغيير ألوان النصوص */
.s-product-card-content-title a,
.s-product-card-content-subtitle.opacity-80,
.s-product-card-sale-price h4 {
    color: #000000!important;
}

/* تغيير لون الخلفية */
.s-product-card-content,
.s-product-card-content-main,
.s-product-card-content-title,
.s-product-card-content-sub,
.s-product-card-content-footer.gap-2 {
    background-color: #ffffff;
}

/* الثيم النهاري والليلي */
body.light-theme .inner.bg-inherit {
    background-color: rgba(255, 255, 255, 0.9);
    color: rgb(26, 26, 26);
}

body.dark-theme .inner.bg-inherit {
    background-color: rgba(34, 34, 34, 0.9);
    color: white;
}

.dark-theme .main-nav-container {
    background-color: #000000;
    color: #ede9e0;
}

.text-xl {
    color: #ede9e0;
}

.dark-theme .text-xl {
    color: #ede9e0;
}

.sicon-menu.text-primary.text-2xl {
    color: #000000 !important;
}






.s-product-card-content {
    background-color: #ffffff;
    border-bottom-left-radius: 15px; /* استبدل 15px بالقيمة التي ترغب بها */
    border-bottom-right-radius: 15px; /* استبدل 15px بالقيمة التي ترغب بها */
}