/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body:not(i,span) {
  font-family: 'Cairo', sans-serif;
}
body.index {
    background-color: var(--white-color) !important;
}

:root {
    --color-primary:#f1a230;
    --main-color: #f1a230;
    --white-color: #fff;
    --normal-box-shadow: rgb(0,0,0,0.3) 1px 2px 3px;
}

div#mainnav, .inner.bg-inherit {
    background: #fff;
    box-shadow: none;
}

.main-menu li.root-level>a {
    font-size: 15px;
}

i.sicon-menu {
    padding: 8px;
    border-radius: 50px;
}

i.header-btn__icon.sicon-user-circle, i.header-btn__icon.icon.sicon-shopping-bag, i.sicon-menu {
    color: var(--white-color) !important;
    background-color: var(--main-color) !important;
    border: 0;
}

.top-navbar {
    background-color: var(--main-color) !important;
    color: var(--white-color);
}

.top-navbar .s-search-input {
    border: 1px solid var(--white-color);
}

section.s-block.s-block--fixed-banner.wide-placeholder {
    margin-top: 0;
}

section.s-block.s-block--fixed-banner.wide-placeholder > .container {
    padding: 0px !important;
    width: 100% !important;
    max-width: unset;
}

.banner--fixed img {
    background-color: transparent;
    border-radius: 0px !important;
}

.s-product-card-entry * {
    text-align: center;
    justify-content: center;
}

.swiper .swiper-wrapper>div {
    padding-bottom: 20px !important;
}

.s-product-card-entry {
    border: none;
    border-radius: 15px !important;
    box-shadow: var(--normal-box-shadow);
    overflow: hidden;
    transition: 0.3s;
}
.s-product-card-entry:hover{
    transform: translateY(-15px);
}

button.s-button-btn.s-button-outline.s-button-primary-outline {
    border: 0;
    border-radius: 10px;
    box-shadow: var(--normal-box-shadow);
}

button.s-button-btn.s-button-outline.s-button-primary-outline {
    background-color: var(--main-color);
    color: var(--white-color);
}

.s-product-card-content {
    padding: 12px;
}

.s-block__title h2, .main-menu li.root-level>a {
    position: relative;
    margin-right: 7px !important;
}

.main-nav-container.fixed-pinned .inner {
    padding: 15px;
    border-radius: 0 0 50px 50px;
    box-shadow: var(--normal-box-shadow);
}

.s-product-card-image img {
    background: #fff;
}

footer.store-footer {
    background: transparent !important;
}

.store-footer__inner {
    color: var(--white-color);
    border-radius:100px 100px 0 0;
    background-color: var(--main-color) !important;
    position: relative;
}

/** features code ***/
section.s-block.s-block--features .s-block--features__item {
    background-color: transparent !important;
    row-gap: 5px;
    box-shadow: none !important;
    position: relative;
    padding: 0;
}
@media (min-width: 1024px) {
    section.s-block.s-block--features .s-block--features__item:not(:last-of-type):before {
   position: absolute;
    content: '';
    width: 3px;
    height: 30px;
    background: var(--main-color) !important;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
} 
}
.s-block--features__item h2 {
    font-size: 17px;
    color: var(--main-color);
}
.s-block--features__item p {
   display:none;
}
.s-block--features__item .feature-icon {
    background: var(--main-color);
    height: 8rem;
    width: 8rem;
}

.s-block--features__item .feature-icon i:before {
    content: '';
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}
.s-block--features__item .feature-icon .sicon-store2:before {
    background-image: url(https://i.ibb.co/3Y4zf2Hh/image.png);
}

.s-block--features__item .feature-icon .sicon-shipping-fast:before {
    background-image: url(https://i.ibb.co/SwrF613d/image.png);
}
.s-block--features__item .feature-icon .sicon-fire:before {
    background-image: url(https://i.ibb.co/7x5jCC20/image.png);
}

@media (max-width: 992px) {

    section.s-block.s-block--features .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .s-block--features__item:first-child {
        grid-column: span 1 / span 1;
    }
    .s-block--features__item h2 {
    font-size: 15px;
    color: var(--main-color);
}

}

@media (max-width: 992px) {


    .store-footer__inner * {
        text-align: center;
        justify-content: center;
    }
    
}


body.index .s-block__title h2, body.index .s-reviews-header, body.index .s-slider-block__title h2 {
    color: var(--main-color);
}

.s-block__title h2:before, .s-slider-block__title h2:before {
    position: absolute;
    content: '';
    height: 5px;
    width: 20%;
    border-radius: 5px;
    background: var(--main-color);
    bottom: -10px;
    transform: translateX(0%);
    transition: all .5s;
    z-index: -1;
}

.s-block__title h2:hover {
    color: var(--main-color);
}

.s-block__title h2:hover:before, .s-slider-block__title h2:hover:before {
    width: 100%;
    transition: all .5s;
}

.s-block__display-all, .s-reviews-display-all {
    background-color: var(--main-color);
    color: var(--white-color);
    opacity: 1;
    padding: 7px;
    border-radius: 50px;
    font-size: 12px;
}

.s-social-link a {
    color: var(--white-color);
    border: 0;
    transition: all .5s;
}

.s-social-link a:hover {
    transform: translateY(-10px);
    transition: all .5s;
}

a[href*="instagram"] {
    background: -o-linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

a[href*="tiktok"] {
    background: -o-linear-gradient(330deg, #69c9d0, #000, #ee1d52);
    background: linear-gradient(120deg, #69c9d0, #000, #ee1d52);
}

a[href*="facebook"] {
    background: -o-linear-gradient(45deg, #3776f2, #00b1f7);
    background: linear-gradient(45deg, #3776f2, #00b1f7);
}

a[href*="youtube"] {
    background-color: #c4302b;
}
a[href*="snapchat"] {
    background-color: yellow;
    color: black;
}
a[href="https://twitter.com/bahriatna1"] {
    background-color: black;
}

.s-contacts-icon {
    border: 0;
    background-color: var(--white-color);
    color: var(--main-color);
}  

.store-footer h3 {
    background-color: white;
    color: var(--main-color);
    border-radius: 15px;
    padding: 6px 20px;
    text-align: center !important;
}






.navbar-brand img {
    max-height: 5rem !important;
}

.copyright-text p {
    color: var(--main-color);
}



salla-mini-checkout-widget.s-add-product-button-mini-checkout.s-mini-checkout {
    background-color: #4caf50 ;
    border-radius: 10px;
}

salla-mini-checkout-widget.s-add-product-button-mini-checkout.s-mini-checkout * {
    color: white;
}


.s-slider-block__display-all {
    background: var(--main-color);
    padding: 5px 13px;
    border-radius: 15px;
    color: white !important;
    transition: all 0.3s ease-in-out;
    &:hover {
        background-color: var(--main-color);
        color: var(--main-color);
    }
}

button.s-slider-nav-arrow {
    background-color: var(--main-color);
    color: white;
    opacity: 1;
    border: 0;
}
button.s-slider-nav-arrow svg {
    fill: white;
}








@media(max-width: 992px) {

nav#mobile-menu {
    background: var(--main-color);
    color: white !important;
}

}


body.index:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--white-color) url(https://i.ibb.co/XrdfgKZs/logo-headr.png);
    position: fixed;
    z-index: 99999999999999999!important;
    transform: scale(0);
    background-size: 200px!important;
    background-repeat: no-repeat;
    background-position: center!important;
    animation-name: logobg;
    animation-duration: 2.5s
}

@keyframes logobg {
    0% {
        transform: scale(1)
    }

    20% {
        transform: scale(1)
    }

    78% {
        transform: scale(1)
    }

    100% {
        transform: scale(0)
    }
}
:root {
    --color-primary: #f1a230; /* النصوص والأزرار */
    --main-color: #f1a230;    /* نفس اللون للأزرار */
    --white-color: #fff;
    --normal-box-shadow: rgba(0,0,0,0.3) 1px 2px 3px;
}

/* خلفية الموقع */
body {
    background-color: #4E342E !important; /* بني محروق */
}

/* عناوين الأقسام و"أحدث المنتجات" */
.s-block__title h2,
body.index .s-block__title h2,
body.index .s-slider-block__title h2 {
    color: var(--main-color) !important; /* الأصفر البرتقالي */
}
:root{
  --bg-brown:#3E2723;       /* بني محروق */
  --main-color:#f1a230;     /* الأصفر البرتقالي الحالي للعناوين */
  --color-primary:#f1a230;
}

/* غيّر هذا السطر القديم أو علّق عليه */
/* body.index { background-color: var(--white-color) !important; } */

/* ضع هذه الأسطر في آخر ملف الـ CSS */
html, body { background-color: var(--bg-brown) !important; }
body.index { background-color: var(--bg-brown) !important; }

/* أضمن إن العناوين تظهر بالأصفر البرتقالي */
.s-block__title h2,
.s-slider-block__title h2,
.main-menu li.root-level>a,
.s-block--features__item h2 {
  color: var(--main-color) !important;
}

/* في بعض القوالب الخلفية تنحط على أغلفة داخلية—خلّها شفافة */
.page-body,
.container,
section.s-block,
section.s-block.s-block--fixed-banner.wide-placeholder > .container {
  background: transparent !important;
}
div#mainnav, .inner.bg-inherit {
    background: #2e2e2e !important; /* رمادي غامق */
}
/* تغيير لون الهيدر إلى رمادي غامق */
div#mainnav, 
.inner.bg-inherit {
    background: #2e2e2e !important; /* رمادي غامق */
}

/* تصغير ارتفاع الهيدر */
div#mainnav .inner {
    padding: 5px 10px !important; /* مسافة علوية وسفلية صغيرة */
    height: auto !important;      /* يضبط الارتفاع تلقائيًا */
}

/* تصغير حجم اللوجو */
.navbar-brand img {
    max-height: 3.5rem !important; /* أصغر من الحجم السابق */
}

/* تصغير أيقونات الحساب والسلة والقائمة */
i.header-btn__icon.sicon-user-circle,
i.header-btn__icon.icon.sicon-shopping-bag,
i.sicon-menu {
    font-size: 1.2rem !important; /* تصغير الأيقونات */
    padding: 6px !important;      /* تصغير المسافة حولها */
}

/* تصغير صندوق البحث */
.top-navbar .s-search-input {
    height: 35px !important;
    font-size: 14px !important;
}
/* خلفية الهيدر */
div#mainnav, 
.inner.bg-inherit {
    background: #2e2e2e !important;
}

/* خلفية الصفحة كاملة */
body, 
body.index, 
section, 
.s-block, 
.main-nav-container, 
.store-footer__inner {
    background-color: #2e2e2e !important;
}

/* لون النصوص الرئيسية على الخلفية الداكنة */
body, 
.s-block__title h2, 
.main-menu li.root-level>a, 
.store-footer__inner * {
    color: #ffffff !important; /* أبيض */
}

/* الحفاظ على بطاقات المنتجات باللون الأبيض */
.s-product-card-entry {
    background-color: #ffffff !important;
}
/* 1) ألغِ التعميم اللي يلوّن كل شي أبيض داخل الفوتر */
/* .store-footer__inner * { color:#fff !important; }  <-- احذفها أو علّقها */

/* 2) خلّي النص الافتراضي في الفوتر أبيض فقط للسطور العادية */
.store-footer__inner { color:#fff !important; }

/* 3) واللي خلفيته أبيض (الأزرار/الحبيّات) خلّي نصه برتقالي */
.store-footer__inner a,
.store-footer__inner .btn,
.store-footer__inner .s-button-btn,
.store-footer__inner .pill,
.store-footer__inner .badge,
.store-footer__inner h3 {
  color: var(--main-color) !important;   /* #f1a230 */
}

/* 4) أيقونات تواصل الفوتر داخل دوائر بيضا */
.store-footer__inner .s-contacts-icon {
  background:#fff !important;
  color: var(--main-color) !important;
}
/* إطار موحد ملون حول صور المنتجات مع تأثير وميض */
.s-product-card-entry {
    border: 2px solid #f1a230; /* لون الإطار */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* تأثير عند المرور */
.s-product-card-entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    animation: borderFlash 1s infinite alternate; /* وميض الإطار */
}

/* حركة الوميض */
@keyframes borderFlash {
    0% { border-color: #f1a230; }
    100% { border-color: #ffcc66; } /* لون أفتح يعطي لمعة */
}
/* ظل للتصنيفات الرئيسية بدون خلفية */
.main-menu li.root-level > a {
    background-color: transparent !important; /* شفاف */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* ظل خفيف */
    padding: 8px 12px;
    border-radius: 8px; /* زوايا ناعمة */
    transition: all 0.3s ease;
}

/* عند المرور */
.main-menu li.root-level > a:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* ظل أكبر */
    transform: translateY(-2px); /* حركة بسيطة */
}
/* إجبار لون النص داخل نوافذ سلة (الفرز/الفلاتر/القوائم) */
.s-modal, .s-modal * ,
.s-bottom-sheet, .s-bottom-sheet * ,
.s-dialog, .s-dialog * ,
.s-drawer, .s-drawer * ,
.s-select-menu, .s-select-menu * ,
.s-options, .s-options * ,
.s-popover, .s-popover * {
  color: #000 !important;     /* أسود للنص */
}

/* خلفية النافذة لزيادة التباين */
.s-modal .modal-content,
.s-bottom-sheet,
.s-dialog .modal-content,
.s-select-menu,
.s-options,
.s-popover {
  background: #fff !important; /* خلفية بيضاء */
}

/* تسميات الراديو/الاختيارات بالتحديد */
.s-bottom-sheet label,
.s-modal label,
.s-dialog label,
.s-drawer label,
.s-select-menu .option-label,
.s-options .option-label {
  color: #000 !important;
}

/* في حال كان هناك select/option أصلي على بعض الأجهزة */
select, option {
  color: #000 !important;
  background: #fff !important;
}
/* إصلاح لون أيقونات الواتساب والهاتف في أسفل الصفحة */
.footer .icon,
.footer i,
.footer svg {
    color: #FFA500 !important; /* برتقالي غامق */
    fill: #FFA500 !important;  /* للأيقونات بصيغة SVG */
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
}
/* ===== إصلاح ظهور أيقونات التواصل بأسفل الصفحة ===== */

/* لون نص/أيقونات عام داخل الفوتر السفلي */
.store-footer__inner, 
.store-footer__inner a {
  color: #f1a230 !important; /* البرتقالي الأصفر */
}

/* عناصر الأيقونة الدائرية (واتساب/هاتف) */
.store-footer__inner .s-contacts-icon,
.store-footer__inner .s-contacts-icon * {
  background: #ffffff !important;   /* دائرة بيضاء */
  color: #f1a230 !important;         /* لون الأيقونة للنصوص/Font icons */
  border: 2px solid #f1a230 !important;
}

/* SVG: ضبط كل من التعبئة والحد */
.store-footer__inner .s-contacts-icon svg,
.store-footer__inner .s-contacts-icon svg *,
.store-footer__inner svg,
.store-footer__inner svg * {
  fill: #f1a230 !important;
  stroke: #f1a230 !important;
  stroke-width: 1.5 !important;     /* يفيد الأيقونات الخطية */
  opacity: 1 !important;
  visibility: visible !important;
}

/* Font Awesome/سلا-icons إن وُجدت */
.store-footer__inner i,
.store-footer__inner i:before {
  color: #f1a230 !important;
}

/* تأكيد الحجم حتى لا تكون الأيقونة صفرية */
.store-footer__inner .s-contacts-icon,
.store-footer__inner .s-contacts-icon svg {
  width: 36px !important;
  height: 36px !important;
}

/* لمس شفاف للهوفر */
.store-footer__inner .s-contacts-icon:hover {
  box-shadow: 0 0 0 4px rgba(241,162,48,0.15);
  transform: translateY(-2px);
  transition: .2s;
}
/* ضبط أيقونات الواتساب والهاتف في الفوتر */
.store-footer__inner .s-contacts-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px !important;       /* عرض موحّد */
  height: 32px !important;      /* طول موحّد */
  border-radius: 6px !important;/* زوايا خفيفة */
  background: transparent !important; 
  border: 2px solid #f1a230 !important; /* الإطار البرتقالي */
  padding: 4px !important;      /* تقليل الفراغ الداخلي */
  box-sizing: border-box;
}

/* لون الأيقونة */
.store-footer__inner .s-contacts-icon svg,
.store-footer__inner .s-contacts-icon svg * {
  fill: #f1a230 !important;
  stroke: #f1a230 !important;
}

/* عند تمرير الماوس */
.store-footer__inner .s-contacts-icon:hover {
  background: rgba(241,162,48,0.1) !important;
  transform: scale(1.05);
  transition: 0.2s;
}
/* === شريط بحث شفاف مع إطار تدرج وظل === */
.top-navbar .s-search-input {
  background: transparent !important;               /* شفاف */
  border: 2px solid transparent !important;
  border-radius: 28px !important;
  box-shadow: 0 3px 10px rgba(0,0,0,.15) !important;
  padding: 0 14px 0 14px !important;                /* مسافات متساوية */
  height: 42px !important;
  background-image:
    linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
    linear-gradient(90deg, #f1a230, #ffcc66);       /* إطار تدرج */
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
}

/* حقل الإدخال */
.top-navbar .s-search-input input {
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;                           /* نص أبيض */
  font-size: 15px !important;
  padding-right: 8px !important;                    /* يمنع تلاصق النص مع الأيقونة */
  flex: 1;
}

/* النص placeholder */
.top-navbar .s-search-input input::placeholder {
  color: rgba(255,255,255,0.7) !important;
}

/* أيقونة البحث */
.top-navbar .s-search-input svg,
.top-navbar .s-search-input i,
.top-navbar .s-search-input svg * {
  fill: #f1a230 !important;
  color: #f1a230 !important;
  margin-left: 6px !important;                      /* تبعد عن النص */
}

/* عند التركيز */
.top-navbar .s-search-input:focus-within {
  box-shadow: 0 4px 16px rgba(241,162,48,.25) !important;
}

/* للموبايل */
@media (max-width: 480px){
  .top-navbar .s-search-input { height: 40px !important; padding: 0 12px !important; }
  .top-navbar .s-search-input input { font-size: 14px !important; }
}
/* شريط البحث */
.top-navbar .s-search-input {
  background: rgba(0,0,0,0.15) !important; /* خلفية شبه شفافة */
  border: 2px solid #f1a230 !important;     /* إطار برتقالي */
  border-radius: 28px !important;
  padding: 0 40px 0 16px !important;        /* مساحة للأيقونة */
  height: 42px !important;
  display: flex;
  align-items: center;
  position: relative;
}

/* النص داخل الحقل */
.top-navbar .s-search-input input {
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;
  font-size: 15px !important;
  padding: 0 !important;
}

/* الأيقونة على اليمين */
.top-navbar .s-search-input .s-search-btn {
  position: absolute;
  right: 10px; /* تبعد عن الحافة */
  background: #f1a230;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* أيقونة البحث نفسها */
.top-navbar .s-search-input .s-search-btn svg,
.top-navbar .s-search-input .s-search-btn i {
  fill: #fff !important;
  color: #fff !important;
}
/* السعر بعد الخصم */
.product-card .price--sale, 
.product-page .price--sale {
    color: red !important;
    font-weight: bold;
    font-size: 1.2em;
}

/* السعر قبل الخصم */
.product-card .price--compare,
.product-page .price--compare {
    color: #888 !important;
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 1em;
}

/* ملصق نسبة الخصم فوق الصورة */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 4px;
    z-index: 10;
}
/* تغيير لون النص داخل حقل الكمية */
input[type="number"], 
.quantity input, 
.product-quantity input {
    color: black !important;  /* لون النص */
}

/* إذا كان هناك أسهم لزيادة/إنقاص الكمية */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    filter: invert(0); /* يجعل الأسهم بلون داكن إذا كانت بيضاء */
}
/* ===== إصلاح لون/خلفية حقل الكمية ===== */
input[name="quantity"],
input[id*="quantity"],
input[type="number"].qty,
.quantity input,
.cart-quantity input,
.s-quantity-input input,
.counter__input,
.product-quantity input {
  color: #000 !important;                 /* نص أسود */
  -webkit-text-fill-color: #000 !important; /* أندرويد/كروم */
  caret-color: #000 !important;
  background: #fff !important;            /* خلفية بيضاء واضحة */
  text-align: center !important;
  font-weight: 600;
  width: 56px;                             /* اضبط المقاس حسب ذوقك */
  min-width: 52px;
  border: 1px solid rgba(0,0,0,.15) !important;
  border-radius: 8px !important;
}

/* في حال كان الحقل داخل عنصر تحكّم الكمية */
.quantity, .product-quantity, .s-quantity-input, .counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* زرّي النقص/الزيادة */
.quantity button, 
.product-quantity button,
.s-quantity-input button,
.counter__btn {
  color: var(--main-color, #f1a230) !important;   /* لون الأيقونات */
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 10px !important;
}

/* أسهم الإدخال الافتراضية (نخفيها إن كانت تسبب تباين ضعيف) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* لو الثيم يضع الحقل كـ disabled بالخطأ */
input[name="quantity"][disabled] {
  opacity: 1 !important;
  color: #000 !important;
}

/* لضمان ظهور الرقم في الوضع الداكن أيضاً */
@media (prefers-color-scheme: dark) {
  input[name="quantity"],
  input[id*="quantity"],
  input[type="number"].qty,
  .quantity input,
  .cart-quantity input,
  .s-quantity-input input,
  .counter__input,
  .product-quantity input {
    background: #fff !important;
    color