/* Header */
body.index #mainnav:not(#mainnav.fixed-header) * {
  color: #fff !important;
}
body.index #mainnav:not(#mainnav.fixed-header) .sub-menu * {
  color: var(--color-primary) !important;
}
.navbar-brand img {
    max-height: 9rem;
}
@media (min-width: 1024px) {
    .store-header {
        background-image: linear-gradient(180deg, #000000aa, transparent);
    }
}
@media (max-width: 768px) {
  .store-header {
      position: static !important;
  }
  body.index #mainnav:not(#mainnav.fixed-header) * {
      color: var(--color-primary) !important;
  }
}

/* Landing-page */
.main_banner_0 h1 {
    margin: 0;
}
.main_banner_0 .text-center {
    margin-top: 10%;
    background-color: #ffffff77;
    padding: 2.5rem 0;
    border-radius: 20px;
}
.main_banner_0 .text-center button {
  color: #fff;
}
.main_banner_0 > div > div > div {
  margin: -5% auto 0px;
}
.main_banner_0 .text-center button:hover span, .main_banner_0 .text-center button:hover i {
    color: #000;
}
.main_banner-0 p {
    opacity: 1;
    font-weight: 400;
}
.main_banner-0 h1,
.main_banner-0 p {
    color: #fff;
}
.main_banner-0 .w-fit {
    background-color: var(--color-primary);
    padding: 1rem 3rem;
}
.main_banner-0 .head_img > div {
    padding: 0;
    align-items: center !important;
}
@media (min-width: 992px) {
    .main_banner-0 > div > div > div {
        max-width: 600px;
        margin-right: 5%;
    }
    .main_banner-0 h1 {
        font-size: 50px !important;
        line-height: 5rem;
    }
    .main_banner-0 p {
        font-size: 25px !important;
        line-height: 2.0rem;
        margin: 2% auto;
    }
}
@media (max-width: 768px) {
    .main_banner-0 > div > div > div {
        max-width: 100%;
        margin: auto;
        margin-top: 35%;
        position: absolute;
        bottom: 0;
        width: 100%;
        align-items: center !important;
        text-align: center !important;
        padding-bottom: 5%;
    }
}
@media (max-width: 576px) {
    .main_banner-0 .text-center {
        margin-top: 45%;
    }
    .main_banner-0 p {
        font-size: 14px !important;
        max-width: 95%;
    }
}

/* CATS */
.categories ul {
    justify-content: center;
    gap: 5%;
}
.categories ul li {
    margin-top: 5%;
}
@media (min-width: 992px) {
    .categories ul li {
        width: 170px;
    }
}

/* rooms */
.rooms h1 {
    color: #fff;
}

/* Fixed Banner Img */
.fixed-banner-img .relative .absolute {
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.fixed-banner-img .container > .relative > div * {
    color: #fff !important;
    border-color: #fff;
}
.fixed-banner-img {
    margin-top: 5%;
}
@media (min-width: 992px) {
    .fixed-banner-img > div {
        flex-direction: row
    }
}

/* Img Banner Text */
.img-banner-text > div > div:first-child {
    justify-content: center;
}

/* offers */
@media (min-width: 992px) {
    salla-add-product-button[width=wide] {
        max-width: 50%;
    }
}

/* Features */
.features {
    margin-top: 5%;
}

/* Media */
.media .shape * {
    color: #fff;
}
.media > div {
  background-color: var(--color-primary);
}

/* details */
@media (max-width: 1024px) {
    .details-sec .grid {
        height: 220vh !important;
        margin-inline: auto;
    }
    .details-sec .grid > div:nth-child(2) {
        height: 90vh
    }
}
@media (max-width: 768px) {
    .details-sec .grid {
        height: 170vh !important;
        margin-inline: auto;
    }
    .details-sec .grid > div:nth-child(2) {
        height: 80vh
    }
}
@media (max-width: 576px) {
    .details-sec .grid {
        height: 105vh !important;
        margin-inline: auto;
    }
    .details-sec .grid > div:nth-child(2) {
        height: 48vh
    }
}

/* Footer */
.store-footer > .relative * {
    color: #fff !important;
}
.store-footer .email_button {
    color: var(--color-primary) !important;
}
#mc-embedded-subscribe {
    background: #fff;
    color: var(--color-primary) !important;
}
#mc-embedded-subscribe:hover {
    opacity: 0.7;
}
.store-footer .s-contacts-list.s-contacts-list-vertical {
    align-items: center;
}
.outline-none {
    border: none;
}
/* Center LeVisa Footer for Mob */
@media (max-width: 992px) {
    .store-footer__inner > div * {
        justify-content: center;
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }
}

/* whats app */
.index a.whatsapp-info {
    bottom: 7.5rem !important;

    right: 20px !important;
}
.not-show h3.s-product-card-content-title a {
    font-size: 22px!important;
}
@media (max-width: 576px) {
.product-single .back-to-top {
    bottom: 80px !important;
}
 .product-single .whatsapp-info {
    right: 20px;
}
.product-single article {
    font-size: 15px;
    line-height: 22px;
}
}


/* pop-up CSS */
 /* Animation keyframes for zoom-in effect */
@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* Styles for overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styles for popup container */
.popup-container {
  z-index: 101;
  animation: zoomIn 1s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Styles for popup header */
.popup-header {
  display: flex;
  justify-content: flex-end;
}

/* Styles for close button */
#closeButton {
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  color: white;
  position: absolute;
  top: -30px;
  left: -25px;
}

.popup-content img {
max-width:500px
}

@media(max-width:767px){
.popup-content img {
max-width:300px
}
}