/** Shopify CDN: Minification failed

Line 112:4 Expected "}" to go with "{"

**/
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 -12px 40px rgba(0,0,0,0.08);

  padding: 14px 18px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));

  z-index: 999;

  transform: translateY(100%);
  opacity: 0;

  transition:
    transform 0.45s cubic-bezier(.22,1,.36,1),
    opacity 0.3s ease;

  will-change: transform;
}

.sticky-atc:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
}

/* Hidden state */
.sticky-atc.hidden {
  display: block !important;
  transform: translateY(110%);
  opacity: 0;
}

/* Inner layout */
.sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Info */
.sticky-atc__info {
  display: flex;
  flex-direction: column;
}

.sticky-atc__title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sticky-atc__price {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}

/* Button styling */
.sticky-atc__button {
  font-family: 'Alexandria', serif;
  transition: transform 0.18s ease, opacity 0.2s ease;
}

.sticky-atc__button.is-pressed {
  transform: scale(0.97);
}

/* Optional luxury top divider glow */
.sticky-atc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.15),
    transparent
  );
}
.sticky-atc__image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 4px;
}
@media screen and (min-width: 991px) {
  .sticky-atc__button {
    margin-right: 5rem;
}
/* Hide sticky on desktop 
@media screen and (min-width: 991px) {
  .sticky-atc {
    display: none !important;
  }
}
  */