/** Shopify CDN: Minification failed

Line 257:23 Expected "}" to go with "{"

**/
/* ==========================================================================
   Sticky Add to Cart — Lumvari
   Pulls colors/fonts from your theme's own CSS variables first, and falls
   back to Lumvari's brand palette (dusty rose #C4908A, cream, Poppins) if
   a variable isn't present. Tweak the fallback values below if your theme
   changes.
   ========================================================================== */

:root {
  --sticky-atc-bg: rgb(var(--color-background, 255, 255, 255));
  --sticky-atc-text: rgb(var(--color-base-text, 43, 43, 43));
  --sticky-atc-text-muted: rgba(var(--color-base-text, 43, 43, 43), 0.55);
  --sticky-atc-accent: rgb(var(--color-base-accent-1, 196, 144, 138));
  --sticky-atc-accent-solid: #c4908a;
  --sticky-atc-on-accent: var(--color-button-text, #ffffff);
  --sticky-atc-radius: var(--buttons-radius, 10px);
  --sticky-atc-radius-lg: var(--card-corner-radius, 14px);
  --sticky-atc-font: var(--font-body-family, "Poppins", sans-serif);
  --sticky-atc-shadow: 0 -6px 24px rgba(43, 43, 43, 0.12);
}

#sticky-atc-trigger {
  height: 1px;
}

.sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  font-family: var(--sticky-atc-font);
  background: var(--sticky-atc-bg);
  box-shadow: var(--sticky-atc-shadow);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: env(safe-area-inset-bottom, 0);
  border-top: 1px solid rgba(var(--color-base-text, 43, 43, 43), 0.08);
}

.sticky-atc.is-visible {
  transform: translateY(0);
}

.sticky-atc__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
}

.sticky-atc__info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  flex: 1 1 auto;
}

.sticky-atc__image {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex: none;
  background: rgba(var(--color-base-text, 43, 43, 43), 0.05);
}

.sticky-atc__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  gap: 2px;
}

.sticky-atc__title {
  color: var(--sticky-atc-text);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 46vw;
}

.sticky-atc__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13.5px;
}

.sticky-atc__price-sale {
  color: var(--sticky-atc-text);
  font-weight: 600;
}

.sticky-atc__price-compare {
  color: var(--sticky-atc-text-muted);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 12px;
}

.sticky-atc__button {
  position: relative;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  background: var(--sticky-atc-accent, var(--sticky-atc-accent-solid));
  color: var(--sticky-atc-on-accent);
  font-family: var(--sticky-atc-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--sticky-atc-radius);
  padding: 13px 26px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  box-shadow: 0 4px 14px rgba(196, 144, 138, 0.35);
  animation: sticky-atc-pulse 2.6s ease-in-out infinite;
}

.sticky-atc__button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(196, 144, 138, 0.45);
}

.sticky-atc__button:active {
  transform: translateY(0) scale(0.98);
}

.sticky-atc__button.is-disabled,
.sticky-atc__button:disabled {
  background: rgba(var(--color-base-text, 43, 43, 43), 0.15);
  color: rgba(var(--color-base-text, 43, 43, 43), 0.5);
  cursor: not-allowed;
  box-shadow: none;
  animation: none;
}

.sticky-atc__button.is-loading .sticky-atc__button-label {
  opacity: 0;
}

.sticky-atc__button.is-loading {
  animation: none;
}

.sticky-atc__spinner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s ease;
}

.sticky-atc__button.is-loading .sticky-atc__spinner {
  opacity: 1;
  animation: sticky-atc-spin 0.7s linear infinite;
}

.sticky-atc__button.is-success {
  animation: none;
  background: var(--sticky-atc-accent, var(--sticky-atc-accent-solid));
}

@keyframes sticky-atc-spin {
  to {
    transform: rotate(360deg) scale(0.8);
  }
}

@keyframes sticky-atc-pulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(196, 144, 138, 0.35), 0 0 0 0 rgba(196, 144, 138, 0.35);
  }
  50% {
    box-shadow: 0 4px 14px rgba(196, 144, 138, 0.35), 0 0 0 8px rgba(196, 144, 138, 0);
  }
}

/* Success toast that pops up above the bar after a successful add */
.sticky-atc__toast {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sticky-atc-text);
  color: var(--sticky-atc-bg);
  padding: 10px 14px;
  border-radius: var(--sticky-atc-radius);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.sticky-atc__toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-atc__toast-check {
  color: var(--sticky-atc-accent, var(--sticky-atc-accent-solid));
  font-weight: 700;
}

.sticky-atc__toast-link {
  color: var(--sticky-atc-accent, var(--sticky-atc-accent-solid));
  text-decoration: underline;
  margin-left: 4px;
}

/* Mobile refinements */
@media (max-width: 480px) {
  .sticky-atc__inner {
    padding: 8px 12px;
    gap: 10px;
  }

  .sticky-atc__title {
    max-width: 38vw;
    font-size: 12.5px;
  }

  .sticky-atc__price {
    font-size: 12.5px;
  }

  .sticky-atc__button {