/** Shopify CDN: Minification failed

Line 167:0 Unexpected "}"

**/
/* 🎨 Color swatch buttons  */
.product-options__section[data-style="text"] .product-options__value {
  background-color: #fff !important;
  border: 1px solid #ccc !important;
  color: #222 !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  text-align: center !important;
  margin: 4px 3px !important;
  min-width: auto !important;
  width: auto !important;
  display: inline-block !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* ✨ Hover effect */
.product-options__section[data-style="text"] .product-options__value:hover {
  background-color: #f5f5f5 !important;
  border-color: #888 !important;
}

/* ✅ Active (selected) swatch */
.product-options__section[data-style="text"] .product-options__value.active {
  background-color: #e8f0ff !important;
  border-color: #0073e6 !important;
  color: #000 !important;
}

/* 🎯 Pill-style dropdown, compact + centered */
.product-options__section[data-style="select"] {
  background-color: #eef1f4 !important;
  color: #222 !important;
  border: 1px solid #666 !important;
  border-radius: 9999px !important; /* Pill shape */
  padding: 4px 12px !important; /* Less vertical padding */
  font-size: 11px !important;
  font-weight: 600 !important;
  height: 24px !important;
  line-height: 1 !important;
  text-align: center !important;
  width: auto !important;
  min-width: 60px !important;
  max-width: 80px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  display: block !important;
  margin: 8px auto !important; /* Centers the dropdown horizontally */
}

/* 🧩 Prevent wide dropdown on click (cross-browser) */
.product-options__section[data-style="select"] option {
  white-space: nowrap !important;
  width: auto !important;
}

.header-top-line {
  font-size: 10px !important;
}

.bm-promo-box__hover:before {
  background-color: rgba(0, 0, 0, 0.2) !important; /* Light black overlay */
}

/* Make collection items stack better on mobile */
@media (max-width: 768px) {
  .grid__item .product {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product .product-options,
  .product .product-form__buttons {
    width: 100%;
    text-align: center;
  }

  .product .product-options__section[data-style="select"] {
    margin-top: 5px;
  }

  .product .product-options__value {
    display: inline-block;
    margin: 3px 2px;
  }
}

.product-card__button--cart {
  color: #111;
  margin-left: 8px;
}

/* Add this to your theme's main CSS file, e.g., theme.css.liquid or styles.css.liquid */

/*added 6/14/25
 * Cart Icon Styles for Product Grid
 * Ensures the new cart icon matches the style and placement of the other icons.
 */
.product-collection__button-add-to-compare .product__btn--cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; /* Adjust if necessary to match other icons */
  height: 40px; /* Adjust if necessary to match other icons */
  padding: 0;
  border: 1px solid var(--color-product-collection-button-border); /* Match theme's border color */
  background-color: var(
    --color-product-collection-button-bg
  ); /* Match theme's bg color */
  border-radius: var(--button-radius); /* Match theme's border radius */
  transition: all 0.2s ease-in-out;
}

.product-collection__button-add-to-compare .product__btn--cart .icon {
  width: 20px; /* Adjust icon size as needed */
  height: 22px; /* Adjust icon size as needed */
  fill: var(
    --color-product-collection-button-text
  ); /* Match theme's icon color */
}

/* Hover state for the new cart icon */
.product-collection__button-add-to-compare .product__btn--cart:hover {
  background-color: var(
    --color-product-collection-button-hover-bg
  ); /* Match theme's hover bg color */
  border-color: var(
    --color-product-collection-button-hover-border
  ); /* Match theme's hover border color */
}

.product-collection__button-add-to-compare .product__btn--cart:hover .icon {
  fill: var(
    --color-product-collection-button-hover-text
  ); /* Match theme's hover icon color */
}

/* Ensure consistent spacing with adjacent buttons */
.product-collection__buttons-section
  .product-collection__button-add-to-wishlist
  + .product-collection__button-add-to-compare {
  margin-left: 10px; /* Adjust as needed for proper spacing */
}
/* hide btn compare from header */
.header__btn-compare {
  display: none !important;
}

/* hide second menu mobile sidebar from header * gt 6/28/25 per gemini/
@media screen and (max-width: 991px) {
  /* Hides the entire container for the secondary menu on mobile devices */
  .popup-navigation__menu.d-lg-none > div[data-js-position-mobile="menu"] {
    display: none !important;
  }
}

