/** Shopify CDN: Minification failed

Line 418:13 Expected identifier but found whitespace
Line 418:14 Unexpected "1px"

**/
/* Original Berry-T Tote — Luxury Configurator Styles */

.bt-configurator {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 100px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .bt-configurator {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px 90px;
  }
}

/* ---- Stage / Hero ---- */
.bt-configurator__stage {
  position: sticky;
  top: 24px;
  align-self: start;
}
@media (max-width: 900px) {
  .bt-configurator__stage { position: static; }
}

.bt-configurator__hero-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #f6f6f4, #e9e9e6);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.bt-configurator__hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 280ms ease, transform 280ms ease;
  transform: scale(1.01);
}
.bt-configurator__hero.is-visible {
  opacity: 1;
  transform: scale(1);
}

.bt-configurator__hero-loading {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.bt-configurator__hero-loading.is-active { display: flex; }
.bt-configurator__hero-loading::after {
  content: "";
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  border-top-color: rgba(0,0,0,0.45);
  animation: bt-spin 0.7s linear infinite;
}
@keyframes bt-spin { to { transform: rotate(360deg); } }

.bt-configurator__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.bt-configurator__thumb {
  flex: 0 0 auto;
  width: 68px;
  height: 85px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #f2f2f0;
  transition: border-color 160ms ease, transform 160ms ease;
}
.bt-configurator__thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.bt-configurator__thumb:hover { transform: translateY(-2px); }
.bt-configurator__thumb.is-active { border-color: #1a1a1a; }

/* ---- Panel ---- */
.bt-configurator__panel {
  padding-top: 8px;
}

.bt-configurator__eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #8a8a8a;
  margin-bottom: 10px;
}

.bt-configurator__title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.bt-configurator__price {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.bt-configurator__flash-note {
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  color: #9a9a9a;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.bt-minitote__intro-note {
  font-size: 11px;
  letter-spacing: 0.4px;
  color: #9a9a9a;
  font-style: italic;
  margin-bottom: 32px;
}

.bt-configurator__section-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 12px;
  margin-top: 28px;
}
.bt-configurator__section-label span {
  color: #1a1a1a;
  font-weight: 700;
}

/* Color swatches */
.bt-configurator__swatches--color {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.bt-swatch-color {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  transition: transform 200ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 200ms ease;
}
.bt-swatch-color:hover { transform: scale(1.08); }
.bt-swatch-color.is-selected {
  transform: scale(1.12);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1a1a1a;
}

/* Hardware swatches */
.bt-configurator__swatches--hardware {
  display: flex;
  gap: 14px;
}
.bt-swatch-hardware {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.bt-swatch-hardware__dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  transition: transform 200ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 200ms ease;
}
.bt-swatch-hardware.is-selected .bt-swatch-hardware__dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1a1a1a;
}
.bt-swatch-hardware__label {
  font-size: 11px;
  color: #6a6a6a;
  letter-spacing: 0.5px;
}
.bt-swatch-hardware.is-soldout {
  cursor: not-allowed;
  opacity: 0.4;
}
.bt-swatch-hardware.is-soldout .bt-swatch-hardware__dot {
  filter: grayscale(60%);
}
.bt-swatch-hardware.is-soldout .bt-swatch-hardware__label {
  color: #b23b3b;
  font-weight: 600;
}

/* Add to cart */
.bt-configurator__add-to-cart {
  margin-top: 40px;
  width: 100%;
  padding: 16px 24px;
  background: #00b8a9; /* flat brand teal (Sean, Aug 12) — was a gradient, replaced with a solid fill */
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 180ms ease, opacity 180ms ease, transform 120ms ease, box-shadow 180ms ease;
}
.bt-configurator__add-to-cart:hover:not(:disabled) { background: #00a396; box-shadow: 0 8px 20px rgba(0,184,169,0.28); transform: translateY(-1px); }
.bt-configurator__add-to-cart:disabled { opacity: 0.35; cursor: not-allowed; }

.bt-configurator__meta {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: #7a7a7a;
}

/* Bag Dimensions section */
.bt-configurator__dims {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.bt-configurator__dims-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 16px;
  background: linear-gradient(90deg, #0d5c63 0%, #14a8b5 20%, #6fe8e0 40%, #14a8b5 60%, #0d5c63 80%, #14a8b5 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: bt-dims-shimmer 4.5s linear infinite;
}

@keyframes bt-dims-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: -300% center; }
}

.bt-configurator__dims-group {
  margin-bottom: 16px;
}
.bt-configurator__dims-group:last-child {
  margin-bottom: 0;
}

.bt-configurator__dims-sublabel {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 8px;
}

.bt-configurator__dims-grid {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13,92,99,0.04), rgba(111,232,224,0.06));
  border: 1px solid rgba(13,92,99,0.12);
}

.bt-configurator__dims-item {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  position: relative;
}
.bt-configurator__dims-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(13,92,99,0.14);
}

.bt-configurator__dims-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 4px;
}

.bt-configurator__dims-value {
  display: block;
  font-size: 17px;
  font-weight: 650;
  color: #14343a;
}

.bt-configurator__dims-note {
  margin-top: 10px;
  font-size: 11.5px;
  color: #999;
  line-height: 1.5;
}

/* Crafted With Care section */
.bt-configurator__craft {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.bt-configurator__craft-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bt-configurator__craft-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #444;
}
.bt-configurator__craft-list li:last-child {
  margin-bottom: 0;
}
.bt-configurator__craft-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d5c63, #6fe8e0);
}

/* Sticky mobile bar */
.bt-configurator__sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
}

/* Blurred hero image + "Sold Out" badge for fully sold-out color/hardware combos
   (added Aug 13, 2026 to match the Backpack configurator's existing pattern) */
.bt-configurator__hero-wrap {
  position: relative;
}
.bt-configurator__hero.is-soldout {
  filter: blur(14px) saturate(0.7);
  opacity: 0.55 !important;
  transform: scale(1.04);
}
.bt-configurator__soldout-badge {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(20,20,20,0.88);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  z-index: 5;
  pointer-events: none;
}
.bt-configurator__soldout-badge.is-active { display: block; }
  border-top: 1px solid rgba(0,0,0,0.08);
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  z-index: 40;
  transform: translateY(100%);
  transition: transform 220ms ease;
}
.bt-configurator__sticky-bar.is-visible {
  display: flex;
  transform: translateY(0);
}
.bt-configurator__sticky-info {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4a4a4a;
}
.bt-configurator__sticky-add {
  padding: 10px 20px;
  background: #00b8a9; /* flat brand teal, matches main add-to-cart button */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.bt-configurator__sticky-add:disabled { opacity: 0.35; }

@media (min-width: 901px) {
  .bt-configurator__sticky-bar { display: none !important; }
}


/* ===== Tote Add-On: Baby Berries Pouch (Aug 12, 2026) ===== */
.bt-configurator__addon {
  margin: 20px 0;
  border: 1.5px dashed #14a8b5;
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(20,168,181,0.06), rgba(13,92,99,0.03));
}
.bt-configurator__addon-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.bt-configurator__addon-badge {
  background: #14a8b5;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}
.bt-configurator__addon-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}
.bt-configurator__addon-sub {
  font-size: 13px;
  color: #666;
  margin: 6px 0 14px;
  line-height: 1.4;
}
.bt-configurator__addon-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}
.bt-configurator__addon-checkbox-row input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #14a8b5;
  cursor: pointer;
}
.bt-configurator__addon-checkbox-label {
  font-size: 14px;
  color: #222;
  line-height: 1.4;
}
.bt-configurator__addon-price-line {
  font-weight: 700;
}
.bt-configurator__addon-strike {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  margin-right: 4px;
}
.bt-configurator__addon-save {
  color: #0d8a5a;
  font-weight: 700;
}
.bt-configurator__addon-color-name {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  margin-bottom: 8px;
}
.bt-configurator__addon-colors {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  opacity: 1;
  transition: opacity 0.2s;
}
.bt-configurator__addon-colors--disabled {
  opacity: 0.35;
  pointer-events: none;
}
.bt-configurator__addon-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
}
.bt-configurator__addon-swatch.is-selected {
  border-color: #14a8b5;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #14a8b5;
}


/* ===== Tote Add-On: pouch color preview image (Aug 12, 2026) ===== */
.bt-configurator__addon-preview {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f4f4f2;
  border: 1.5px solid rgba(20,168,181,0.3);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.bt-configurator__addon-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 150ms ease;
}


