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;                   /* إزالة الزوايا الدائرية */
}
.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;
    }
  .banner-entry {
    height: 200px !important;
}

}

.banner-entry {
    height: 400px;
}

@media (min-width: 768px) {
    /* استهداف الحاوية التي تحتوي على 3 أعمدة بالظبط */
    .s-block--banners .grid.md\:grid-cols-3.two-row.grid-flow-row > a:nth-child(1) {
        transform: translateY(60px);
    }
    
    .s-block--banners .grid.md\:grid-cols-3.two-row.grid-flow-row > a:nth-child(3) {
        transform: translateY(60px);
    }
}
section#featured-products-style2-4 {
    background-color: #F7F0ED;
}
section#featured-products-style2-10  {
    background-color: #fff;
}
/* ==============================
   8- المنتجات (Products)
============================== */
.s-product-card-entry,
custom-salla-product-card.s-product-card-entry {
    border: 2px solid #AC7600;               /* إطار المنتج */
    border-radius: 8px;                      /* زوايا دائرية */
    overflow: hidden;                        /* إخفاء المحتوى الزائد */
    padding: 10px;  
      background-color: transparent;/* حشو داخلي */
    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: #AC7600;       /* لون السعر */
    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 درجات لليمين */
}

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

.s-button-btn.s-button-primary-outline:hover {
    background-color: #AC7600;
    color: white;
}
/* يطبق فقط على شاشات الموبايل (أقل من 768 بكسل) */
@media (max-width: 767px) {
    .s-block--banners .grid.one-row.md\:grid-cols-2 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* تقسيم الصف لعمودين بالتساوي */
        gap: 0.75rem !important; /* المسافة الفاصلة بين البانرين في الموبايل */
    }

    /* اختياري: لضمان ضبط أبعاد البانرات بشكل متناسق داخل الجريد الجديد */
    .s-block--banners .grid.one-row.md\:grid-cols-2 .banner-entry {
        width: 100% !important;
    }
}
.store-footer__inner {
    background-image: url(https://ia600504.us.archive.org/18/items/group-1261152786/Group%201261152786.png);
}

.store-footer {
    background-color: #F7F0ED;
}