/** Shopify CDN: Minification failed

Line 142:6 Unexpected "{"
Line 142:7 Expected identifier but found "%"
Line 142:87 Unexpected "{"
Line 142:88 Expected identifier but found "%"

**/
/* Sticky Mobile ATC Styles */
  .sticky-mobile-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
  }

  .sticky-mobile-atc--visible {
    transform: translateY(0);
    animation: slideUpBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes slideUpBounce {
    0% { transform: translateY(100%); }
    70% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
  }

  .sticky-mobile-atc__button {
    position: relative;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    height: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #000; /* fallback default */
  }

  .sticky-mobile-atc__button:not(:disabled):hover { filter: brightness(.95); }
  .sticky-mobile-atc__button:not(:disabled):active { filter: brightness(.9); }

  .sticky-mobile-atc__button:disabled {
    background: #666;
    cursor: not-allowed;
  }

  .sticky-mobile-atc__button.loading { pointer-events: none; }

  /* Text, price and dash transitions */
  .sticky-mobile-atc__button-text,
  .sticky-mobile-price,
  .sticky-price-dash,
  .price-item--last {
    transition: opacity 0.25s ease, transform 0.25s ease;
    will-change: opacity, transform;
    opacity: 1;
  }

  .sticky-price-dash {
    display: inline-block;
    margin: 0 6px;
    line-height: 1;
  }

  /* Price-specific styles (keeps original naming compatibility) */
  .sticky-mobile-price,
  .price-item--last {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
  }

  /* Loading overlay covers the button area and keeps the same bg color as the button */
  .sticky-mobile-atc__loading {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* allow JS to keep pointer-events on button; overlay won't block */
    transition: background-color 0.15s ease, opacity 0.15s ease;
    opacity: 1;
  }

  /* Hidden helper */
  .hidden { display: none !important; }

  /* Spinner */
  .sticky-mobile-atc__loading .spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: block;
  }

  .sticky-mobile-atc__loading .path {
    stroke: #fff;
    stroke-linecap: round;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-width: 6;
    fill: none;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Optional subtle shine (keeps original) */
 @keyframes shine {
    0% { background-position: 200% center; }   /* start from right */
    100% { background-position: -200% center; } /* move to left */
}

@-webkit-keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

  /* Mobile behavior */
  @media screen and (max-width: 749px) {
    .product-form__submit { display: none !important; }
    .sticky-mobile-atc { display: block; }

    /* keep original gradient look if not overridden */
    .sticky-mobile-atc:not(:disabled) .sticky-mobile-atc__button,
    .sticky-mobile-atc:not(.loading-state) {
      {% comment %} background: linear-gradient(135deg, #000 0%, #333 50%, #000 100%); {% endcomment %}
              background: linear-gradient(135deg, #BC8B57 0%, #a47848 50%, #BC8B57 100%);
      background-size: 200% auto;
      animation: shine 3s ease infinite;
      -webkit-animation: shine 3s ease infinite;
    }
  }

  /* Desktop */
  @media screen and (min-width: 750px) {
    .product-form__submit { display: block !important; }
    .sticky-mobile-atc { display: none; }
  }

  /* Accessibility: reduce-motion prefs */
  @media (prefers-reduced-motion: reduce) {
    .sticky-mobile-atc,
    .sticky-mobile-atc__button,
    .sticky-mobile-atc__button-text,
    .sticky-price-dash,
    .sticky-mobile-price,
    .sticky-mobile-atc__loading {
      transition: none !important;
      animation: none !important;
    }
  }
  .atc-strip-container{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-weight: 600;
        gap: 5px;
        padding:4px;
  }
  .atc-sticky-text{
    color: #fff;
     font-size: 12px;
  }