/** Shopify CDN: Minification failed

Line 290:3 Unexpected "="
Line 380:3 Unexpected "="

**/
/**
 * BB CSS Bundle: Combined PDP Styles
 *
 * Pages: Product pages only
 * Include: {{ 'bb-css-pdp-combined.css' | asset_url | stylesheet_tag }}
 *
 * This file combines all product page specific CSS:
 * - Complete the Look (FBT)
 * - Size Guide Modal
 * - Product Bundle Widget
 *
 * Alternatively, load individual files for granular control:
 * - bb-css-fbt.css
 * - bb-css-size-guide.css
 * - bb-css-bundle.css
 */

/* ============================================================
   BB — Complete the Look (FBT) — 2-Column Grid
   ============================================================ */

.bb-fbt {
  margin: 0 0 12px 0;
  font-family: Overpass, system-ui;
}

.bb-fbt__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bb-fbt__rule {
  flex: 1;
  height: 1px;
  background: #000;
}

.bb-fbt__heading {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.bb-fbt__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 480px) {
  .bb-fbt__grid {
    gap: 12px;
  }
}

.bb-fbt__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bb-fbt__img-wrap {
  position: relative;
  margin-bottom: 10px;
}

.bb-fbt__img-link {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f2f2;
  border-radius: 12px;
  position: relative;
}

/* Wishlist Button - Bottom Left */
.bb-fbt__wishlist {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 0;
}

.bb-fbt__wishlist:hover {
  transform: scale(1.1);
  background: #fff;
}

.bb-fbt__wishlist svg {
  width: 18px;
  height: 18px;
}

.bb-fbt__wishlist .wishlist-icon-outline {
  color: #666;
  display: block;
}

.bb-fbt__wishlist:hover .wishlist-icon-outline {
  color: #ef4444;
}

.bb-fbt__wishlist .wishlist-icon-filled {
  display: none;
  color: #ef4444;
}

.bb-fbt__wishlist.is-wishlisted .wishlist-icon-outline,
.bb-fbt__wishlist.is-active .wishlist-icon-outline {
  display: none;
}

.bb-fbt__wishlist.is-wishlisted .wishlist-icon-filled,
.bb-fbt__wishlist.is-active .wishlist-icon-filled {
  display: block;
}

.bb-fbt__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bb-fbt__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bb-fbt__title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  line-height: 1.3;
}

.bb-fbt__title:hover {
  text-decoration: underline;
}

.bb-fbt__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
  flex-wrap: wrap;
}

.bb-fbt__compare {
  color: #8a8f98;
  text-decoration: line-through;
}

.bb-fbt__sale,
.bb-fbt__regular {
  font-weight: 600;
}

.bb-fbt__color-label,
.bb-fbt__size-label {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

/* FBT Swatches */
.bb-fbt__swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  max-width: 100%;
}

.bb-fbt__swatch-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.bb-fbt__swatches[data-expanded="false"] .bb-fbt__swatch--hidden {
  display: none;
}

.bb-fbt__swatches[data-expanded="true"] {
  flex-direction: column;
  align-items: flex-start;
}

.bb-fbt__swatches[data-expanded="true"] .bb-fbt__swatch-container {
  width: 100%;
}

.bb-fbt__swatch {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.bb-fbt__toggle {
  background: none;
  border: 0;
  padding: 0;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  color: #6b7280;
  flex-shrink: 0;
}

.bb-fbt__toggle:hover {
  color: #000;
}

/* FBT Sizes */
.bb-fbt__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.bb-fbt__size {
  min-width: 36px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #d1d5db;
  border-radius: 30px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.bb-fbt__size:hover {
  border-color: #999;
}

.bb-fbt__size.active {
  background: #282e37;
  border-color: #282e37;
  color: #fff;
}

.bb-fbt__size:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* FBT Add Button */
.bb-fbt__add {
  width: 100%;
  margin-top: 10px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.00em;
}


   ============================================================ */

.bb-size-guide-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 24px;
}

.bb-size-guide-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 400;
  color: #000;
  text-decoration: underline;
}

.bb-size-guide-trigger:hover {
  text-decoration: underline;
}

.bb-size-guide-trigger img {
  display: block;
  flex-shrink: 0;
}

.bb-size-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.bb-size-guide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.bb-size-guide-dialog {
  position: relative;
  width: min(500px, calc(100vw - 32px));
  margin: 5vh auto;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}

.bb-size-guide-dialog img {
  width: 100%;
  height: auto;
}

.bb-size-guide-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}

html.bb-size-guide-open,
html.bb-size-guide-open body {
  overflow: hidden;
}

/* Variant Header */
.bb-variant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bb-variant-label {
  font-size: 14px;
  font-weight: 600;
}


   ============================================================ */

.bb-bundle {
  width: 100%;
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.bb-bundle__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2px 0 6px 0;
}

.bb-bundle__rule {
  flex: 1;
  height: 1px;
  background-color: #d4d4d4;
}

.bb-bundle__header-text {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: Overpass, system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  color: #525252;
}

.bb-bundle__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bb-bundle__option {
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #fff;
}

.bb-bundle__option:hover {
  border-color: #d4d4d4;
}

.bb-bundle__option.is-active {
  border: 2px solid #171717;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.bb-bundle__badge {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.00em;
  background-color: #FF6F77;
  color: #fff;
  border-radius: 15px;
}

.bb-bundle__option-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bb-bundle__radio {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 0.25rem;
}

.bb-bundle__radio input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.bb-bundle__radio-circle {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid #a3a3a3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.bb-bundle__radio input:checked + .bb-bundle__radio-circle {
  border-color: #171717;
}

.bb-bundle__radio input:checked + .bb-bundle__radio-circle::after {
  content: '';
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #171717;
}

.bb-bundle__option-info {
  flex: 1;
  min-width: 0;
}

.bb-bundle__option-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #171717;
}

.bb-bundle__option-subtext {
  display: block;
  font-size: 0.875rem;
  color: #737373;
  margin-top: 0.125rem;
}

.bb-bundle__option-pricing {
  text-align: right;
  flex-shrink: 0;
}

.bb-bundle__price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #171717;
}

.bb-bundle__compare {
  display: block;
  font-size: 0.875rem;
  color: #a3a3a3;
  text-decoration: line-through;
}

.bb-bundle__products {
  display: none;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f5f5f5;
}

.bb-bundle__option.is-active .bb-bundle__products {
  display: block;
}

.bb-bundle__products-label {
  display: block;
  font-size: 0.75rem;
  color: #a3a3a3;
  margin-bottom: 0.75rem;
}

.bb-bundle__product-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.bb-bundle__product-row:last-of-type {
  margin-bottom: 0;
}

.bb-bundle__product-image {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  background-color: #f5f5f5;
  border-radius: 0.25rem;
  overflow: hidden;
}

.bb-bundle__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-bundle__product-selectors {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}

.bb-bundle__select-wrap {
  position: relative;
  flex: 1;
}

.bb-bundle__select-wrap--size {
  flex: 0 0 auto;
  width: 7rem;
}

.bb-bundle__select-wrap--addon {
  width: 100%;
  max-width: 180px;
}

.bb-bundle__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 0.25rem;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #171717;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.bb-bundle__select option[disabled] {
  display: none !important;
}

.bb-bundle__select option[style*="display: none"] {
  display: none !important;
}

.bb-bundle__select:hover {
  border-color: #a3a3a3;
}

.bb-bundle__select:focus {
  outline: none;
  border-color: #171717;
  box-shadow: 0 0 0 1px #171717;
}

.bb-bundle__select-arrow {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #737373;
  pointer-events: none;
}

.bb-bundle__addon {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e5e5;
  background-color: #fafafa;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-bottom: -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.bb-bundle__option.is-active .bb-bundle__addon {
  display: block;
}

.bb-bundle__addon-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bb-bundle__checkbox {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.bb-bundle__checkbox input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.bb-bundle__checkbox-box {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #a3a3a3;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: all 0.2s ease;
}

.bb-bundle__checkbox-box svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.bb-bundle__checkbox input:checked + .bb-bundle__checkbox-box {
  background-color: #171717;
  border-color: #171717;
}

.bb-bundle__checkbox input:checked + .bb-bundle__checkbox-box svg {
  opacity: 1;
}

.bb-bundle__addon-image {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background-color: #f5f5f5;
  border-radius: 0.25rem;
  overflow: hidden;
}

.bb-bundle__addon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-bundle__addon-info {
  flex: 1;
  min-width: 0;
}

.bb-bundle__addon-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #171717;
  margin-bottom: 0px;
}

.bb-bundle__addon-subtitle {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.bb-bundle__addon-pricing {
  text-align: right;
  flex-shrink: 0;
}

.bb-bundle__addon-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #171717;
}

.bb-bundle__addon-compare {
  display: block;
  font-size: 0.75rem;
  color: #a3a3a3;
  text-decoration: line-through;
}

/* Bundle Responsive */
@media (max-width: 640px) {
  .bb-bundle__option {
    padding: 0.75rem;
  }

  .bb-bundle__option.is-active {
    border: 2px solid #171717;
  }

  .bb-bundle__option-header {
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .bb-bundle__option-info {
    flex: 1;
    min-width: 0;
  }

  .bb-bundle__option-title {
    font-size: 0.9375rem;
  }

  .bb-bundle__option-subtext {
    font-size: 0.8125rem;
  }

  .bb-bundle__option-pricing {
    text-align: right;
    flex-shrink: 0;
  }

  .bb-bundle__price {
    font-size: 1.125rem;
  }

  .bb-bundle__compare {
    font-size: 0.8125rem;
  }

  .bb-bundle__select {
    padding: 0.625rem 2rem 0.625rem 0.75rem;
  }

  .bb-bundle__addon-header {
    flex-wrap: nowrap;
    align-items: center;
  }

  .bb-bundle__addon-info {
    flex: 1;
    min-width: 0;
  }

  .bb-bundle__addon-title {
    font-size: 0.8125rem;
  }

  .bb-bundle__addon-pricing {
    text-align: right;
    flex-shrink: 0;
  }

  .bb-bundle__addon-price {
    font-size: 0.9375rem;
  }

  .bb-bundle__addon-compare {
    font-size: 0.6875rem;
  }

  .bb-bundle__select-wrap--addon {
    max-width: 140px;
  }

  .bb-bundle__product-image {
    width: 3rem;
    height: 3rem;
  }

  .bb-bundle__addon-image {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* Bundle Waitlist/Pre-order */
.bb-bundle__option.bb-bundle__option--waitlist {
  opacity: 0.4;
  pointer-events: none;
  position: relative;
}

.bb-bundle__option.bb-bundle__option--waitlist .bb-bundle__radio,
.bb-bundle__option.bb-bundle__option--waitlist input[type="radio"] {
  pointer-events: auto;
}

.bb-bundle__submit--waitlist {
  background-color: #282E37 !important;
  border-color: #282E37 !important;
  color: #ffffff !important;
}

.bb-bundle__submit--waitlist:hover {
  opacity: 0.8;
}

.bb-bundle__submit--preorder {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.bb-bundle__submit--preorder:hover {
  opacity: 0.9;
}

.bb-bundle__product-row[data-preorder="true"] {
  position: relative;
}

.bb-bundle__product-row[data-preorder="true"]::before {
  content: 'Pre-order';
  position: absolute;
  top: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

[data-bb-bundle-submit] {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

[data-bb-bundle-submit].bb-bundle__submit--waitlist [data-bb-bundle-submit-text],
[data-bb-bundle-submit].bb-bundle__submit--preorder [data-bb-bundle-submit-text] {
  color: #ffffff;
}

/* Generic loading state */
.is-loading {
  position: relative;
  pointer-events: none;
}

.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
}

.is-loading::before {
  content: '';
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: bb-spin-centered 0.8s linear infinite;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Hide default add-to-cart when bundle is present */
[data-bb-bundle] ~ [data-product-block="buy_buttons"],
[data-bb-bundle] + [data-product-block="buy_buttons"],
.bb-bundle ~ [data-product-block="buy_buttons"] {
  display: none !important;
}

body:has([data-bb-bundle]) [data-product-block="buy_buttons"] {
  display: none !important;
}

.bb-bundle__submit {
  margin-top: 16px;
}

.bb-bundle__submit button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-has-bundle="true"],
.bb-hidden-by-bundle {
  display: none !important;
}

