/** Shopify CDN: Minification failed

Line 541:0 Unexpected "}"

**/
/* ============================================
   SSG SHARED STYLES
   Used by: collection-family.liquid, 
   main-collection-product-grid.liquid
   ============================================ */

/* === Modal Overlay === */
.ssg-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.ssg-modal-overlay.is-open { display: flex; }

/* === MODAL SECTION === */
.ssg-modal {
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  border-radius: 8px;
  padding: 2rem;
  width: 90%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.ssg-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  font-size: 1.6rem;
  line-height: 1;
  padding: 0;
}
.ssg-modal__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1.2rem;
  padding-right: 2rem;
}

.ssg-modal__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  padding-right: 0;
}

.ssg-modal__full-details {
  font-size: 1.1rem;
  color: rgba(var(--color-foreground), 0.85);
  text-decoration: none;
  white-space: nowrap;
  padding-top: 3px;
  flex-shrink: 0;
}

.ssg-modal__full-details:hover {
  color: rgb(var(--color-foreground));
  text-decoration: underline;
}


.ssg-modal__size-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  margin-bottom: 6px;
  margin-top: 1rem;
}


.ssg-modal__size-header-thumb {
  width: 48px;
  flex-shrink: 0;
}

.ssg-modal__size-header-col {
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.5);
}

.ssg-modal__size-header-col:nth-child(2) {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.ssg-modal__size-header-col:nth-child(3) {
  width: 94px;
  flex-shrink: 0;
  text-align: center;
  transform: translateX(-12px);
}

.ssg-modal__size-header-col:nth-child(4) {
  width: 70px;
  flex-shrink: 0;
  text-align: center;
  transform: translateX(-12px);
}

.ssg-modal__size-header-col:nth-child(5) {
  width: 60px;
  flex-shrink: 0;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-12px);
}


.ssg-modal__color-name {
  font-size: 1.0rem;
  font-weight: 500;
  color: rgba(var(--color-foreground), 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
  margin-top: 0.4rem;
}


/* === Modal Colors === */
.ssg-modal__colors { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  margin-bottom: 0.6rem; 
}
.ssg-modal__colors-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.ssg-modal__color-btn {
  display: inline-block !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  border: 3px solid transparent !important;
  box-shadow: 0 0 0 1px rgba(var(--color-foreground), 0.3) !important;
  cursor: pointer !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.ssg-modal__color-btn.is-active {
  border-color: rgb(var(--color-foreground)) !important;
  box-shadow: 0 0 0 2px rgb(var(--color-foreground)) !important;
}

/* === Modal Sizes === */
.ssg-modal__sizes { 
  display: none; 
  flex-direction: column; 
  gap: 2px; 
  margin-bottom: 0.8rem; 
}

.ssg-modal__sizes.is-active { 
  display: flex !important; 
  flex-direction: column !important; 
  visibility: visible !important; 
}

.ssg-modal__size-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
}

.ssg-modal__size-row:last-child {
  border-bottom: none;
}

.ssg-modal__size-label {
  font-size: 1.3rem;
  font-weight: 500;
}


.ssg-modal__size-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 180px;
  gap: 2px;
}


.ssg-modal__size-meta {
  font-size: 1.0rem;
  color: rgba(var(--color-foreground), 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* === Modal Qty + Add === */

.ssg-modal__stepper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(var(--color-foreground), 0.3);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}


.ssg-modal__stepper-btn {
  background: none;
  border: none;
  width: 28px;
  height: 32px;
  font-size: 1.4rem;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ssg-modal__stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ssg-modal__qty {
  width: 36px;
  border: none;
  text-align: center;
  font-size: 1.3rem;
  padding: 4px 0;
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  -moz-appearance: textfield;
}

.ssg-modal__qty::-webkit-outer-spin-button,
.ssg-modal__qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.ssg-modal__qty:disabled { opacity: 0.35; cursor: not-allowed; }
.ssg-modal__actions {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 5px;
}

.ssg-modal__add {
  flex: 0 0 28%;
  padding: 6px 10px;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  text-align: center;
}

.ssg-modal__add:hover { opacity: 0.85; }

.ssg-modal__actions-spacer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssg-modal__view-cart {
  flex: 0 0 20%;
  padding: 6px 10px;
  background: transparent;
  color: rgb(var(--color-foreground));
  border: 1px solid rgba(var(--color-foreground), 0.3);
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssg-modal__view-cart:hover { opacity: 0.8; }


.ssg-modal__feedback {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 0.8rem;
  min-height: 1.6rem;
  color: rgb(var(--color-foreground));
}
.ssg-modal__size-price {
  font-size: 1.1rem;
  font-weight: 400;
  width: 70px;
  flex-shrink: 0;
  text-align: center;
}

.ssg-modal__size-total {
  font-size: 1.1rem;
  font-weight: 400;
  width: 60px;
  text-align: center;
  flex-shrink: 0;
  color: rgb(var(--color-foreground));
}

.ssg-modal__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1.2rem;
  padding-right: 2rem;
}

.ssg-modal__title {
  font-size: 1.6rem;
  font-weight: 600;
}

.ssg-modal__full-details {
  font-size: 1.1rem;
  color: rgba(var(--color-foreground), 0.6);
  text-decoration: none;
  white-space: nowrap;
  padding-top: 3px;
  flex-shrink: 0;
}

.ssg-modal__full-details:hover {
  color: rgb(var(--color-foreground));
  text-decoration: underline;
}

.ssg-modal__order-total {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-top: 1px solid rgba(var(--color-foreground), 0.15);
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 600;
}

.ssg-modal__order-total-label {
  flex: 1;
}

.ssg-modal__order-items {
  width: 94px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  transform: translateX(-82px);
}

.ssg-modal__order-items-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(var(--color-foreground), 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


.ssg-modal__order-total-value {
  font-size: 1.4rem;
  font-weight: 600;
  width: 60px;
  text-align: center;
  transform: translateX(-12px);
}

.ssg-modal__subtotal-note {
  font-size: 0.85rem;
  color: rgba(var(--color-foreground), 0.5);
  text-align: center;
  line-height: 1.4;
  margin: 0;
  padding: 0 4px;
}

.ssg-modal__subtotal-note a {
  color: rgba(var(--color-foreground), 0.5);
  text-decoration: underline;
}

.ssg-modal__subtotal-note a:hover {
  color: rgb(var(--color-foreground));
}
@media (max-width: 480px) {
  .ssg-modal {
    width: 100%;
    max-width: 100%;
    max-height: calc(var(--app-height, 100%) * 0.92);
    padding: 1.2rem 1rem;
    border-radius: 12px 12px 0 0;
  }

.free-shipping-bar .shipping-bar-content br {
    display: block !important;
  }


@media (max-width: 480px) {
  .ssg-modal__add {
    flex: 0 0 auto;
    padding: 8px 20px;
    font-size: 1.0rem;
  }

  .ssg-modal__view-cart {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 1.0rem;
  }

  .ssg-modal__actions {
    justify-content: space-between;
    align-items: center;
  }

  .ssg-modal__subtotal-note {
    font-size: 0.8rem;
    flex: 1;
    text-align: center;
    padding: 0 8px;
  }
}


  /* Reset desktop transform hacks */
  .ssg-modal__size-header-col:nth-child(3),
  .ssg-modal__size-header-col:nth-child(4),
  .ssg-modal__size-header-col:nth-child(5),
  .ssg-modal__order-items,
  .ssg-modal__order-total-value {
    transform: none;
  }

  /* Lock column widths to match header exactly */
  .ssg-modal__size-header-col:nth-child(3) { width: 80px; text-align: center; }
  .ssg-modal__size-header-col:nth-child(4) { width: 52px; text-align: center; }
  .ssg-modal__size-header-col:nth-child(5) { width: 52px; text-align: center; }

  .ssg-modal__stepper          { width: 80px; justify-content: center; }
  .ssg-modal__size-price       { width: 52px; text-align: center; }
  .ssg-modal__size-total       { width: 52px; text-align: center; }

  /* Order total row alignment */
  .ssg-modal__order-items      { width: 80px; transform: none; text-align: center; }
  .ssg-modal__order-total-value { width: 52px; transform: none; text-align: center; }
}


  
  .ssg-modal-overlay {
    align-items: flex-end;
  }

  .ssg-modal__title {
    font-size: 1.3rem;
  }

  .ssg-modal__size-row {
    padding: 4px 4px;
    gap: 4px;
  }

  .ssg-modal__size-label {
    font-size: 1.1rem;
  }

  .ssg-modal__size-price,
  .ssg-modal__size-total {
    width: 50px;
    font-size: 1.0rem;
  }

  .ssg-modal__size-header-col:nth-child(4),
  .ssg-modal__size-header-col:nth-child(5) {
    width: 50px;
  }

  .ssg-modal__order-total {
    font-size: 1.2rem;
  }

  .ssg-modal__actions {
    flex-wrap: wrap;
  }

  .ssg-modal__add {
    flex: 1;
  }

  .ssg-modal__view-cart {
    flex: 0 0 auto;
  }
}

/* === BADGE SECTION === */

.family-card__b2b-badge {
  display: inline-block;
  background: rgb(48, 68, 156);
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 0.5rem 1.3rem 0.6rem;
  border-radius: var(--badge-corner-radius);
}

/* === Swatch Overflow === */
.swatch-overflow-desktop { display: inline-flex; }
.swatch-overflow-mobile { display: none; }
@media (max-width: 749px) {
  .swatch-hide-mobile { display: none !important; }
  .swatch-overflow-desktop { display: none !important; }
  .swatch-overflow-mobile { display: inline-flex !important; }
}


/* ── quick-add-bulk normalization ── */

quick-add-bulk .quick-add__submit ~ .quick-add__submit {
  display: none !important;

}
/* Lift Quick Select button above card anchor overlay */
.collection-family__grid .quick-add__submit {
  position: relative;
  z-index: 2;
}
/* Match bulk wrapper height to standard .quick-add wrapper */

quick-add-bulk {
  display: flex !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 0 10px 0 !important;
  height: auto !important;
  cursor: pointer;
}

quick-add-bulk::after {
  display: none !important;
}
cart-drawer-items:not(.is-empty) {
  min-height: 200px;
  overflow: auto;
}
.card--media > .card__inner > .card__content {
  display: none;
}

.card__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card__media .media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card__media .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.card__inner.ratio .media {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .card__inner {
    position: relative;
    overflow: hidden;
  }

  .card--standard .card__inner {
    padding-bottom: 100%; /* 1:1 aspect ratio — adjust to 120% or 130% if your images are portrait */
    height: 0;
  }

  .card--standard .card__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  /* Keep badge above image */
  .card__badge {
    position: absolute;
    z-index: 2;
  }
}


/* === Glove Style Label === */
.family-card__glove-style {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  line-height: 1.3;
}
/* Image containment — prevents overflow in product grids */
.card__inner.ratio {
  overflow: hidden;
}

.card__inner.ratio .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
