:root{
    --one:#e39090;
    --two:#ffffff;
    --thr:#e9d3c9;
    --back: whitesmoke;
    --grid:6;
    --gridmob:3;
    --logo: url();
}


body{
    background-color: #e9d7cc;
} 
/*--------------------*/
/* 
body#app {
    background-color: #fff5ea;
} */
 
/* Slider */
section.s-block.s-block--photos-slider salla-slider.photos-slider .swiper-slide,
 [dir=rtl] salla-slider.photos-slider .swiper,
 salla-slider.photos-slider .swiper:where([dir=rtl],[dir=rtl] *),
 section.s-block.s-block--photos-slider:first-of-type
 {
    width: 100%;
    margin: 0;
    padding:0;
}
/*--------------------*/

/* unset  */
section.s-block.s-block--fixed-banner.wide-placeholder,  .banner--fixed img, .banner-entry {
    background-color: unset;
}
/*--------------------*/

/* grid */
/* .two-row .banner-entry:first-child {
    grid-column: span 1/span 1;
    grid-row: 1/2;
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(var(--grid),minmax(0,1fr));
}

.banner-entry {
    height: 225px;
} */

section.s-block.s-block--banners.container .lazy__bg.lazy.entered.loaded {
    background-size: contain;
    background-repeat: no-repeat;
}
/*--------------------*/

/*center*/
.flex.mb-6, .s-product-card-content-sub, .store-footer a, .s-product-card-content-title a, .store-footer .contact-social ul {
    text-align: center!important;
    justify-content: center !important;

}
/*--------------------*/

/*prouduct*/
.s-slider-block__title h2:where([dir=rtl],[dir=rtl] *) {
    display: none;
}
#slider-with-bg-4 > div.s-slider-block__title > div.s-slider-block__title-right > h2 {
    display: none;
}

.s-button-element:not(:disabled):not([loading]) {
    /* background-color: var(--one); */
    border: 2px solid var(--one);
    color: #c38a47 !important;
}

button.undefined.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center {
    color: var(--two);
}

button.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center {
    color: white;
}

.s-product-card-content {
    background-color: var(--two);
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.s-product-card-vertical {
    border: 3px solid var(--one);
    box-shadow: 0 0 5px var(--one);
}

.s-product-card-entry {
    height: 97%;
}
/*--------------------*/

/*footer*/
.footer-is-light .store-footer .store-footer__inner {
    text-align: center!important;
    justify-content: center !important;
    background-color: var(--one);
    color: var(--two);
}
/*--------------------*/
/* Desktop & Computer */
.square-photos-grid--featured-5 {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
}

/* أول صورة تاخد حجم عمودين */
.square-photos-grid--featured-5 .banner-entry:nth-child(1) {
    grid-column: span 2 !important;
}

/* باقي الصور، كل صورة عمود واحد */
.square-photos-grid--featured-5 .banner-entry:nth-child(2),
.square-photos-grid--featured-5 .banner-entry:nth-child(3),
.square-photos-grid--featured-5 .banner-entry:nth-child(4),
.square-photos-grid--featured-5 .banner-entry:nth-child(5) {
    grid-column: span 1 !important;
}

a.banner-entry.square-photos {
    height: 355px !important;
}

.square-photos-grid--featured-5 {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
}

.square-photos-grid--featured-5 .banner-entry:nth-child(1) {
    grid-column: span 1 !important;
}
```css
/* ==========================================
   ORLA - 4 CATEGORIES GRID
   Desktop: 4 in one row
   Mobile: 2 x 2
========================================== */

/* القسم نفسه */
section[data-testid="store-home-square-photos"] {
    width: 100% !important;
}

/* الـ Grid */
section[data-testid="store-home-square-photos"]
.square-photos-grid--equal-2 {
    display: grid !important;

    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    gap: 20px !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* كل قسم على الديسكتوب */
section[data-testid="store-home-square-photos"]
.square-photos-grid--equal-2
a.banner-entry.square-photos {
    display: block !important;

    width: 100% !important;
    height: 420px !important;

    min-height: 420px !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 18px !important;

    overflow: hidden !important;

    background: transparent !important;

    box-sizing: border-box !important;
}

/* الصورة */
section[data-testid="store-home-square-photos"]
.square-photos-grid--equal-2
a.banner-entry.square-photos
.lazy__bg {
    width: 100% !important;
    height: 100% !important;

    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    border-radius: 18px !important;

    transition: transform 0.35s ease !important;
}

/* Hover للديسكتوب */
@media (min-width: 768px) {

    section[data-testid="store-home-square-photos"]
    .square-photos-grid--equal-2
    a.banner-entry.square-photos:hover
    .lazy__bg {
        transform: scale(1.025);
    }
}


/* ==========================================
   TABLET
========================================== */

@media (min-width: 768px) and (max-width: 1200px) {

    section[data-testid="store-home-square-photos"]
    .square-photos-grid--equal-2 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    section[data-testid="store-home-square-photos"]
    .square-photos-grid--equal-2
    a.banner-entry.square-photos {
        height: 300px !important;
        min-height: 300px !important;
    }
}


/* ==========================================
   MOBILE
   2 فوق + 2 تحت
========================================== */

@media (max-width: 767px) {

    section[data-testid="store-home-square-photos"]
    .square-photos-grid--equal-2 {

        display: grid !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        grid-template-rows: repeat(2, auto) !important;

        gap: 12px !important;

        width: 100% !important;

        overflow: visible !important;
    }


    /* الأقسام على الموبايل */
    section[data-testid="store-home-square-photos"]
    .square-photos-grid--equal-2
    a.banner-entry.square-photos {

        display: block !important;

        width: 100% !important;

        /*
         * ارتفاع كبير بالنسبة للموبايل
         */
        height: 280px !important;

        min-height: 280px !important;

        margin: 0 !important;
        padding: 0 !important;

        border-radius: 14px !important;

        overflow: hidden !important;

        box-sizing: border-box !important;
    }


    /* الصورة */
    section[data-testid="store-home-square-photos"]
    .square-photos-grid--equal-2
    a.banner-entry.square-photos
    .lazy__bg {

        width: 100% !important;
        height: 100% !important;

        background-size: contain !important;

        background-position: center !important;

        background-repeat: no-repeat !important;

        border-radius: 14px !important;
    }
}


/* ==========================================
   موبايلات صغيرة جدًا
========================================== */

@media (max-width: 380px) {

    section[data-testid="store-home-square-photos"]
    .square-photos-grid--equal-2 {
        gap: 9px !important;
    }

    section[data-testid="store-home-square-photos"]
    .square-photos-grid--equal-2
    a.banner-entry.square-photos {
        height: 235px !important;
        min-height: 235px !important;
    }
}
```