/** Shopify CDN: Minification failed

Line 820:0 Unexpected "}"

**/
/* ============================================================
   Section: Product Page
   All classes prefixed with .bc-product__ to avoid collisions.
   Uses global design tokens from theme.css and css-variables.liquid.
   ============================================================ */

/* ── Layout ─────────────────────────────────────────────────── */
.bc-product {
  display: block;
  background-color: var(--color-scheme-background, var(--color-background));
  color: var(--color-scheme-text, var(--color-text));
}

.bc-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Prevent grid children from overflowing with long content */
.bc-product__grid > * {
  min-width: 0;
}

/* ── Gallery ────────────────────────────────────────────────── */
.bc-product__gallery {
  position: relative;
}

.bc-product__gallery-grid {
  position: relative;
}

/* Image count badge */
.bc-product__gallery-count {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: var(--bc-radius-xs);
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
}

.bc-product__gallery-count--mobile {
  display: none;
}

.bc-product__gallery-count svg {
  width: 14px;
  height: 14px;
}

.bc-product__gallery-count svg {
  width: 14px;
  height: 14px;
}

/* Desktop/Laptop: Stacked grid */
.bc-product__gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bc-product__gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--bc-radius-sm);
  aspect-ratio: 3 / 4;
  background-color: var(--color-light);
}

/* First image spans full width — same 3:4 ratio as the rest */
.bc-product__gallery-grid-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 4;
}

/* Active highlight on desktop grid */
.bc-product__gallery-grid-item.is-active {
  outline-offset: -2px;
}

.bc-product__media-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.bc-product__gallery-grid-item img,
.bc-product__gallery-grid-item svg,
.bc-product__grid-video,
.bc-product__grid-model {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bc-product__gallery-grid-item:hover .bc-product__grid-img {
  transform: scale(1.03);
}

/* Mobile/Tablet: Swipeable slider (hidden on desktop) */
.bc-product__gallery-slider {
  display: none;
}

.bc-product__gallery-dots {
  display: none;
}

.bc-product__gallery-slide {
  min-width: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.bc-product__gallery-slide .bc-product__media-trigger {
  cursor: zoom-in;
}

.bc-product__slide-img,
.bc-product__slide-video,
.bc-product__slide-model {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* ── Mobile Thumbnail Row (hidden on desktop) ────────────────── */
.bc-product__gallery-thumbs-row {
  display: none;
}

.bc-product__gallery-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: var(--bc-radius-xs, 6px);
  background: var(--color-light, #f5f5f5);
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  transition: border-color 0.2s ease;
}

.bc-product__gallery-thumb.is-active {
  border-color: var(--color-scheme-text, var(--color-text, #1a1a1a));
}

.bc-product__gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-product__gallery-thumb-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--color-light, #f0f0f0);
}

.bc-product__gallery-thumb-media svg {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.bc-product__gallery-dot {
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.bc-product__gallery-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  transition: background-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.bc-product__gallery-dot.is-active::after {
  width: 20px;
  border-radius: 5px;
  background-color: var(--btn-primary-bg, var(--color-primary));
}

/* ── Product Info ───────────────────────────────────────────── */
.bc-product__info {
  display: flex;
  flex-direction: column;
  gap: var(--product-block-gap, 16px);
  position: sticky;
  top: calc(var(--header-height, 80px) + 20px);
  align-self: start;
}

/* Collapse Shopify block wrappers that contain no visible content
   so flex gap doesn't create phantom spacing between empty blocks.
   .shopify-block is injected by the platform and always renders. */
.bc-product__info > .shopify-block:not(:has(*:not(style))) {
  display: none;
}

.bc-product__info > .shopify-block:has(> .bc-product__block--variants:empty),
.bc-product__info > .shopify-block:has(> .bc-product__block--pickup > .bc-product__pickup:empty) {
  display: none;
}

.bc-product__title {
  font-family: var(--font-heading--family);
  font-size: var(--bc-font-size-h3);
  font-weight: var(--font-heading--weight);
  line-height: 1.2;
  margin: 0;
  color: var(--color-text);
  overflow-wrap: break-word;
  word-break: break-word;
  text-wrap: balance;
}

.bc-product__description {
  font-size: var(--bc-font-size-small);
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

/* Badges */
.bc-product__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bc-product__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--bc-radius-xs);
  color: var(--color-text);
  background: transparent;
}

/* Rating */
.bc-product__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.bc-product__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

.bc-product__stars svg {
  width: 14px;
  height: 14px;
}

.bc-product__rating-text {
  font-size: 13px;
  color: var(--color-muted);
}

/* Price */
.bc-product__price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bc-product__price-sale {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.bc-product__price-compare {
  font-size: 16px;
  color: var(--color-muted);
  text-decoration: line-through;
}

/* Stock */
.bc-product__stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.bc-product__stock-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--bc-radius-full);
  background-color: var(--color-secondary);
  flex-shrink: 0;
}

.bc-product__stock-dot--out {
  background-color: var(--color-primary);
}

.bc-product__stock-text {
  color: var(--color-text);
}

/* ── Variant Selectors ──────────────────────────────────────── */
.bc-product__variants {}

.bc-product__variant-group {
  margin-bottom: 15px;
}

.bc-product__variant-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.bc-product__variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bc-product__variant-option {
  padding: 8px 18px;
  font-size: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--bc-radius-full);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bc-product__variant-option:hover {
  border-color: var(--color-text);
}

.bc-product__variant-option.is-active {
  background-color: var(--color-text);
  color: var(--color-background);
  border-color: var(--color-text);
}

/* ── Quantity + Cart Buttons ────────────────────────────────── */
.bc-product__block--atc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-product__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-product__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bc-product__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--button-border-radius);
  overflow: hidden;
  height: 48px;
}

.bc-product__qty-btn {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-text);
  transition: background-color 0.15s ease;
  font-family: inherit;
}

.bc-product__qty-btn:hover {
  background-color: var(--color-light);
}

.bc-product__qty-input {
  width: 45px;
  height: 100%;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  background: transparent;
  -moz-appearance: textfield;
}

.bc-product__qty-input::-webkit-inner-spin-button,
.bc-product__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Layout-only overrides — appearance + animation inherited from .bc-btn--secondary */
.bc-product__atc {
  flex: 1;
}

.bc-product__atc svg {
  width: 18px;
  height: 18px;
}

.bc-product__bin {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-background);
  border: none;
  border-radius: var(--button-border-radius);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-bottom: 15px;
  font-family: inherit;
}

.bc-product__bin:hover {
  opacity: 0.9;
}

.bc-product .bc-product__form .shopify-payment-button__button--unbranded {
  background-color: var(--color-primary);
  color: var(--color-background);
  border-radius: var(--button-border-radius);
  border: none;
  transition: opacity 0.2s ease;
}

.bc-product .bc-product__form .shopify-payment-button__button--unbranded:hover {
  opacity: 0.9;
}

/* ── Social Share ───────────────────────────────────────────── */
.bc-product__share {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-product__share-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.bc-product__share-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bc-product__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--button-border-radius);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  position: relative;
  font-family: inherit;
}

.bc-product__share-btn:hover {
  border-color: var(--color-text);
  background-color: var(--color-text);
  color: var(--color-background);
  transform: translateY(-2px);
}

.bc-product__share-btn:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

.bc-product__share-btn:active {
  transform: translateY(0);
}

.bc-product__share-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Copy link — icon swap */
.bc-product__share-btn--copy .bc-product__share-check-icon {
  display: none;
}
.bc-product__share-btn--copy.is-copied .bc-product__share-copy-icon {
  display: none;
}
.bc-product__share-btn--copy.is-copied .bc-product__share-check-icon {
  display: block;
}

/* Copy tooltip */
.bc-product__share-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: var(--color-text);
  color: var(--color-background);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bc-product__share-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-text);
}

.bc-product__share-btn--copy.is-copied .bc-product__share-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Native share — mobile only */
.bc-product__share-btn--native {
  display: inline-flex;
}

@media (min-width: 768px) {
  .bc-product__share {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .bc-product__share-btn--native {
    display: none;
  }
}

/* ── Pickup Info ────────────────────────────────────────────── */
.bc-product__pickup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-product__pickup-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text);
}

.bc-product__pickup-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-muted);
}

.bc-product__pickup-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bc-product__pickup-location {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text);
}

.bc-product__pickup-status {
  font-size: 12px;
  color: var(--color-muted);
}

.bc-product__pickup-status--available {
  color: var(--color-secondary);
}

.bc-product__pickup-status--unavailable {
  color: var(--color-primary);
}

.bc-product__pickup-link {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: 13px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

/* ── Coupon Offers ──────────────────────────────────────────── */
.bc-product__coupons {}

.bc-product__coupons-heading {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-text);
}

.bc-product__coupons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bc-product__coupon {
  position: relative;
  padding: 12px 10px;
  border-radius: var(--bc-radius-sm);
  text-align: center;
  overflow: hidden;
}

.bc-product__coupon::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px dashed currentColor;
  border-radius: inherit;
  opacity: 0.3;
  pointer-events: none;
}

.bc-product__coupon--green {
  background-color: color-mix(in srgb, var(--color-secondary) 8%, transparent);
  color: var(--color-secondary);
}

.bc-product__coupon--orange {
  background-color: color-mix(in srgb, var(--color-primary) 8%, transparent);
  color: var(--color-primary);
}

.bc-product__coupon--red {
  background-color: color-mix(in srgb, var(--color-error) 8%, transparent);
  color: var(--color-error);
}

.bc-product__coupon-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.bc-product__coupon-title svg {
  width: 14px;
  height: 14px;
}

.bc-product__coupon-code {
  font-size: 10px;
  opacity: 0.8;
}

.bc-product__coupon-code strong {
  font-weight: 700;
}

.bc-product__coupon-copy {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: 10px;
  font-family: inherit;
  vertical-align: middle;
}

.bc-product__coupon-copy svg {
  width: 12px;
  height: 12px;
}

/* ── Accordion ──────────────────────────────────────────────── */
.bc-product__accordions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bc-product__accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--bc-radius-sm);
  overflow: hidden;
}

.bc-product__accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  font-family: inherit;
  min-height: 44px;
  overflow-wrap: break-word;
  word-break: break-word;
}
}

.bc-product__accordion-header:hover {
  color: var(--color-primary);
}

.bc-product__accordion-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.bc-product__accordion.is-open .bc-product__accordion-icon {
  transform: rotate(180deg);
}

.bc-product__accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bc-product__accordion-body[hidden] {
  display: block;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.bc-product__accordion.is-open .bc-product__accordion-body {
  max-height: none;
  visibility: visible;
}

.bc-product__accordion-content {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  margin: 0 20px;
  padding: 16px 0 18px;
  margin-top: -1px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.bc-product__accordion-content img,
.bc-product__accordion-content iframe,
.bc-product__accordion-content video {
  max-width: 100%;
  height: auto;
}

/* ── Paired Products ───────────────────────────────────────────── */
.bc-product__paired-heading {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-text);
}

.bc-product__paired {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.bc-product__paired-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--bc-radius-sm);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s ease;
}

.bc-product__paired-card:hover {
  border-color: var(--color-primary);
}

.bc-product__paired-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--bc-radius-sm);
  background-color: var(--color-light);
}

.bc-product__paired-img img,
.bc-product__paired-img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-product__paired-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.bc-product__paired-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bc-product__paired-rating {
  display: flex;
  gap: 1px;
  color: var(--color-accent);
}

.bc-product__paired-rating svg {
  width: 12px;
  height: 12px;
}

.bc-product__paired-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.bc-product__paired-atc {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.3px;
}

/* ── Trust Badges — Icon Cards Grid ──────────────────────── */
.bc-product__trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bc-product__trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  background-color: var(--color-light);
  border-radius: var(--bc-radius-xs);
  text-align: center;
  min-height: 100%;
}

.bc-product__trust-badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-scheme-background, var(--color-background));
  border: 1px solid var(--btn-secondary-border, var(--color-border));
  flex-shrink: 0;
  color: var(--btn-secondary-text, var(--color-secondary));
}

.bc-product__trust-badge-icon svg {
  width: 20px;
  height: 20px;
}

.bc-product__trust-badge-text {
  font-family: var(--font-primary--family);
  font-size: var(--bc-font-size-small);
  font-weight: 500;
  color: var(--color-scheme-text, var(--color-text));
  line-height: 1.4;
}

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablet & Mobile (≤1024px): switch gallery grid → slider */
@media (max-width: 1024px) {
  .bc-product__grid {
    gap: 30px;
  }

  .bc-product__title {
    font-size: var(--bc-font-size-h4);
  }

  .bc-product__coupons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bc-product__gallery {
    position: static;
  }

  .bc-product__info {
    position: static;
    max-height: none;
    overflow-y: visible;
  }

  /* Hide desktop stacked grid */
  .bc-product__gallery-grid {
    display: none;
  }

  /* Show swipeable slider with full-width images */
  .bc-product__gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
    border-radius: var(--bc-radius-sm);
    position: relative;
  }

  .bc-product__gallery-slider::-webkit-scrollbar {
    display: none;
  }

  .bc-product__gallery-slide {
    min-width: 100%;
  }

  .bc-product__gallery-count--desktop {
    display: none;
  }

  .bc-product__gallery-count--mobile {
    display: flex;
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .bc-product__gallery-dots {
    display: none;
  }

  /* Show thumbnail row below slider */
  .bc-product__gallery-thumbs-row {
    display: flex;
    gap: 8px;
    padding: 10px 0 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .bc-product__gallery-thumbs-row::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 768px) {
  .bc-product__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bc-product__coupons-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .bc-product__actions {
    flex-direction: row;
  }

  .bc-product__qty {
    width: auto;
  }

  .bc-product__atc {
    width: auto;
    flex: 1;
  }

  .bc-product__coupons-grid {
    grid-template-columns: 1fr;
  }

  .bc-product__paired {
    grid-template-columns: 1fr;
  }
}


/* ── Product Lightbox ───────────────────────────────────────── */
.bc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bc-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.bc-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 2;
}

.bc-lightbox__close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.bc-lightbox__close svg {
  width: 24px;
  height: 24px;
}

.bc-lightbox__image-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
  transition: opacity 0.25s ease, transform 0.15s ease;
  transform-origin: center center;
}

/* Loading spinner */
.bc-lightbox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  animation: bc-lightbox-spin 0.8s linear infinite;
}

.bc-lightbox__image-wrap.is-loading .bc-lightbox__spinner {
  opacity: 1;
  visibility: visible;
}

@keyframes bc-lightbox-spin {
  to { transform: rotate(360deg); }
}

.bc-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 2;
}

.bc-lightbox__arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.bc-lightbox__arrow--prev {
  left: 20px;
}

.bc-lightbox__arrow--next {
  right: 20px;
}

.bc-lightbox__arrow svg {
  width: 20px;
  height: 20px;
}

.bc-lightbox__counter {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: var(--font-primary--family);
}

/* Lightbox thumbnail strip */
.bc-lightbox__thumbs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  max-width: 90vw;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bc-lightbox__thumbs::-webkit-scrollbar {
  display: none;
}

.bc-lightbox__thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.5;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.bc-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-lightbox__thumb:hover {
  opacity: 0.85;
}

.bc-lightbox__thumb.is-active {
  opacity: 1;
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .bc-lightbox__arrow {
    width: 40px;
    height: 40px;
  }

  .bc-lightbox__arrow--prev {
    left: 10px;
  }

  .bc-lightbox__arrow--next {
    right: 10px;
  }

  .bc-lightbox__close {
    top: 12px;
    right: 12px;
  }

  .bc-lightbox__thumb {
    width: 44px;
    height: 44px;
  }
}


/* ============================================================
   ATC Block — Out of Stock / Pre-order States
   ============================================================ */

/* Disabled quantity selector */
.bc-product__qty--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.bc-product__qty--disabled .bc-product__qty-btn,
.bc-product__qty--disabled .bc-product__qty-input {
  cursor: not-allowed;
}

/* Disabled ATC button */
.bc-product__atc--disabled,
.bc-product__atc:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--color-border, #e5e2dd) !important;
  color: var(--color-muted, #666) !important;
  border-color: var(--color-border, #e5e2dd) !important;
}

/* Pre-order button — distinct style */
.bc-product__atc--preorder {
  background-color: var(--btn-secondary-text, var(--color-secondary));
  color: var(--color-scheme-background, var(--color-background));
  border-color: var(--btn-secondary-text, var(--color-secondary));
}

.bc-product__atc--preorder:hover {
  opacity: 0.9;
}

/* Hide dynamic checkout when out of stock */
.bc-product__dynamic-checkout--hidden {
  display: none !important;
}


/* ============================================================
   Sticky Add to Cart Bar
   ============================================================ */

.bc-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-scheme-background, #fff);
  color: var(--color-scheme-text, var(--color-text));
  border-top: 1px solid var(--color-border, #eee);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-sticky-atc.is-visible {
  transform: translateY(0);
}

.bc-sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Left — Product info */
.bc-sticky-atc__product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.bc-sticky-atc__image {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--color-border, #f0ede8);
}

.bc-sticky-atc__info {
  min-width: 0;
}

.bc-sticky-atc__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-scheme-text, var(--color-text));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
  line-height: 1.3;
}

.bc-sticky-atc__savings {
  font-size: 11px;
  color: var(--btn-secondary-text, var(--color-secondary));
  font-weight: 600;
  margin-top: 2px;
}

/* Right — Price + Button */
.bc-sticky-atc__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.bc-sticky-atc__price-col {
  text-align: right;
}

.bc-sticky-atc__price-current {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--btn-primary-bg, var(--color-primary));
  line-height: 1.2;
}

.bc-sticky-atc__price-compare {
  display: block;
  font-size: 11px;
  color: var(--color-muted, #999);
  text-decoration: line-through;
}

.bc-sticky-atc__divider {
  width: 1px;
  height: 30px;
  background: var(--color-border, #e5e2dd);
  flex-shrink: 0;
}

.bc-sticky-atc__form {
  display: inline-flex;
}

/* Layout-only overrides — appearance + animation inherited from .bc-btn--primary */
.bc-sticky-atc__button {
  white-space: nowrap;
}

.bc-sticky-atc__button svg {
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 767px) {
  .bc-sticky-atc__inner {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px;
  }

  .bc-sticky-atc__title {
    max-width: 150px;
    font-size: 13px;
  }

  .bc-sticky-atc__image {
    width: 36px;
    height: 36px;
  }

  .bc-sticky-atc__savings {
    display: none;
  }

  .bc-sticky-atc__divider {
    display: none;
  }

  .bc-sticky-atc__price-col {
    display: none;
  }

  .bc-sticky-atc__button {
    padding: 10px 18px;
    font-size: 11px;
  }
}


/* ============================================================
   Variant Picker — Unavailable State
   ============================================================ */

.bc-product__variant-option.is-unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  position: relative;
}

.bc-product__variant-option.is-unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  transform: rotate(-12deg);
}

/* ── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .bc-product__gallery-slider {
    scroll-behavior: auto;
  }

  .bc-product__variant-option {
    transition: none;
  }

  .bc-product__atc,
  .bc-product__qty-btn {
    transition: none;
  }

  .bc-lightbox__image {
    transition: none;
  }

  .bc-sticky-atc {
    transition: none;
  }

  .bc-product__accordion-body {
    transition: none;
  }

  .bc-product__accordion-icon {
    transition: none;
  }
}
