/** Shopify CDN: Minification failed

Line 225:1 Expected "}" to go with "{"

**/
@media (max-width: 1200px) {
#card-break {
  flex-direction: column;
  align-items: flex-start!important;
}
#card-break-sub {
  flex-direction: column;
      }

  @media (max-width: 768px) {
#card-break {
  flex-direction: row;
  align-items: center!important;
}
#card-break-sub {
  flex-direction: row;
      }





#tip-section code {
  background-color: #f5f5f5; /* Light grey background */
  color: #bbbbbb!important; /* Dark text */
  font-size: 0.9rem; /* Slightly smaller than normal text */
  font-weight: 700;
  padding: 2px 6px; /* Padding for a button-like feel */
  border-radius: 4px; /* Rounded corners */
  border: 1px solid #ddd; /* Subtle border */
}


/* Shop Slider Container */
.shop-slider {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  overflow-x: auto; /* Enable horizontal scroll */
  scroll-snap-type: x mandatory; /* Smooth snap for slider */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */

}

  
/* Hide scrollbars */
.shop-slider::-webkit-scrollbar {
  display: none; /* For Webkit browsers */
}
.shop-slider {
  scrollbar-width: none; /* For Firefox */
}

/* Shop Items */
.shop-item {
  flex: 0 0 85vw; /* Mobile: Items take 85% of the viewport width */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  text-align: left;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  scroll-snap-align: start; /* Snap alignment for slider */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-item:hover {
  opacity: 1;
  text-decoration-line: none;
  transform: translateY(-5px); /* Moves the element 5px up */

}

/* Shop Text */
.shop-text {
  margin-bottom: 3rem;
}

/* Subheadline Styling */
.shop-subheadline {
  font-size: large;
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Headline Styling */
.shop-headline {
  font-size: small;
  line-height: 1.2;
}

/* Button Styling */
.shop-button {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #242423;
  border-radius: 5px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #e1e1e1;
}

/* Responsive Styling */
@media (min-width: 768px) {
  .shop-item {
    flex: 1 0 calc(33.333% - 1rem); /* 3 items side by side on desktop */
    max-width: calc(33.333% - 1rem);
    min-width: auto; /* Ensure consistent sizing on desktop */
  }
  .shop-slider {
    overflow-x: visible; /* No horizontal scrolling on desktop */
  }
  #mobile-only-discount-button {
    display: none!important;
  }

}
@media (max-width: 768px) {

    .shop-slider {
      margin-left: 1rem;
    }

  .shop-item {
    flex: 0 0 75vw;
  }
  #collection-banner-block {
flex-direction: column;
    padding-top: 2rem!important;
  }

  #right-image-block,
  #tip-section {
    display: none!important;
  }
    }

#template--16531931693139__liquid_F9tMzb {
  background-color: #fafafa!important;
}
  
  .shop-tabs {
  display: flex;
  flex-direction: column;
}

.shop-tab-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.shop-tab-pills::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome/Safari */
}

.shop-tab {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding-top: .3rem;
  padding-bottom: .3rem;
  padding-left: .5rem;
  padding-right: .8rem;
  background-color: #f9f9f9;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 300;
  color: #333;
  transition: all 0.3s ease;
  margin-left: 2rem;
}

.shop-tab-icon {
  font-size: 1.2rem;
  color: #F5CB5C;
}

.shop-tab.active {
  background-color: #242423;
  color: #fff;
}
  
.shop-tab-label {
  font-size: medium;
}

.shop-tab.active .shop-tab-icon,
.shop-tab.active .shop-tab-label {
  color: #fff;
  font-size: medium;
}

.shop-tab-content {
  margin-top: 1rem;
}

.shop-tab-pane {
  display: none;
}

.shop-tab-pane.active {
  display: block;
}

@media (max-width: 768px) {
.shop-tab {
    margin-left: 1rem;

}
}