/** Shopify CDN: Minification failed

Line 69:0 Unexpected "}"

**/
.product-add-to-cart-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  /* Hidden by default (desktop) */
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
}

/* Mobile: always visible */
@media screen and (max-width: 767px) {
  .product-add-to-cart-sticky {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

/* Desktop: shown on scroll */
.product-add-to-cart-sticky.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.product-sticky-atc-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Promo Bar */
.atc-promo-bar {
  background-color: #A33B29;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Main ATC Row */
.product-details-sticky {
  padding: 0;
}

.sticky-atc-main-row {
  width: 100%;
}

}

/* Back in Stock Form (Sticky) */
.sticky-notify-form-container {
  width: 100%;
  background-color: #fff;
  padding-bottom: 1px;
}

.sticky-notify-form-container .back-in-stock-inline-form {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.sticky-notify-form-container .email-input {
  flex: 1;
  background: #fff !important;
  border: none !important;
  padding: 0 20px !important;
  height: 57px !important;
  color: #000 !important;
  font-size: 14px !important;
  outline: none !important;
}

.sticky-notify-form-container .button-send {
  flex: 0 0 160px !important;
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
  padding: 0 10px !important;
  height: 57px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.atc-summary-row {
  background-color: #000;
  border-top: 1px solid #222;
  padding: 0;
}

.sticky-control-bar {
  background-color: transparent !important;
  margin-top: 0 !important;
}

.sticky-control-bar .control-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto; /* Left Group and Right Column */
  padding: 8px 16px;
  gap: 4px 12px;
  border-top: 1px solid #ffffff;
}

.summary-left-group {
  grid-column: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0; /* No margin between Label and Price */
  overflow: hidden;
}

.summary-col-left {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-col-center {
  display: flex;
  align-items: baseline;
  padding-left: 4px; /* Tiny space to prevent touching */
  white-space: nowrap;
}

.summary-col-right {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  white-space: nowrap;
}

.sticky-control-bar .type-label,
.sticky-control-bar .label,
.sticky-control-bar .item-name,
.sticky-control-bar .value,
.sticky-control-bar .item-price {
  font-size: 10px !important;
  color: #fff !important;
}

.sticky-control-bar .type-label,
.sticky-control-bar .label {
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.sticky-control-bar .item-name,
.sticky-control-bar .value {
  color: #ccc !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ADD TO BAG button adjustments */
.atc-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1.2;
}

.atc-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.atc-price {
  font-size: 14px;
}

/* Desktop Overrides */
@media screen and (min-width: 768px) {
  .product-add-to-cart-sticky {
    width: auto;
    min-width: 450px;
    max-width: 650px;
    left: auto;
    right: 2rem;
    bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  }

  .atc-summary-row.mobile-only {
    display: none;
  }
}

.product-add-to-cart-sticky .hidden {
  display: none !important;
}