/** Shopify CDN: Minification failed

Line 441:16 Unexpected "}"

**/
/* =====================================================
   BLACKSTONE MOBILE FIXES — blackstoneclothes.com
   Add this file to: Shopify Admin > Themes > Edit Code
   > assets/blackstone-mobile-fixes.css
   Then link it in layout/theme.liquid before </head>:
   {{ 'blackstone-mobile-fixes.css' | asset_url | stylesheet_tag }}
   ===================================================== */


/* =====================================================
   FIX 1 — iOS AUTO-ZOOM PREVENTION
   iOS Safari zooms in whenever you tap an input with
   font-size < 16px. Setting all inputs to 16px stops this.
   ===================================================== */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="color"],
select,
textarea {
  font-size: 16px !important;
  -webkit-text-size-adjust: 100%;
}

/* Keep visual style intact — override only font-size */
@media (max-width: 768px) {
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
  }
}


/* =====================================================
   FIX 2 — STICKY NAVIGATION HEADER
   ===================================================== */
@media (max-width: 768px) {

  sticky-header,
  .header-navigation-wrapper,
  #shopify-section-header,
  .header-section,
  .site-header,
  [id*="shopify-section-header"] {
    z-index: 1000 !important;
    overflow: visible !important;
  }

  .bs-announcement-bar,
  .bs-trust-bar {
    position: relative;
    z-index: 999;
  }
}


/* =====================================================
   FIX 3 — REDUCE ANNOUNCEMENT BARS ON MOBILE
   ===================================================== */
@media (max-width: 768px) {

  .bs-trust-bar {
    display: none !important;
  }

  .bs-announcement-bar {
    font-size: 11px !important;
  }

  .bs-announcement-bar__item,
  [class*="promo-bar"],
  [class*="free-ship"] {
    font-size: 11px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}


/* =====================================================
   FIX 4 — FOOTER TAP TARGETS
   ===================================================== */
@media (max-width: 768px) {

  footer a,
  .footer a,
  .site-footer a,
  [class*="footer"] a,
  .footer__menu a,
  .footer-nav a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 44px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}


/* =====================================================
   FIX 5 — STICKY ADD TO CART BAR (Product Pages)
   ===================================================== */
#bs-sticky-atc-bar {
  display: none;
}

@media (max-width: 768px) {
  #bs-sticky-atc-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #111;
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  #bs-sticky-atc-bar.bs-visible {
    transform: translateY(0);
  }

  #bs-sticky-atc-bar .bs-atc-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
  }

  #bs-sticky-atc-bar .bs-atc-title {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.8;
  }

  #bs-sticky-atc-bar .bs-atc-price {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
  }

  #bs-sticky-atc-bar .bs-atc-btn {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 3px;
    padding: 0 24px;
    height: 48px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s, color 0.15s;
  }

  #bs-sticky-atc-bar .bs-atc-btn:active {
    background: #e0e0e0;
  }

  #bs-sticky-atc-bar .bs-atc-btn.bs-loading {
    opacity: 0.6;
    pointer-events: none;
  }
}


/* =====================================================
   FIX 6 — BACK TO TOP BUTTON
   ===================================================== */
#bs-back-to-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  -webkit-tap-highlight-color: transparent;
}

#bs-back-to-top.bs-visible {
  opacity: 1;
  pointer-events: auto;
}

#bs-back-to-top:active {
  transform: scale(0.9);
}

@media (max-width: 768px) {
  #bs-back-to-top.bs-atc-open {
    bottom: 90px;
    transition: bottom 0.3s ease, opacity 0.3s ease;
  }
}


/* =====================================================
   FIX 7 — PRODUCT IMAGE LAYOUT SHIFT (CLS)
   ===================================================== */

.product__media img,
.product-single__media img,
.product-single__photo img,
[class*="product-image"] img,
.product__photo img,
.media > img {
  width: 100%;
  height: auto;
  display: block;
}

.product__media .media,
.product-single__media .media,
[class*="product-media"] .media {
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  [class*="product-card"] .media,
  [class*="product-card"] [class*="image-wrapper"],
  .grid-product__image-wrapper {
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  [class*="product-card"] .media img,
  [class*="product-card"] [class*="image-wrapper"] img,
  .grid-product__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/* =====================================================
   FIX 8 — DISABLE CUSTOM CURSOR ON TOUCH DEVICES
   ===================================================== */
@media (hover: none) and (pointer: coarse) {
  .cursor-wrapper,
  [class*="cursor-dot"],
  [class*="cursor-follower"],
  [class*="custom-cursor"] {
    display: none !important;
    visibility: hidden !important;
  }
}


/* =====================================================
   FIX 8b — MOBILE NAV ACCORDION SUBMENUS
   Injected by blackstone-mobile-fixes.js
   Adds expandable SHOP / MEN / WOMEN submenus to the
   mobile sidebar nav on touch devices.
   ===================================================== */
@media (max-width: 768px) {

  /* Make the list item a positioning context for the toggle arrow */
  .halo-sidebar_menu .bs-has-submenu {
    position: relative;
    overflow: visible !important;
  }

  /* Give the link some right padding so text doesn't overlap the arrow */
  .halo-sidebar_menu .bs-has-submenu > a.menu-lv-1__action {
    padding-right: 54px !important;
  }

  /* The expand/collapse arrow button */
  .bs-submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.25s ease;
    z-index: 2;
  }

  .bs-has-submenu.bs-open > .bs-submenu-toggle {
    transform: rotate(90deg);
  }

  /* Collapsed state — max-height 0 hides it */
  .bs-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
    background: rgba(255, 255, 255, 0.04);
  }

  /* Each column (Men / Women) */
  .bs-mobile-submenu-section {
    padding: 0 16px 10px 28px;
  }

  /* Column header link (e.g. "Men", "Women") */
  .bs-mobile-submenu-header {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 12px 0 7px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* Sub-item list */
  .bs-mobile-submenu ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 0 0 !important;
  }

  /* Each sub-item link */
  .bs-mobile-submenu ul li a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    padding: 4px 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
  }

  .bs-mobile-submenu ul li a:active {
    color: #fff;
  }
}


/* =====================================================
   FIX 9 — GENERAL MOBILE POLISH
   ===================================================== */
@media (max-width: 768px) {

  .product-description p,
  .product__description p,
  [class*="product-desc"] p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  [class*="swatch"] label,
  [class*="variant"] label,
  [class*="option-value"],
  .single-option-selector__radio + label {
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  [class*="quantity"] button,
  [class*="qty"] button,
  .quantity__button {
    min-width: 44px !important;
    min-height: 44px !important;
  }

  a, button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
}


/* =====================================================
   FIX 10 — FEATURED SPOTLIGHT SECTION
      Make all 3 images the same height and remove the
         padding gap between image and title text.
            ===================================================== */

            #spotlight-template--24691166544189__1632296224c9e90203 .image-container {
              height: 550px !important;
                overflow: hidden !important;
                  position: relative !important;
                }

                /* Stretch intermediate wrappers so the img's 100% height resolves to 550px */
                #spotlight-template--24691166544189__1632296224c9e90203 .image-container .img-box,
                #spotlight-template--24691166544189__1632296224c9e90203 .image-container .image-zoom {
                    height: 100% !important;
                      position: relative !important;
                      }
                }
                #spotlight-template--24691166544189__1632296224c9e90203 .image-container img {
                  width: 100% !important;
                      position: absolute !important;
                          top: 0 !important;
                              left: 0 !important;
                    height: 100% !important;
                      object-fit: cover !important;
                        object-position: top center !important;
                        }

                        #spotlight-template--24691166544189__1632296224c9e90203 .content.spotlight-inner {
                          padding-top: 20px !important;
                            padding-bottom: 20px !important;
                            }

                            @media (max-width: 768px) {
                              #spotlight-template--24691166544189__1632296224c9e90203 .image-container {
                                  height: 320px !important;
                                    }
                                    }