/* Add custom CSS styles below */ 
.qz-hero-content {
    width: 45%;
    margin-right: 0%;}
@media (max-width: 768px) {
    .qz-hero-content {
        width: 100%;
        margin: 0px 0 0 0;
        padding: 20px;
        text-align: center;
        background: transparent;
    }
}

.qz-hero-bg {
       background-size: contain;
    background-position: left center;
    z-index: 1;
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    background-repeat: no-repeat;
}
   /* ================= 1. إعدادات الألوان والمتغيرات الرئيسية ================= */
:root {
    --ty-brown: #7c161e;   /* اللون الأساسي الجديد (نبيتي) */
    --ty-gold:  #7c161e;   /* تم التوحيد */
    --ty-bg: #fcfbf9;      /* لون الخلفية السكري */
    --ty-text: #7c161e;    /* لون النصوص */
    --ty-primary: #7c161e; /* اللون الرئيسي */
}

/* ================= 2. إعدادات الصفحة والخلفية ================= */
body {
    background-color: #fcfbf9 !important;
}

.bg-white {
    background-color: #fcfbf9;
}

.index .bg-white {
    background-color: transparent;
}



/* إخفاء عنوان الصفحة في التصنيفات */
.content--single-page h1:first-of-type {
    display: none;
}

/* ================= 3. الشريط العلوي (Top Navbar) ================= */
.top-navbar, .index .top-navbar {
    display: flex !important; /* إظهار الشريط دائماً */
    background-color: #7c161e !important; /* خلفية نبيتي */
    color: #fcfbf9 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-navbar a, 
.top-navbar i, 
.top-navbar span {
    color: #fcfbf9 !important;
}

/* ================= 4. الهيدر والقائمة (Header & Menu) ================= */
/* الخلفية المزخرفة باللون النبيتي */
#mainnav, 
.fixed-header, 
.sub-menu,
.fixed-header .bg-inherit {
    background-color: #7c161e !important;
      background-color: #f37d36 !important;
        
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: #ede8e2;
}


.index #mainnav {
    background: transparent !important;
}

/* ألوان الروابط */
.index .main-menu li.root-level>a,
.index [class^=sicon-], .index [class*=" sicon-"],
[class^=sicon-], [class*=" sicon-"] {
    color: #ede8e2;
}

/* عند مرور الماوس على الروابط */
@media only screen and (min-width: 1024px) {
    .main-menu>.has-children:hover>a,
    .main-menu li>a:hover {
        color: #d06154; /* لون فاتح عند الهوفر */
    }
}

/* ================= 5. الفوتر (Footer) ================= */
/* تصميم الفوتر والخلفية */
.store-footer {
    position: relative;
    overflow: hidden !important;
    /* تدرج يبدأ من النبيتي وينتهي بالأسود */
    background: linear-gradient(to bottom, #7c161e, rgba(15, 12, 10, 0.95)), 
                url('https://cdn.salla.sa/WlpNjW/xwDaVVW7AaoxNPvToinUPcuAfX35xVSZTfGgZY56.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
}

/* الإطار العلوي للفوتر */
.footer-is-light .store-footer {
    border-top: 9px solid #7c161e; /* نبيتي */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* جعل الخلفيات الداخلية شفافة */
.store-footer__inner, 
.footer-copyright,
.footer-is-light .store-footer .store-footer__inner {
    background-color: transparent !important;
    background: transparent !important;
    color: white;
}

@media (min-width: 1024px) {
    .store-footer__inner { padding-bottom: 0rem; }
}


/* تعديل الزخرفة للجوال */
@media (max-width: 768px) {
    .store-footer::after {
        background-image: url('https://cdn.salla.sa/RAxErq/1yU8ODj01nmnSowshhfQbUpa7VZz0lENFE0JDzap.png');
        bottom: -130px;
    }
    .store-footer__inner { border-bottom: 0px; }
}

/* نصوص الفوتر */
.store-footer h3, 
.store-footer .footer-heading-mobile {
    color: #e0e0e0 !important; /* لون فاتح ليكون مقروءاً على الخلفية الغامقة */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.store-footer p, .store-footer a, .store-footer span, .s-menu-footer-item {
    color: #e0e0e0 !important;
    justify-content: center;
}

.store-footer a:hover {
    color: #fff !important;
    transform: translateX(-5px);
}

/* أيقونات التواصل */
.store-footer .contact-social ul {
    justify-content: center;
}
.social-icon, .s-social-icon {
    color: #fff !important;
}

/* القائمة المنسدلة في الجوال (Accordion) */
@media (max-width: 1024px) {
    .footer-heading-mobile {
        cursor: pointer; position: relative; padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 10px;
        display: flex; justify-content: space-between; align-items: center;
    }
    .footer-heading-mobile::after {
        content: '+'; font-size: 1.5rem; font-weight: bold;
        color: #7c161e; /* أيقونة نبيتي */
        transition: transform 0.3s ease; margin-left: 10px;
    }
    .footer-heading-mobile.active::after {
        content: '-'; transform: rotate(180deg);
    }
    .mobile-content {
        max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
    }
    .s-menu-footer-item {
        display: block; padding: 5px 0;
    }
}
header, .s-header, .index-header, .site-header {
    background-color: #f8f4eb !important;
}
/* ================= 6. الأقسام والعناصر (Sections & Components) ================= */

/* عناوين الأقسام */
.s-block__title {
    margin-top: 2rem; margin-bottom: 2rem;
    justify-content: center;
}

.ty-sec-title {
    position: relative; display: inline-block;
    padding-bottom: 10px;
    color: #7c161e; /* نبيتي */
    font-size: 1.5rem; font-weight: 600;
}

.ty-sec-title::after {
    content: ""; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background-color: #7c161e; /* الخط نبيتي */
    border-radius: 2px; width: 40%; margin: 0 auto;
}

/* قسم من نحن والفيديو */
.ty-about-section {
    background: linear-gradient(to bottom, #7c161e, rgba(15, 12, 10, 0.90)), 
                url(https://cdn.salla.sa/WlpNjW/xwDaVVW7AaoxNPvToinUPcuAfX35xVSZTfGgZY56.jpg) !important;
}

.ty-about-content h3, .ty-about-content p {
    color: #fcfbf9 !important;
}

.ty-btn-outline {
    display: inline-block;
    border: 2px solid #fcfbf9;
    color: #fcfbf9;
}

/* إطار الفيديو */
.ty-about-video-wrapper {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 20px 20px 0px #fcfbf9 !important;
    aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
    .ty-about-video-wrapper {
        box-shadow: none;
        border: 4px solid #7c161e !important; /* إطار نبيتي للجوال */
    }
}

/* التصنيفات (Categories) */
.ty-cats-section { padding: 0px 0; }
.ty-cat-icon { width: 150px; height: 150px; }

@media (max-width: 768px) {
    .ty-cat-icon { width: 170px; height: 170px; margin: 0 auto; }
    .ty-cats-grid { gap: 20px; display: grid; grid-template-columns: repeat(2, 1fr); }
}

/* البنرات */
.ad-static-banner { height: 70vh !important; }
.ad-marquee-section, .ad-cats-section { margin-bottom: 0px; }

/* عناصر أخرى */
.s-comments-page, .p-6 { padding: 0rem; }
.s-cart-summary-total { color: rgb(252 251 249); }
.s-trust-badges-wrapper { display: none; }
#tySteps { display: none; }
#ty-hero-slider { display: none; }
.sm\:py-16 { padding-bottom: 1rem; padding-top: 1rem; }
.s-block--tabs-produtcs { background: #fcfbf9 !important; }




.top-navbar, .index .top-navbar {
    display: none!important;}
.shadow-default {
    --tw-shadow: 5px 10px 30px #ffffff00;}
.index #main-content .s-block{display:none;}
.qz-card-img {
    height: auto;
    object-fit: contain;
}

.bg-white {
    background-color: #f8f4eb;
}body {
    background-color: #f8f4eb !important;
}


.store-footer{display: none;}


.s-user-menu-dropdown {
   
    background-color: rgb(0 0 0);}


.main-nav-container.fixed-pinned .navbar-brand img {
    filter: brightness(0) invert(1);
}
.s-user-menu-trigger {
    
    background-color: transparent;}



.rl-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px!important;
}@media (max-width: 768px) {
    .rl-footer-top {
        grid-template-columns: 1fr;
        gap: 10px!important;
        text-align: right;
    }
}

#custom-luxury-footer {
    background-color: #f37d36;
    border-top: none;
    padding: 30px 5% 30px!important;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
    color: #ffffff;
    margin-top: 0px!important;
}
.rl-footer-bottom {
    padding-top: 10px!important;
}
.header-btn__icon {
    border: none;
}



header, .s-header, .index-header, .site-header {
    background-color: #f8f4eb !important;
}
@media (max-width: 768px) {
    .qz-hero-text {
        padding-left: 0;
        text-align: center;
        order: 1;
        margin-bottom: 0px;
    }
}
salla-cart-summary {
    min-width: auto;
}
    .s-block__title {
        margin-bottom: 2rem;
        justify-content: center;
    }.s-block__title .right-side:where([dir=rtl],[dir=rtl] *) {
    padding-left: 0rem;
}


.mb-6 {
    margin-bottom: .5rem;
}.text-gray-800 {
    text-align: center;
    --tw-text-opacity: 1;
    color: #1f2937;
    color: rgb(254 138 67);
}.index .main-menu li.root-level>a, .index [class^=sicon-], .index [class*=" sicon-"], [class^=sicon-], [class*=" sicon-"] {
    color: #f37d36;
}h1 + div.flex.whitespace-nowrap.gap-4.items-center {
    display: none !important;
}
.s-comments-product {

    background-color: #f3f4f6;
    background-color: rgb(248 244 235);
  
}
.ajab-mobile-menu-btn {

    color: #fe8a43;}
.ajab-link {

    color: #f98c0e;}
@media (max-width: 900px) {
    ul.ajab-nav-links.mobile-active .ajab-link {
        padding: 15px 0;
        display: block;
        color: white;
    }
}