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; /* خلفية شفافة */
}

.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;                   /* إزالة الزوايا الدائرية */
}
/* ==============================
   6- إعدادات البانرات (Banners)
============================== */

salla-slider.photos-slider .swiper-slide {
        margin:0;
        width: 100%;
        padding:0;
    }
    
salla-slider.photos-slider .swiper {
    padding: 0;
}
section.s-block.s-block--photos-slider {
    margin-top: 0;
}

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

section.s-block.s-block--fixed-banner.wide-placeholder:first-of-type {
    margin-top: 0;
}
.two-row .banner-entry:first-child {
    grid-column: span 1 / span 1; /* امتداد عمود واحد */
    grid-row: span 1 / span 2;    /* امتداد صفين */
}

.s-block--banners .grid.two-row {
    display: grid;                         /* تفعيل شبكة العرض */
    grid-template-columns: repeat(4, 1fr); /* 4 أعمدة متساوية */
    gap: 1rem;                             /* مسافة بين العناصر */
}

/* ميديا كويري للشاشات الصغيرة */
@media (max-width: 768px) {
    .s-block--banners .grid.two-row {
        grid-template-columns: repeat(2, 1fr); /* عمودين للشاشات الصغيرة */
        gap: 1rem;
    }
}

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

.s-product-card-image img:hover {
  transform: rotate(5deg); /* تميل 5 درجات لليمين */
}

/* ========== أزرار الشراء والسلة فقط ========== */
.s-button-btn.s-button-primary-outline,
.s-button-btn.s-button-solid,
.s-fast-checkout-button {
    position: relative;
    overflow: hidden;
    border: 2px solid #0B525A;
    background-color: #0B525A;
    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(245, 100, 169, 0.4);
    background-color: #0B525A;
}

/* لمعة متحركة */
.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(245, 100, 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 !important;
    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 #0B525A;
    background-color: #0B525A;
    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(245, 100, 169, 0.4);
    background-color: #0B525A;
}

/* لمعة متحركة */
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(245, 100, 169, 0.3);
}

/* ====== اللودر ====== */
salla-mini-checkout-widget.is-loading {
    position: relative;
    color: transparent !important;
    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); }
}

:root {   
    --color-primary: #0B525A;
}

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

.store-footer a.flex h3 {
    font-size: 0;                                      /* إخفاء النص */
    background-image: url(https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/OqzxOO/oe0X6l1KfGuycHLQqgnUW5UrGE1E1eYbzfVYL9Th.png); /* شعار */
    background-size: contain;                          /* ملاءمة الحجم */
    background-repeat: no-repeat;                      /* منع التكرار */
    background-position: center;                       /* توسيط */
    display: block;
    width: 200px;
    height: 100px;
}
/* ==============================
   5- إعدادات الهيدر والشعار
============================== */

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

/* ==============================
   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;
}
  .banner-entry {
    height: 100px;
}
}

.copyright-text p {
    color: rgb(255 255 255);
}