/** Shopify CDN: Minification failed

Line 266:0 Unexpected "}"

**/
/* ============================================
   MYALEPH-CUSTOM: Conversion Optimization CSS
   Last updated: 2026-03-15
   ============================================ */

/* --- ATC Button: Solid fill for prominence + increased size --- */
.product__block__buttons .btn--add-to-cart {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.product__block__buttons .btn--add-to-cart:hover {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
}

.product__block__buttons .btn--add-to-cart[disabled] {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #666666;
}

/* Keep the loading and success states working */
.product__block__buttons .btn--add-to-cart.loading,
.product__block__buttons .btn--add-to-cart.has-success {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

/* --- Grid rating: match body font --- */
.product__rating,
.product__rating__value,
.product__rating__count {
  font-family: var(--FONT-STACK-BODY), sans-serif;
}

/* --- Cross-sell "Complete the Look" --- */
.cross-sell-wrapper {
  padding-bottom: var(--PB, 30px);
}

.cross-sell__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 12px;
}

.cross-sell__products {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cross-sell__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}

.cross-sell__item:hover {
  border-color: #1a1a1a;
}

.cross-sell__image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.cross-sell__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.cross-sell__product-title {
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}

.cross-sell__price {
  font-size: 12px;
  color: #666;
  margin: 2px 0 0;
}
/* ============================================
   MYALEPH-CUSTOM: Conversion Optimization CSS
   CTA Buttons and Hover over Button changes
   Last updated: 2026-03-20
   ============================================ */


/* ============================================
   Quick-Add Button – circle + icon (mobile),
   full-width "Quick add" bar (desktop)
   Updated: 2026-03-24
   ============================================ */

/* --- Toolbar: always visible, positioned bottom-left --- */
[class*="quick-actions-toolbar"] {
  opacity: 1 !important;
  transform: translateY(0) !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

/* --- Main Quick-Add button – DEFAULT state --- */
[class*="quick-actions-toolbar"] button.stain-button-white {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: none !important;
  pointer-events: auto;
  position: relative;
  cursor: pointer;
  overflow: hidden !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transition: all 0.25s ease;
}

/* --- Hide text inside the button in default state --- */
[class*="quick-actions-toolbar"] button.stain-button-white > span,
[class*="quick-actions-toolbar"] button.stain-button-white .btn-state-ready {
  display: none !important;
  visibility: hidden !important;
  font-size: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* --- Plus icon via pseudo-elements --- */
[class*="quick-actions-toolbar"] button.stain-button-white::before,
[class*="quick-actions-toolbar"] button.stain-button-white::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  transform: translate(-50%, -50%);
  display: block !important;
  visibility: visible !important;
  font-size: initial !important;
  transition: background 0.25s ease;
}

[class*="quick-actions-toolbar"] button.stain-button-white::before {
  width: 11px;
  height: 2px;
}

[class*="quick-actions-toolbar"] button.stain-button-white::after {
  width: 2px;
  height: 14px;
}

/* --- HOVER state: dark background, white + icon --- */
[class*="quick-actions-toolbar"] button.stain-button-white:hover {
  background: #1a1a1a !important;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

[class*="quick-actions-toolbar"] button.stain-button-white:hover::before,
[class*="quick-actions-toolbar"] button.stain-button-white:hover::after {
  background: #fff !important;
}

/* --- Prevent the > div container from stretching --- */
[class*="quick-actions-toolbar"] > div {
  width: auto !important;
}

/* --- Loading state: hide pseudo + icon --- */
[class*="quick-actions-toolbar"] button.is-loading::before,
[class*="quick-actions-toolbar"] button.is-loading::after {
  display: none;
}

/* --- Size-variant panel (opens on click/tap) --- */
/* The panel with x-show="isOpen" uses stain-button-white on its inner div.
   Override that to be dark with white text. */
[class*="quick-actions-toolbar"] [x-show="isOpen"] > div {
  background-color: #1a1a1a !important;
  color: #fff !important;
}

/* --- Size option buttons inside the panel --- */
[class*="quick-actions-toolbar"] [class*="group/option-button"] {
  color: #fff !important;
}

[class*="quick-actions-toolbar"] [class*="group/option-button"] .btn-state-ready {
  display: inline-block !important;
  visibility: visible !important;
  font-size: inherit !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  color: #fff !important;
}

[class*="quick-actions-toolbar"] [class*="group/option-button"]:hover {
  background-color: #fff !important;
  color: #1a1a1a !important;
}

[class*="quick-actions-toolbar"] [class*="group/option-button"]:hover .btn-state-ready {
  color: #1a1a1a !important;
}


/* --- Kicker --- */
.kicker-flourished {
  margin-bottom: 0;
  font-size: 30px;
  font-family: var(--FONT-STACK-HEADING);
  text-align: center;
}

/* --- Badge / Label --- */
.badge,
.product-label,
.product__badge {
  background-color: rgba(255,255,255,0.6) !important;
  color: #000 !important;
  padding: 2px 4px;
  font-size: 13px;
  font-family: var(--FONT-STACK-BODY, "Intel", sans-serif) !important;
  text-transform: uppercase;
}

/* --- Product Clip Button --- */
[class*="quick-actions-toolbar"] .product-clip__btn .btn-state-ready,
[class*="quick-actions-toolbar"] button.stain-button-white .btn-state-ready {
  font-size: 0 !important;
  line-height: 0;
}
}
/* Upsell buttons: restore visible text (override the font-size:0 above) */
.upsell__holder .product-clip__btn .btn-state-ready {
  font-size: inherit !important;
    line-height: inherit !important;
      color: inherit !important;
}

.product-clip__btn:hover * {
  color: #000 !important;
}

.product-clip__btn {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border: 1px solid #1a1a1a !important;
    min-width: 120px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-clip__btn .btn-state-ready::after {
  color: #ffffff !important;
}

.product-clip__btn:hover {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  border: 1px solid #1a1a1a !important;
}

.product-clip__btn:hover .btn-state-ready::after {
  color: #1a1a1a !important;
}


/* --- Generic Button Hover States --- */
.btn--primary:hover,
.btn--primary:active,
.btn--primary:focus,
.btn--soft:hover,
.btn--soft:active,
.btn--soft:focus,
.btn--add-to-cart:hover,
.product-clip__btn:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}

.btn--primary:hover *,
.btn--soft:hover *,
.btn--add-to-cart:hover *,
.product-clip__btn:hover * {
  color: #000 !important;
}

/* Restore correct hover state for upsell buttons specifically */
.upsell__holder .product-clip__btn:hover,
.product-clip__btn:hover {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  border: 1px solid #1a1a1a !important;
}

.upsell__holder .product-clip__btn:hover .btn-state-ready,
.product-clip__btn:hover .btn-state-ready {
  font-size: inherit !important;
  line-height: inherit !important;
  color: #1a1a1a !important;
}
/* Hide Shop by Category (expanded) on desktop, show on mobile */
#shopify-section-template--25824700563729__section_columns_QgC4pp {
  display: none;
}

@media screen and (max-width: 749px) {
  #shopify-section-template--25824700563729__section_columns_QgC4pp {
    display: block;
  }
}

/* Hide Shop by Category on mobile, show on desktop */
#shopify-section-template--25824700563729__section_list_collections_XP44cD {
  display: block;
}

@media screen and (max-width: 749px) {
  #shopify-section-template--25824700563729__section_list_collections_XP44cD {
    display: none;
  }
}

/* Hide Shop by Category on mobile, show on desktop */
#shopify-section-template--25824700563729__section_list_collections_d8e9DJ {
  display: block;
}

@media screen and (max-width: 749px) {
  #shopify-section-template--25824700563729__section_list_collections_d8e9DJ {
    display: none;
  }
}

/* ===========================
   As Seen In - Mobile Horizontal Scroll
      =========================== */

      @media (max-width: 768px) {
        .logo-bar {
            display: flex !important;
                flex-direction: row !important;
                    flex-wrap: nowrap !important;
                        overflow-x: auto !important;
                            -webkit-overflow-scrolling: touch;
                                gap: 5px;
                                    padding-bottom: 8px;
                                        scroll-snap-type: x mandatory;
                                            /* Hide scrollbar visually */
                                                -ms-overflow-style: none;
                                                    scrollbar-width: none;
                                                      }

                                                        .logo-bar::-webkit-scrollbar {
                                                            display: none;
                                                              }

                                                                .logo-bar .logo-bar__item {
                                                                    flex: 0 0 auto !important;
                                                                        width: 110px !important;
                                                                            scroll-snap-align: start;
                                                                              }
                                                                              }
                                                                              
/* Hide decorative underline on As Seen In heading */
#shopify-section-template--25824700563729__section_logos_faPc8q .kicker-flourished::after {
  display: none !important;
}

/* Left-align Take The Quiz button on mobile */
@media (max-width: 479px) {
  #shopify-section-template--25824700563729__brand_bar .hero__cta__wrapper {
    align-items: flex-start !important;
  }
}
/* AS SEEN IN SECTION- Mobile only: show on mobile, hide on desktop */
#shopify-section-template--25824700563729__section_logos_faPc8q {
  display: none;
}

@media screen and (max-width: 749px) {
  #shopify-section-template--25824700563729__section_logos_faPc8q {
    display: block;
  }
}

/*AS SEEN IN SECTION- Desktop only: show on desktop, hide on mobile */
#shopify-section-template--25824700563729__section_logos_abGqyi {
  display: block;
}

@media screen and (max-width: 749px) {
  #shopify-section-template--25824700563729__section_logos_abGqyi {
    display: none;
  }
}