/** Shopify CDN: Minification failed

Line 14:28 Expected identifier but found whitespace
Line 14:30 Unexpected "{"
Line 14:40 Expected ":"
Line 14:69 Expected ":"
Line 15:35 Expected identifier but found whitespace
Line 15:37 Unexpected "{"
Line 15:47 Expected ":"
Line 15:83 Expected ":"

**/
:root {
  --instafeed-app-font-size: {{ settings.instafeed_app_font_size }}px;
  --instafeed-app-font-size-mobile: {{ settings.instafeed_app_font_size_mobile }}px;
}
/* ATC button style */

/* Remove button pseudo-elements globally */
.button::before,
.button::after {
  content: none !important;
  display: none !important;
}

/* Base button styles (all buttons) */
.button {
  background-color: #008fd7 !important;

  transition: transform 0.2s ease-in-out !important;
  transform-origin: center !important;
  will-change: transform !important;
  height: 46px !important;
  max-width: 100% !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  border-radius: 5px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Hover effect */
.button:hover {
  transform: scale(1.005) !important;
}

/* Add to Cart button overrides */
.single_add_to_cart_button {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0.75rem 1rem !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 51px !important;
}

.button.white,
.spr-summary-actions-newreview.white,
input[type="submit"].white {
  background: #fff !important;
  color: var(--color-accent) !important;
  border: 0 !important;
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
  height: 47px !important;
  padding: 5px 27px !important;
  border-radius: var(--button-border-radius, 3px) !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  background-image: none !important;
  text-transform: uppercase !important;
  transform: none !important;
  box-shadow: none !important;
}




/* Floating ATC Base Styles */
.floating-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: none;
  align-items: center;
  background: var(--floating-atc-bg);
  border-top: 1px solid var(--floating-atc-border);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 12px 16px;
  height: var(--floating-atc-height);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  will-change: transform;
}

.floating-atc--visible {
  transform: translateY(0);
}

.floating-atc__info {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  margin-left: var(--floating-atc-desktop-title-padding);
}

.floating-atc__title {
  font-size: var(--floating-atc-title-size);
  font-weight: 600;
  color: var(--floating-atc-text);
  margin: 0;
  margin-bottom: var(--floating-atc-title-margin-bottom);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Judge.me Stars Widget Styling - More specific overrides */
.floating-atc__stars {
  font-size: var(--floating-atc-stars-size);
  color: var(--floating-atc-text) !important;
}

/* Override the default Judge.me margin */
.floating-atc__stars .jdgm-widget.jdgm-preview-badge {
  margin-top: var(--floating-atc-stars-margin-top) !important;
  margin-bottom: 15px !important;
}

/* Override Judge.me colors and sizes to match our text color */
.floating-atc__stars .jdgm-preview-badge .jdgm-star {
  color: var(--floating-atc-text) !important;
  font-size: var(--floating-atc-stars-icon-size) !important;
}

.floating-atc__stars .jdgm-preview-badge .jdgm-star.jdgm-star--empty {
  opacity: 0.3;
}

.floating-atc__stars .jdgm-preview-badge .jdgm-prev-badge__text {
  color: var(--floating-atc-text) !important;
  font-size: var(--floating-atc-stars-text-size) !important;
}

.floating-atc__button {
  flex: 0 0 var(--floating-atc-button-width);
  background: var(--floating-atc-button-bg) !important;
  color: var(--floating-atc-button-text) !important;
  font-size: var(--floating-atc-button-text-size) !important;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  border-radius: var(--floating-atc-button-radius);
  transition: opacity 150ms ease;
  margin-right: var(--floating-atc-desktop-button-padding);
  height: var(--floating-atc-button-height);
  font-weight: 500;
}

.floating-atc__button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Mobile styles */
@media (max-width: 767px) {
  .floating-atc {
    height: auto !important; /* Force override any height settings */
    min-height: unset;
    padding: 12px;
    flex-direction: column;
  }
  
  .floating-atc__info {
    width: 100%;
    margin-left: 0;
    margin-bottom: var(--floating-atc-info-margin-bottom-mobile);
  }
  
  .floating-atc__title {
    font-size: var(--floating-atc-title-size-mobile);
    text-align: center;
    margin-bottom: var(--floating-atc-title-margin-bottom-mobile);
  }
  
  .floating-atc__stars {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  /* Override the default Judge.me margin on mobile */
  .floating-atc__stars .jdgm-widget.jdgm-preview-badge {
    margin-top: var(--floating-atc-stars-margin-top-mobile) !important;
    margin-bottom: 0 !important;
  }
  
  /* Override Judge.me star size on mobile */
  .floating-atc__stars .jdgm-preview-badge .jdgm-star {
    font-size: var(--floating-atc-stars-icon-size-mobile) !important;
  }
  
  /* Override Judge.me text size on mobile */
  .floating-atc__stars .jdgm-preview-badge .jdgm-prev-badge__text {
    font-size: var(--floating-atc-stars-text-size-mobile) !important;
  }
  
  .floating-atc__button {
    width: 100%;
    flex: none; /* Remove flex sizing to fix height */
    margin-right: 0;
    font-size: var(--floating-atc-button-text-size-mobile) !important;
    padding: 10px 20px;
    height: var(--floating-atc-button-height-mobile);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Mobile price display */
  .mobile-price-display {
    margin-left: 5px;
    font-weight: 500;
  }
}

.floating-atc {
  height: auto;
}

/* Responsive overrides */
@media (max-width: 767px) {
  .floating-atc {
    height: auto !important;
  }
}



/* Blade Finder popup alignment */

.product-popup-modal__button {
  display: flex !important;
  padding: 12px 20px !important;
  padding-bottom: 2rem !important;
  margin: 0 auto !important;
}
.product-popup-modal__button svg {
  width: 21px !important;
  height: 21px !important;
}
.product-popup-modal__button span {
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
}
.product-popup-modal__button.no-js {
  display: none !important;
}

/* Cart > Active > Icon Color */

.thb-secondary-item-icon {
  position: relative;
}

.thb-item-count {
  position: absolute;
  top: -2px;
  right: -10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #008FD7 !important;
  padding: 0;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


/* Mobile-first full-width cart drawer */
.side-panel.cart-drawer {
  width: 100vw !important;
  max-width: 100% !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Cart drawer structure */
.side-panel-inner {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.side-panel-content {
  flex-grow: 1 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding-bottom: 100px !important;
}

.side-panel-footer {
  padding: 16px !important;
  background: #fff !important;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05) !important;
  position: sticky !important;
  bottom: 0 !important;
  z-index: 1 !important;
}

/* Prevent background scroll when cart drawer is open */
body.open-cc {
  overflow: hidden !important;
  height: 100vh !important;
}

/* Desktop override: restore max-width side panel */
@media (min-width: 768px) {
  .side-panel.cart-drawer {
    width: calc(100vw - 30px) !important;
    max-width: 600px !important;
  }
}

/* Mega menu tweaks */
.thb-full-menu .mega-menu-columns>li>a {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.thb-full-menu li.menu-item-has-children.menu-item-has-megamenu .sub-menu {
    padding-top: 15px;
    padding-bottom: 25px;
    border-top: 1px solid #595959;
}

.thb-full-menu .mega-menu-columns {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  flex-wrap: nowrap;
  gap: 30px;
  padding: 0 50px;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
}

.thb-full-menu .mega-menu-columns > li {
  flex: 0 0 auto !important;
  padding: 0;
}

.mega-menu-columns__heading {
  display: block !important;
  white-space: nowrap;
  text-align: left;
  padding-left: 0;
}

.sub-menu.mega-menu-container {
  display: flex !important;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.sub-menu.mega-menu-container.active {
  display: flex !important;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

/* ─────────────────────────────────────────────────────────────
   Mega Menu Promo Styling — SORD Theme
   - Clean dark styling
   - Image hover effect
   - Badge overlay for "NEW" promo
   - Fully clickable area
   - Layout-safe for narrow menus
───────────────────────────────────────────────────────────── */
/* ───────────────────────────────────────────────
   Mega Menu Promo – Final Optimized Styling
────────────────────────────────────────────── */
.mega-menu-promotion {
  width: 180px; /* slightly wider to avoid right-side cutoff */
  max-width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 0px;
}

.mega-menu-promotion--image {
  position: relative;
  width: 100%;
 /* border: 1px solid rgba(255, 255, 255, 0.05);*/
 /* border-radius: 4px;*/
  overflow: visible; /* allow badge to extend outside the image */
  margin-bottom: 0;
  /* box-shadow: 0 0 7px rgba(137, 137, 137, 0.1); */
}

.mega-menu-promotion--image img {
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain;
  padding: 10px;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
  border-radius: 15px;
}

.mega-menu-promotion:hover .mega-menu-promotion--image img {
  filter: brightness(1);
  transform: scale(1.02);
}

.mega-menu-promotion--content {
  margin-top: 0px;
  text-align: center;
}
.mega-menu-promotion--content p {
    font-size: 10px !important;
}

.mega-menu-promotion--image .promo-badge {
  position: absolute;
  top: 80%; /* starts at the bottom of the image */
  left: 50%;
  transform: translate(-50%, 8px); /* center it + move down */
  background: #318CE6;
  color: #fff !important;
  font-size: 10px;
  padding: 2px 11px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.45), 
              0 0 10px rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1067px) {
  .mega-menu-promotion--image .promo-badge {
    font-size: 10px !important;
    font-weight: 700 !important;
    box-shadow: 0 0 6px #318CE6, 0 0 10px rgba(49, 140, 230, 0.4);
  }
   .mega-menu-promotion--image img {
    filter: none !important;
  }
}
.mobile-menu li .mega-menu-promotion {
    padding-bottom: 15px !important;
}

.mega-menu-promotion--link {
  position: absolute !important;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  z-index: 1;
}
.mega-menu:has(.mega-menu-promotion),
.site-nav__dropdown:has(.mega-menu-promotion) {
  overflow: visible !important;
  padding-bottom: 24px;
}

