/** Shopify CDN: Minification failed

Line 6:21 Unexpected "-"

**/
Product Badge System - Optimized
.product-badge-container {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  
  pointer-events: none;
  will-change: transform;
}

  .discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e64d3c;
    color: #ffffff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0;
    z-index: 10;
    display: block;
    visibility: visible;
    opacity: 1;
  }


/* Special status badge - bottom left */
.special-status-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #f3c511;
  color: #866400;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
  display: flex;
  align-items: center;
  transform: translateZ(0);
  visibility: visible !important; /* Ensure visibility */
}

/* Special status badge emoji */
.special-status-badge .emoji {
  margin-right: 4px;
}

/* Hide native Shopify badges */
.card__badge, .badge, .price__badge, .color-sale-badge {
  display: none !important;
}

/* Make sure media container has correct positioning */
.card__media,
.product__media-wrapper,
.product-item__image-container,
.card__inner {
  position: relative !important;
  /* overflow: visible !important; Prevent clipping of badges */
}

/* Variant thumbnails should not show badges */
.variant-thumb .product-badge-container {
  display: none !important;
}


/* Clean discount badge fix for mobile */
@media screen and (max-width: 749px) {
  /* Basic badge styling */
  .discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e64d3c;
    color: white;
    font-size: 9px;
    padding: 3px 6px;
    font-weight: bold;
    
    z-index: 10;
    display: block;
    visibility: visible;
    opacity: 1;
  }
  
  /* Ensure media containers show the badges */
  .card__media, 
  .card__inner,
  .media {
    overflow: visible;
    position: relative;
  }
  
  /* Ensure badge container is visible */
  .product-badge-container {
    display: block;
    visibility: visible;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
  }
  
  /* Make sure grid items don't hide badges */
  .grid__item {
    /* overflow: visible; */
  }
}




/* === Fix sticky product info ===
   The slide-in animation leaves a transform on the info wrapper,
   which creates a new containing block and breaks position: sticky.
   After the animation completes, remove the transform. */
.product__info-wrapper.scroll-trigger:not(.scroll-trigger--offscreen) {
  transform: none !important;
}



/* === Fix sticky product info — Part 2 ===
   The .grid class has overflow: hidden in base.css,
   which breaks position: sticky on child elements.
   Override it on the product grid only. */
.product.grid {
  overflow: visible;
}






/* Create a flex container for price and cart button */
.price-cart-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 5px; /* Adjust space from title */
}

/* Left side of the card: name stacked on top of price */
.product-info-left {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0; /* Prevents text overflow from breaking layout */
  padding-right: 10px;
}

/* Remove any default margins from heading inside the flex container */
.product-info-left .card__heading {
  margin: 0;
}


/* Style the product price */
.product-price {
  padding: 0;
  margin: 0;
}


/* Reset any previous positioning on the add-to-cart button */
.card-product__add-to-cart {
  position: static;
  margin: 0;
  margin-right: 10px;
  z-index: 5;
}

/* Style the cart button */
.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #ebebeb;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.add-to-cart-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.add-to-cart-btn svg {
  color: #000;
}

@media screen and (min-width: 750px) {
  .card-wrapper:hover .discount-badge,
  li[id^="Slide-"]:hover .discount-badge {
    top: 10px;
    transition: top 0.3s ease;
  }

  .discount-badge {
    transition: top 0.3s ease;
  }
}


/* Status badges — top left, icon + text */
.status-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  pointer-events: none;
}


/* Popular badge — dark navy like the banner */
.status-badge--popular {
  background-color: #f2c511;
  color: #000;
  font-style: italic;
}

/* Last units badge — urgent red/orange */
.status-badge--last-units {
  background-color: #f2c511;
  color: #000;
  font-style: italic;
}

/* If both badges exist, stack the second one below */
.status-badge--popular + .status-badge--last-units {
  top: 28px;
}

/* Mobile: smaller status badges */
@media screen and (max-width: 749px) {
  .status-badge {
    font-size: 8px;
    padding: 3px 6px;
    gap: 3px;
  }

  .status-badge svg {
    width: 9px;
    height: 9px;
  }

  .status-badge--popular + .status-badge--last-units {
    top: 20px;
  }
}



/* === PRODUCT PAGE: Discount badge top-right of the photo gallery === */

/* Hide the discount badge from the badge-container on the product page,
   since we have a separate one inside the gallery */
.product__media-wrapper > .product-badge-container .discount-badge {
  display: none;
}

/* The standalone discount badge inside the gallery slider —
   pinned to top-right of the photo area */
.product__media-list > .discount-badge--product-page {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}


/* === PRODUCT PAGE: Hide status badges from the gallery (they show below the title instead) === */
.product__media-list > .product-badge-container .status-badge {
  display: none;
}

/* === Status badges below product title — inline flow, not absolute === */
.product-page-status-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Override absolute positioning so they sit inline below the title */
.product-page-status-badges .status-badge--inline {
  position: static;
  pointer-events: auto;
}



/* =============================================
   HEADER DROPDOWN — Match filter panel styling
   ============================================= */

/* --- The dropdown container --- */
.header__submenu.list-menu--disclosure {
  background-color: rgb(var(--color-background));
  border: 1px solid rgba(var(--color-foreground), 0.1);
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  width: 22rem;
  min-width: 22rem;
}

/* --- Each link inside the dropdown --- */
.header__submenu .header__menu-item.list-menu__item {
  font-family: var(--font-heading-family);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(var(--color-foreground), 0.75);
  padding: 0.6rem 1.5rem;
  transition: color 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

/* --- Hover state — navy accent like filter checkboxes --- */
.header__submenu .header__menu-item.list-menu__item:hover {
  color: #fff;
  background-color: #1a344a;
  text-decoration: none;
}

/* --- Active/current page link --- */
.header__submenu .header__menu-item.list-menu__item--active {
  color: #1a344a;
  text-decoration: none;
  position: relative;
}

/* Active indicator — left border bar like a selected filter */
.header__submenu .header__menu-item.list-menu__item--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background-color: #1a344a;
  border-radius: 2px;
}

/* --- Remove default text-decoration on active items --- */
.header__submenu .list-menu__item--active:hover {
  text-decoration: none;
}

/* --- Divider between dropdown heading area and links (optional) ---
   If you want a top border matching the filter panel heading border */
.header__submenu.list-menu--disclosure::before {
  content: '';
  display: block;
  border-top: 2px solid #1a344a;
  margin: 0 1.5rem 0.5rem;
}

/* --- Caret icon inside summary (the dropdown trigger) ---
   Make sure it matches the navy color */
.header__menu-item .svg-wrapper {
  transition: color 0.2s ease;
}

details[open] > .header__menu-item .svg-wrapper {
  color: #1a344a;
}

/* --- Responsive: slightly wider on desktop --- */
@media screen and (min-width: 990px) {
  .header__submenu.list-menu--disclosure {
    width: 24rem;
    min-width: 24rem;
  }

  .header__submenu .header__menu-item.list-menu__item {
    font-size: 1rem;
    padding: 0.7rem 1.75rem;
  }
}

/* --- Mobile: full-width feeling inside drawer ---
   (This won't affect the desktop dropdown, only
   if links appear inside the mobile drawer) */
@media screen and (max-width: 989px) {
  .header__submenu.list-menu--disclosure {
    width: 100%;
    min-width: unset;
  }
}
/* === Discount badge inside the status badges row === */
.status-badge--discount {
  background-color: #e53935;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* === On mobile: hide the discount badge from the photo gallery === */
@media screen and (max-width: 749px) {
  .discount-badge--product-page {
    display: none !important;
  }
}

/* === On desktop: hide the discount badge from the info column (it stays on the photo) === */
@media screen and (min-width: 750px) {
  .status-badge--discount {
    display: none !important;
  }
}

