/* Add custom CSS styles below */ 
.faqs-list__item label.block.cursor-pointer.p-6.pe-16.text-sm.font-primary.leading-6.transition {
    background: #F8F1E5;
}
.store-header.z-3 .shadow-none:not(.fixed-pinned) .inner *{

    color:#fff !important
}.main-nav-container .bg-white{
    background:#8c7257 
}
.main-nav-container .bg-white *{
    color:#fff !important
}
.s-cart-summary-count{
border:1px solid #fff
}


.s-block--full-bg:first-of-type {
    margin-bottom: 2rem;
}



/*************************/
@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:600px
}

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