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


/* ==============================
   2- إعدادات الصفحة الأساسية (Body)
============================== */
body {
    background-image: url(https://i.ibb.co/gb7fLLzX/HOWLITE.png); /* صورة الخلفية */
    background-size: cover;        /* تغطي الصفحة بالكامل */
    background-position: center;    /* توسيط الصورة */
    font-family: "Kufam" !important;/* خط النص */
}

.index section.s-block--fixed-banner:nth-of-type(4) > .container{
    max-width: 40%; /* تمديد الكونتينر بعرض الصفحة */
    padding: 0;      /* إزالة الهوامش الداخلية */
}

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


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

.banner-entry {
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),       /* حركة تكبير/تصغير */
        background-size 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), /* انتقال حجم الخلفية */
        background-position 0.6s ease;                             /* انتقال موضع الخلفية */
}

.banner-entry:hover {
    transform: scale(1.05) translateY(-10px); /* تكبير وتحريك لأعلى عند الهوفر */
}

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


/* ==============================
   5- إعدادات الهيدر والشعار
============================== */


.main-nav-container.fixed-pinned .navbar-brand img,
.navbar-brand img {
    max-height: 3rem; /* تحديد أقصى ارتفاع للشعار */
}


/* ==============================
   7- عناوين الأقسام (Titles)
============================== */
.s-block__title {
    justify-content: center; /* توسيط العنوان */
}



.s-block__title .right-side:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 0; /* إزالة الحشو لليمين */
}



section.s-block.s-block--banners.container .s-block__title .right-side h2 {
    font-weight: bold;
    font-size:1.5rem;
}

.s-slider-block__title h2:where([dir="rtl"], [dir="rtl"] *),
.s-slider-block__title-right:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 0;
}


/* ==============================
   8- المنتجات (Products)
============================== */
.s-product-card-entry,
custom-salla-product-card.s-product-card-entry {
    border: 2px solid #4DA1A9;               /* إطار المنتج */
    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:  #4DA1A9;       /* لون السعر */
    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;
}


/* ========== أزرار الشراء والسلة فقط ========== */
.s-button-btn.s-button-primary-outline,
.s-button-btn.s-button-solid,
.s-fast-checkout-button {
    position: relative;
    overflow: hidden;
    border: 2px solid #4DA1A9;
    background-color: #4DA1A9;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    padding: 12px 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* تأثير التكبير عند الهوفر */
.s-button-btn.s-button-primary-outline:hover,
.s-button-btn.s-button-solid:hover,
.s-fast-checkout-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(77, 161, 169, 0.4);
    background-color: #5db3bb;
}

/* لمعة متحركة */
.s-button-btn.s-button-primary-outline::after,
.s-button-btn.s-button-solid::after,
.s-fast-checkout-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

/* تحريك اللمعة عند الهوفر */
.s-button-btn.s-button-primary-outline:hover::after,
.s-button-btn.s-button-solid:hover::after,
.s-fast-checkout-button:hover::after {
    left: 200%;
}

/* تأثير عند الضغط */
.s-button-btn.s-button-primary-outline:active,
.s-button-btn.s-button-solid:active,
.s-fast-checkout-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(77, 161, 169, 0.3);
}

/* ========== اللودر (Spinner) عند التحميل ========== */
.s-button-btn.s-button-primary-outline.is-loading,
.s-button-btn.s-button-solid.is-loading,
.s-fast-checkout-button.is-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.s-button-btn.s-button-primary-outline.is-loading::before,
.s-button-btn.s-button-solid.is-loading::before,
.s-fast-checkout-button.is-loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====== ويدجت salla-mini-checkout-widget ====== */
salla-mini-checkout-widget,
salla-mini-checkout-widget .s-add-product-button-mini-checkout-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    border: 2px solid #4DA1A9;
    background-color: #4DA1A9;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;  
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

/* تأثير التكبير عند الهوفر */
salla-mini-checkout-widget:hover,
salla-mini-checkout-widget .s-add-product-button-mini-checkout-content:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(77, 161, 169, 0.4);
    background-color: #5db3bb;
}

/* لمعة متحركة */
salla-mini-checkout-widget::after,
salla-mini-checkout-widget .s-add-product-button-mini-checkout-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

salla-mini-checkout-widget:hover::after,
salla-mini-checkout-widget .s-add-product-button-mini-checkout-content:hover::after {
    left: 200%;
}

/* تأثير عند الضغط */
salla-mini-checkout-widget:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(77, 161, 169, 0.3);
}

/* ====== اللودر ====== */
salla-mini-checkout-widget.is-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

salla-mini-checkout-widget.is-loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* ==============================
   10- الفوتر (Footer)
============================== */
.store-footer__inner {
    background-color: #4DA1A9; /* خلفية الفوتر */
}

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



/* ==============================
   12- responsive
============================== */

@media(max-width:767px){
#photos-0-slider > div.swiper.s-slider-container.swiper-initialized.swiper-horizontal.swiper-rtl.swiper-ios.swiper-backface-hidden{
   padding:0;
}
.s-products-slider-card {
    max-width: 185px;
}
.main-nav-container {
    min-height: 56px;
}
  .s-button-element:not(:disabled):not([loading]) {
    font-size: 11px;
}
}

.s-slider-block__title-left {
    display: none;

}
.s-slider-block__title {
    justify-content: center;
}
.object-cover {
    object-fit: contain;
}
}