/** Shopify CDN: Minification failed

Line 169:0 Unexpected "}"

**/
/* ========== Social Proof System (Smash Price Shop) ========== */
:root {
  --sp-bg: rgba(20,20,22,0.95);
  --sp-border: rgba(255,255,255,0.10);
  --sp-text: #fff;
  --sp-muted: rgba(255,255,255,0.75);
  --sp-accent: #D4AF37; /* gold accent */
  --sp-radius: 14px;
  --sp-shadow: 0 10px 28px rgba(0,0,0,.45);
  --sp-z: 999999;
  --sp-font: inherit;
}

/* Floating Toast */
#sp-toast {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: var(--sp-z);
  font-family: var(--sp-font);
  display: none;
  max-width: min(92vw, 340px);
  background: var(--sp-bg);
  border: 1px solid var(--sp-border);
  color: var(--sp-text);
  border-radius: var(--sp-radius);
  box-shadow: var(--sp-shadow);
  padding: 10px 12px;
  gap: 10px;
  align-items: center;
  backdrop-filter: blur(6px);
  transition: transform .25s ease;
}

#sp-toast.sp-show { display: flex; animation: sp-in .35s ease; }
#sp-toast.sp-hide { animation: sp-out .28s ease forwards; }

@keyframes sp-in {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes sp-out {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(10px); opacity: 0; }
}

#sp-toast .sp-icon {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: 18px;
  background: rgba(255,255,255,0.06);
}

#sp-toast .sp-body { line-height: 1.3; font-size: 14px; }
#sp-toast .sp-title { font-weight: 600; font-size: 14px; }
#sp-toast .sp-sub { color: var(--sp-muted); font-size: 12px; margin-top: 2px; }

#sp-toast .sp-close {
  margin-left: auto;
  cursor: pointer;
  color: var(--sp-muted);
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 14px; /* easier to tap */
  background: rgba(255,255,255,0.06);
  flex: 0 0 auto;
}
#sp-toast .sp-close:hover { color: var(--sp-text); background: rgba(255,255,255,0.10); }

/* ---------- DESKTOP ONLY: Make toast bigger ---------- */
@media (min-width: 990px) {
  #sp-toast {
    max-width: 380px;
    padding: 14px 16px;
    transform: scale(1.08);
  }

  #sp-toast:hover {
    transform: scale(1.12);
  }

  #sp-toast .sp-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  #sp-toast .sp-title {
    font-size: 15px;
  }

  #sp-toast .sp-sub {
    font-size: 13px;
  }
}

/* Inline "viewers now" badge on product page */
.sp-inline-viewers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--sp-muted);
  margin: 8px 0 0;
}
.sp-inline-viewers .dot {
  width: 8px; height: 8px;
  background: #2ecc71;
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(46,204,113,.8);
}

/* Real low stock alert */
.sp-low-stock {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-low-stock .flame {
  font-size: 16px;
}

/* Mobile tweaks */
@media (max-width: 749px) {
  #sp-toast {
    position: fixed;
    left: 6px;                 /* true max-left */
    right: auto;
    bottom: 14px;              /* TRUE bottom-left */
    max-width: calc(100vw - 12px);
    padding: 7px 9px;          /* smaller without transform */
    margin: 0;
    #sp-toast { border-radius: 12px; }
  }

  #sp-toast .sp-icon {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  #sp-toast .sp-title {
    font-size: 12px;
  }

  #sp-toast .sp-sub {
    font-size: 12px;
  }
}



}
/* Pulse effect (JS toggles sp-pulse) */
#sp-toast.sp-pulse {
  animation: sp-pulse 0.9s ease;
}
@keyframes sp-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); box-shadow: 0 0 0 6px rgba(212,175,55,0.12); }
  100% { transform: scale(1); }
}

/* Desktop mini Trending tag */
#sp-toast .sp-trending{
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(212,175,55,0.18);
  border: 1px solid rgba(212,175,55,0.45);
  padding: 4px 7px;
  border-radius: 999px;
  white-space: nowrap;
  margin-left: 6px;
}

/* Black Friday theme */
#sp-toast.sp-theme-bf{
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 0 18px rgba(212,175,55,0.35), var(--sp-shadow);
}

/* Christmas theme */
#sp-toast.sp-theme-xmas{
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 18px rgba(170,220,255,0.35), var(--sp-shadow);
}
