:root{
    --one:#1c7d9f;
    --two:#ffffff;
    --thr:#ffd29d;
    --back: whitesmoke;
    --grid:4;
    --gridmob:2;
    --logo: url();
}

/* background */
/* body {
    background-image: var(--back);
} */
/* 
body{
    background-color: var(--back);
} */
/*--------------------*/


/* 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: #1c5265 !important;
    border: 2px solid var(--one);
    color: var(--two);
}

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-product-card-wishlist-btn.animated.s-button-element.s-button-icon.s-button-outline.s-button-light-outline.s-button-loader-center {
    color: var(--one) !important;
    } */

.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);
}
/*--------------------*/

/*media*/
@media (max-width:767px){
    .swiper-wrapper>div {
        width: 56%;
    }
    .banner-entry {
    height: 114px;

    }
    .md\:grid-cols-3 {
      grid-template-columns: repeat(var(--gridmob),minmax(0,1fr));
    }
    #app > div.app-inner.flex.flex-col.min-h-full > footer > div.store-footer__inner > div > div.lg\:col-span-2.rtl\:lg\:pr-20.ltr\:lg\:pl-20 > div {
        justify-content: center;
    }
}

@media (min-width:768px) and (max-width:1200px){
    .banner-entry {
    height: 360px;
    }
        #app > div.app-inner.flex.flex-col.min-h-full > footer > div.store-footer__inner > div > div.lg\:col-span-2.rtl\:lg\:pr-20.ltr\:lg\:pl-20 > div {
        justify-content: center;
    }
}
/*--------------------*/

.lazy__bg.lazy.entered.loaded {
    transition: transform .5s;
}
.lazy__bg.lazy.entered.loaded:hover {
    transform: scale(.9);
}



#location-section {
    direction: rtl;
    background: #f6f7f9;
    padding: 40px 20px;
    font-family: "Cairo", sans-serif;
}

#location-section .section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.info-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transition: transform .2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card .icon {
    font-size: 22px;
    background: #1c7d9f;
    color: #ff6b4a;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-card h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.info-card p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.map-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.info-card.clickable {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.info-card.clickable:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,.1);
}

/* Mobile */
@media (max-width: 768px) {
    #location-section {
        padding: 30px 15px;
    }

    .map-wrapper {
        height: 300px;
    }
}