/** Shopify CDN: Minification failed

Line 65:0 All "@import" rules must come first

**/
/* Simple loader spinner for add-to-cart button */
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--color, currentColor);
  border-radius: 50%;
  width: var(--size, 1em);
  height: var(--size, 1em);
  animation: spin 0.7s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fade-in {
  animation: fadeIn var(--duration, 0.5s) ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeUp {
    /* Initial state (0% or 'from') */
    from {
        opacity: 0;
        transform: translateY(var(--fade-up-distance, 20px)); /* Starts 20px below its final position */
    }
    /* Final state (100% or 'to') */
    to {
        opacity: 1;
        transform: translateY(0); /* Ends at its original vertical position */
    }
}
/* ========================================================================== */
/* Generic Collapsable Content Styles */
.collapsable-content > :last-child {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}
.collapsable-content.active > :last-child,
.collapsable-content.toggle-hover:hover > :last-child {
  max-height: 500px;
}
.collapsable-content > :last-child p {
  margin: 16px 0;
}
.collapsable-content > :last-child a:first-child p {
  margin-top: 4px;
  margin-bottom: 16px;
}
.collapsable-content > :last-child a:last-child p {
  margin-bottom: 4px;
  margin-top: 16px;
}
@import "bootstrap-icons/font/bootstrap-icons.css";
.content-margin {
  box-sizing: border-box;
  max-width: min(1700px, 100vw);
  padding-left: clamp(16px, 4vw, 64px);
  padding-right: clamp(16px, 4vw, 64px);
  width: 100%;
  margin: 0 auto;
}
.content {
  max-width: min(1700px, 100vw);
  width: 100%;
  padding-left: clamp(16px, 4vw, 64px);
  padding-right: clamp(16px, 4vw, 64px);
  box-sizing: border-box;
  margin: 0 auto;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  font-weight: normal;
  margin: 0;
}

img.overlay-image, .overlay-image img {
  -webkit-user-drag: none; /* Safari, Chrome, Opera */
  -moz-user-drag: none;    /* Firefox (older versions might have issues) */
  -ms-user-drag: none;     /* Internet Explorer */
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none; /* Safari support */
  -moz-user-select: none; /* Firefox support */
  -ms-user-select: none; /* IE support */
  -webkit-touch-callout: none; /* Prevent iOS callout */
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
  touch-action: pan-y; /* Allow vertical scroll, prevent horizontal gestures */
}
h1, .h1 { font-size: clamp(1.7rem, 1.5rem + 2vw, 2.5rem); }
h2, .h2 { font-size: clamp(1.25rem, 1.2rem + 1.5vw, 2rem); }
h3, .h3 { font-size: clamp(0.95rem, 1rem + 1vw, 1.5rem); }
h4, .h4 { font-size: clamp(0.85rem, 0.95rem + 0.7vw, 1.25rem); }
h5, .h5 { font-size: clamp(0.8rem, 0.85rem + 0.5vw, 1.125rem); }
h6, .h6 { font-size: clamp(0.68rem, 0.7rem + 0.3vw, 1rem); letter-spacing: 1px; }

p {
  line-height: 1.5rem;
}
/* ========================================================================== */
/*                       INLINE MENU STYLES */
.inline-menu {
  display: flex;
  gap: var(--spacing, 24px);
  align-items: var(--align, center);
}

.inline-menu__left, .inline-menu__center, .inline-menu__right {
  display: flex;
  align-items: center;
  gap: var(--spacing, 24px);
}

.inline-menu .inline-menu__left, .inline-menu .inline-menu__center, .inline-menu .inline-menu__right {
    flex: 1 1 0;
    min-width: 0;
}

.inline-menu__left {
    justify-content: flex-start;
}

.inline-menu__center {
    justify-content: center;
}

.inline-menu__right {
    justify-content: flex-end;
}

/* ========================================================================== */
.hidden-menu {
  list-style: none;
  display: flex;
  text-decoration: none;
  gap: var(--spacing, 24px);
}

a.hidden-link {
  text-decoration: none;
  color: inherit;
}

.hidden-button { 
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.hidden-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cutoff-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}

/* ========================================================================== */
/*                                FORM STYLES                                 */
.shop-textbox {
    outline: none;
    border: 1px solid #ccc;
    padding: 0.75rem;
    font-size: 1rem;
    width: 100%;
    font-family: inherit;
}

.shop-textbox:focus {
    border-color: var(--secondary-color);
}
/* ========================================================================== */
/*                            COLLAPSABLE CONTENT STYLES                      */  
.collapsable-content > :last-child {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  max-height: 0;
}

.collapsable-content.active > :last-child {
  max-height: 500px;
}

.collapsable-content.toggle-hover:hover {
  cursor: pointer;
}

.collapsable-content.toggle-hover:hover > :last-child {
  max-height: 500px;
}

/* ========================================================================== */
/*                            HAMBURGER MENU STYLES                           */
.hamburger__menu > :nth-child(2) {
  position: fixed;
  display: block;
  z-index: 1000;
  top: 0;
  height: 100vh;

  transition: transform 0.4s ease;
}

.hamburger__menu.hamburger__left > :nth-child(2) {
  left: 0;

  transform: translateX(-100vw);
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
}

.hamburger__menu.hamburger__right > :nth-child(2) {
  right: 0;
  left: auto;
  transform: translateX(100vw);
  box-shadow: -3px 0 4px rgba(0,0,0,0.1);

  transition: transform 0.4s ease;
}

.hamburger__menu.hamburger__up > :nth-child(2) {
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  transform: translateY(-100vh);
  z-index: -1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hamburger__menu.hamburger__down > :nth-child(2) {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  transform: translateY(100vh);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  z-index: -1;

  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.hamburger__menu > :last-child.active {
  transform: translate(0, 0);
  z-index: 100;
}

@media (max-width: 1023px) {
  .header__hamburger {
    display: flex !important;
  }
  .hamburger__menu {
    display: block;
  }
}
@media (min-width: 1024px) {
  .hamburger__menu.hamburger__mobile-only {
    display: none !important;
  }
}

/* ========================================================================== */
/*                           IMAGE WITH TEXT STYLES                          */
.image-with-text {
  display: flex;
  flex-direction: row;
  gap: var(--gap, 8px);
  align-items: center;
}

/* ========================================================================== */
/*                           COLLAPSABLE CONTENT STYLES                       */
.dropdown-content {
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  padding: 16px 0;
  box-sizing: border-box;
  
  pointer-events: none;
}

.toggle-hover:hover .dropdown-content, .dropdown-content.active {
  display: block;
  opacity: var(--init-opacity, 1);
  pointer-events: auto;
}

.dropdown-content p {
  min-height: 1.5em;
  padding: 0 24px;
  font-size: 1.2rem;
}

/* ========================================================================== */
/*                           ATC BUTTON STYLES                                */
atc-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--button-width, 100%);
  box-sizing: border-box;
  
  padding: var(--button-padding, 12px 24px);
  margin-top: var(--button-margin-top, 16px);

  background-color: var(--button-background-color, transparent);
  color: var(--button-text-color, var(--secondary-color));
  border: 1px solid var(--button-border-color, var(--secondary-color));
  transition: background-color 0.3s, color 0.3s;
  outline: none;    
  cursor: pointer;
}
atc-button:not(.disabled):hover {
  background-color: var(--button-hover-background-color, var(--button-text-color, var(--secondary-color)));
  color: var(--button-hover-text-color, var(--button-background-color, white));
}
atc-button h6 {
  margin: 0;
  font-weight: 600;
  text-align: center;
  font-size: var(--button-text-size, auto);
}
atc-button.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* ========================================================================== */
/*                           MINI PRODUCT CARD STYLES                         */

mini-product-card, .mini-product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: clamp(160px, 20vw, 200px);
  box-sizing: border-box;
}

.mini-product-card__image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.mini-product-card__image-wrapper .mini-product-card__thumbnail {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mini-product-card__content {
  text-align: center;
  margin-top: 8px;
  padding: 0 8px;
  text-wrap: balance;

  h6 {
    font-weight: 500;
  } 
}

.mini-product-card__vendor {
  font-size: 0.75rem;
  color: var(--text-muted-color, #333);
  margin-bottom: 6px;
  font-weight: 600;
}

.mini-product-card__price-container {
  display: flex; 
  justify-content: space-between; 
  margin-top: 8px;

  padding: 0 12px 16px 12px;
  h6 {
    font-weight: 400;
  } 
}

mini-product-card atc-button {
  margin-top: 0px;
}

/* ========================================================================== */
/*                           PRODUCT CARD BADGE STYLES                         */
.product-card__badge__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  margin: 12px;
  
  text-transform: uppercase;
  font-size: 12px; 
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .product-card__badge__container {
    flex-direction: column;
    gap: 8px;
  }
}
.product-card__badge {
  padding: 4px 8px;
  background-color: var(--badge-background-color, var(--accent-color));
  height: fit-content;
  width: fit-content;
  color: var(--badge-color, white);
  z-index: 3;
}

