/** Shopify CDN: Minification failed

Line 187:0 Unexpected "<"
Line 207:0 Unexpected "<"

**/
@font-face {
  font-family: 'Acumin Variable Concept';
  src: url('{{ 'Acumin-Variable-Concept.woff2' | asset_url }}') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@media screen and (max-width: 749px) {
  .collection .grid__item:only-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .h-usp__grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .h-usp__item {
    text-align: center;
  }

  .h-usp__icon img {
    width: 40px; /* Adjust icon size for mobile */
    height: 40px; /* Adjust icon size for mobile */
  }

  .h-usp__text {
    font-size: 10px; /* Adjust text size for mobile */
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .collection .slider.slider--tablet {
    margin-bottom: 1.5rem;
  }
}

.collection .loading-overlay {
  position: absolute;
  z-index: 1;
  width: 1.8rem;
}

@media screen and (max-width: 749px) {
  .collection .loading-overlay {
    top: 0;
    right: 0;
  }
}

@media screen and (min-width: 750px) {
  .collection .loading-overlay {
    left: 0;
  }
}

.collection .loading-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  padding: 0 1.5rem;
  opacity: 0.7;
}

@media screen and (min-width: 750px) {
  .collection .loading-overlay {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.collection.loading .loading-overlay {
  display: block;
}

.collection--empty .title-wrapper {
  margin-top: 10rem;
  margin-bottom: 15rem;
}

@media screen and (max-width: 989px) {
  .collection .slider--tablet.product-grid {
    scroll-padding-left: 1.5rem;
  }
}

.collection__description > * {
  margin: 0;
}

.collection__title.title-wrapper {
  margin-bottom: 2.5rem;
}

.collection__title .title:not(:only-child) {
  margin-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  .collection__title--desktop-slider .title {
    margin-bottom: 2.5rem;
  }

  .collection__title.title-wrapper--self-padded-tablet-down {
    padding: 0 5rem;
  }

  .collection slider-component:not(.page-width-desktop) {
    padding: 0;
  }

  .collection--full-width slider-component:not(.slider-component-desktop) {
    padding: 0 1.5rem;
    max-width: none;
  }
}

.collection__view-all a:not(.link) {
  margin-top: 1rem;
}

/* Clearance Badge Styles */
.clearance-badge {
  border: 1px solid transparent; /* Same border style as black badge */
  border-radius: var(--badge-corner-radius); /* Match corner radius */
  display: inline-block;
  font-size: 1.2rem; /* Same font size as black badge */
  letter-spacing: 0.1rem; /* Match letter spacing */
  line-height: 1; /* Same line height */
  padding: 0.5rem 1.3rem 0.6rem 1.3rem; /* Match padding */
  text-align: center;
  background-color: red; /* Red background for clearance */
  border-color: rgba(var(--color-badge-border), var(--alpha-badge-border)); /* Match border color */
  color: white; /* White text */
  word-break: break-word; /* Same word break as black badge */
  position: absolute; /* Keeps the positioning */
  bottom: 10px; /* Position at the bottom */
  left: 10px; /* Align to the left */
  z-index: 10; /* Ensure it stays on top */
}


.h-usp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

@media screen and (max-width: 749px) {
  .h-usp__grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}
/* Add this to your existing stylesheet or inline style */
.search-bar {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #FFA500; /* Use your store's primary color */
  border-radius: 5px;
  margin-bottom: 20px; /* Adjust margin as needed */
}

.search-bar::placeholder {
  color: #FFA500; /* Use your store's primary color */
  opacity: 0.7;
}

.search-bar-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px; /* Adjust margin as needed */
}
<style>
/* Ensure mobile menu displays all items properly */
@media (max-width: 768px) {
  .oc-mega-menu__right__list {
    max-height: calc(100vh - 100px); /* Adjust maximum height */
    overflow-y: auto; /* Enable scrolling if content exceeds max height */
    display: block; /* Ensure block display on mobile */
  }

  .oc-mega-menu {
    display: block; /* Ensure menu is displayed on mobile */
    position: relative; /* Position relative to parent */
    width: 100%; /* Full width for mobile */
  }

  .oc-mega-menu__link {
    display: block; /* Full clickable area for links */
    padding: 10px 15px; /* Spacing for touch targets */
  }
}
</style>
