/* Add custom CSS styles below */
.s-block--fixed-banner .container {
  width: 100%;
  max-width: 100%;
  padding:0;
}
section.s-block--fixed-banner:first-of-type {
  margin: 0;
}

/* Base image style (no animation) */
.s-product-card-image img {
  transition: transform 0.4s ease;
}

/* On hover: zoom in and rotate slightly */
.s-product-card-image:hover img {
  transform: scale(1.05) rotate(-2deg);
}

a:visited {
  color: #000; 
}

.navbar-brand img {
    max-height: 5rem;
    }
    .main-nav-container.fixed-pinned .navbar-brand img {
   max-height: 5rem;
}
  .s-product-card-entry {
  border: 2px solid #33C4C4;
  border-radius: 8px; 
}
.s-slider-block__title h2 {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding-right: 40px; /* space for the line */
}
/* Add the yellow line after all h2s inside sliders */
.s-slider-block__title h2::after {
  content: "";
  position: absolute;
  right: 0; /* position in RTL layout */
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: #139597;
}


#page-loader {
  position: fixed;
  inset: 0;
  background-color:#139597;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#page-loader img {
  width: 120px;
  height: auto;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.store-footer__inner {
  background-color: #139597 !important; 
  color: #000;

}
.top-navbar{
  background-color: #139597; 

}