/** Shopify CDN: Minification failed

Line 139:0 Unexpected "}"

**/
.sticky-atc {
  position: fixed;
    bottom: 0;
    right: 50px;
    z-index: 30;
    background: rgb(var(--color-background));
    border-top: 1px solid rgba(var(--color-foreground), .1);
    box-shadow: 0 -4px 12px #00000014;
    transform: translateY(100%);
    transition: transform .3s ease;
    width: 40%;
    border-radius: 6px;
}

.sticky-atc.is-visible {
  transform: translateY(0);
}

.sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.5rem;
}

.sticky-atc__image {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.sticky-atc__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.sticky-atc__title {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc__variant {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.7);
}

.sticky-atc__price {
  flex-shrink: 0;
  white-space: nowrap;
}

.sticky-atc__button {
  flex-shrink: 0;
  min-width: 140px;
}

.sticky-atc__button span{
 color: #fff;
}

@media screen and (max-width: 989px) {
  .sticky-atc__inner {
    padding: 1rem 2rem;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  .sticky-atc__inner {
    padding: 0.8rem 1.2rem;
    gap: 0.8rem;
  }

  .sticky-atc {
    width: 90%;
    right: 0;
    margin: auto;
}

  .sticky-atc__image {
    width: 42px;
    height: 42px;
  }

  .sticky-atc__variant {
    display: none;
  }

  .sticky-atc__title {
    font-size: 1.3rem;
  }

  .sticky-atc__price {
    font-size: 1.3rem;
  }

  .sticky-atc__button {
    min-width: 110px;
    padding: 0 1.2rem;
    font-size: 1.3rem;
  }
}

/* Very small phones */
@media screen and (max-width: 400px) {
  .sticky-atc__inner {
    gap: 0.6rem;
    padding: 0.7rem 1rem;
  }

  .sticky-atc__media {
    display: none;
  }

  .sticky-atc__price {
    display: none;
  }

  .sticky-atc__info {
    flex-grow: 1;
  }

  .sticky-atc__button {
    flex-grow: 1;
    min-width: 0;
  }
} 
}