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



section.s-block.container.s-block--banners 
.grid.md\:grid-cols-3.two-row 
.banner-entry:last-child {
    grid-column: auto !important;
}
section.s-block.container.s-block--banners 
.banner-entry .lazy__bg {
    background-size: contain !important;
    background-position: center;
    background-repeat: no-repeat;
  background-color: white;
}

/* ميديا كويري للشاشات الصغيرة */
@media (max-width: 768px) {
  .banner-entry {
    min-height: 85px;
  }
}

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

@media (min-width: 1024px) {
    .s-block--fixed-banner .banner--fixed {
        max-height: 836px;
    }
}


.footer-is-light .store-footer {
    background-color: #101828;
    color: rgb(255 255 255);
}

/* ==============================
   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;                   /* إزالة الزوايا الدائرية */
}