/* ==============================
   1- استيراد الخطوط
============================== */
@import url('https://fonts.googleapis.com/css2?family=Kufam:ital@0;1&display=swap');


/* ==============================
   2- إعدادات الصفحة الأساسية (Body)
============================== */
body {
    font-family: "Kufam" !important;/* خط النص */
}

body#app.index {
    background: white; /* خلفية بيضاء لصفحة الهوم */
}

/* Add custom CSS styles below */ 
body#app.index {
    background: white; /* خلفية بيضاء لصفحة الهوم */
}


/* ==============================
   3- إعدادات اللازي لود (Lazy Loading)
============================== */
.lazy__bg.lazy.entered.loaded {
    background-size: contain;      /* ملاءمة الخلفية بدون قص */
    background-repeat: no-repeat;  /* منع التكرار */
}


/* ==============================
   4- إعدادات الصور والبنرات
============================== */
a.banner-entry.square-photos {
    background: transparent; /* خلفية شفافة */
}



img {
    background: transparent !important; /* إزالة خلفية الصور */
    border-radius: 0;                   /* إزالة الزوايا الدائرية */
}

.s-block__title {
    justify-content: center;
}
.s-block__title .right-side:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 0;
}
.banner--fixed img {
    display: block;
    width: 40%; /* العرض أقل على الديسكتوب */
    margin: 0 auto; /* في النص */
}

/* للموبايل */
@media (max-width: 768px) {
    .banner--fixed img {
        width: 80%; /* عرض أكبر شوية للموبايل */
    }
}
.video_section video {
    width: 100%;
}




/* ==============================
   8- المنتجات (Products)
============================== */
.s-product-card-entry,
custom-salla-product-card.s-product-card-entry {
    border: 2px solid #CD7334;               /* إطار المنتج */
    border-radius: 8px;                      /* زوايا دائرية */
    overflow: hidden;                        /* إخفاء المحتوى الزائد */
    padding: 10px;                           /* حشو داخلي */
    transition: transform 0.3s ease, 
                box-shadow 0.3s ease;        /* تأثير حركة */
}

.s-product-card-entry:hover,
custom-salla-product-card.s-product-card-entry:hover {
    transform: scale(0.97); /* تصغير بسيط عند الهوفر */
    box-shadow: none;       /* إلغاء الظل */
}

.s-product-card-price {
    color: #CD7334;       /* لون السعر */
    text-align: center;   /* توسيط السعر */
}

.s-product-card-content-sub {
    text-align: center;
    display: inline-block;
}

.s-product-card-content-title a {
    font-size: 16px;     /* حجم النص */
    font-weight: bold;   /* نص سميك */
    text-align: center;
    display: block;
}


/* ==============================
   9- الأزرار (Buttons)
============================== */
.s-button-btn.s-button-primary-outline {
    background-color: #CD7334; /* لون الخلفية */
    color: white;             /* لون النص */
}

.s-button-btn.s-button-primary-outline:hover {
    background-color: #CD7334;
    color: white;
}
.s-product-card-content-title a:hover {
    color: #CD7334;
}
.store-footer .s-contacts-item,
.store-footer .s-social-link a {
    color: #CD7334;
    background: rgba(255, 255, 255, 1);
}

.store-footer a.flex h3 {
    font-size: 0 !important;                                      /* إخفاء النص */
    background-image: url(https://i.ibb.co/R4Ybw0D9/Frame-53.png); /* شعار */
    background-size: contain;                          /* ملاءمة الحجم */
    background-repeat: no-repeat;                      /* منع التكرار */
    background-position: center;                       /* توسيط */
    display: block;
    width: 300px;
    height: 100px;
}
store-footer .s-contacts-item {
    background: #ffffff;
}