/** Shopify CDN: Minification failed

Line 160:3 Unexpected "/"

**/
/* .drawer-reward-wrapper {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.reward-container {
  background: #fff;
  padding: 20px 10px 30px 10px;
  border-radius: 14px;
  border: 1px solid #f2f2f2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
  text-align: center;
}

.reward-text {
  font-size: 13px;
  margin: 0 0 22px 0;
  color: #444;
}

.reward-text span {
  color: #000;
  font-weight: 800;
}

/* Track and Filling Bar */
.reward-bar-track {
  position: relative;
  height: 6px;
  background: #f0f0f0;
  border-radius: 10px;
  margin: 0 15px 10px 15px;
}

.reward-bar-fill {
  position: absolute;
  height: 100%;
  background: #000;
  border-radius: 10px;
  transition: width 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.reward-container.all-done .reward-bar-fill {
  background: #2ecc71;
}

/* Circular Milestones */
.node {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  z-index: 2;
}

.node-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.node.reached .node-inner {
  background: #000;
  border-color: #000;
}

.reward-container.all-done .n3 .node-inner {
  background: #2ecc71;
  border-color: #2ecc71;
}

.node svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}

.node.reached svg {
  opacity: 1;
}

.gift-emoji { font-size: 13px; }

/* Labels */
.node::after {
  content: attr(data-caption);
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  color: #aaa;
  white-space: nowrap;
}

.node.reached::after { color: #000; }

.n1 { left: 33%; }
.n2 { left: 66%; }
.n3 { right: -5px; }

/* The 1-Second Pop Animation */
.node.reached .confetti-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 2px;
  box-shadow: 0 -15px 0 #2ecc71, 10px -10px 0 #000, 15px 0 0 #2ecc71, -10px -10px 0 #000;
  animation: burst-pop 0.6s ease-out forwards;
}

@keyframes burst-pop {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Coupon Tag Styling */
.coupon-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #2ecc71;
  background: #f4fff8;
  padding: 5px 12px;
  border-radius: 50px;
  margin-top: 30px;
  font-weight: 700;
}

/* Shimmer Animation */
.liquid-shimmer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shim 2.5s infinite;
}

@keyframes shim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
} */


.xo-premium-reward-wrapper {
  padding: 12px 10px;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  margin-bottom: 5px;
}

.xo-reward-main {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #121212;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.xo-reward-main strong {
  font-weight: 700;
  text-transform: uppercase;
}

.xo-reward-main small {
  font-size: 9px;
  color: #888;
  font-weight: 400;
}

.xo-reward-secondary {
  font-size: 10px;
  color: #555;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.xo-dot {
  color: #d1d1d1;
}

.xo-reward-footer {
  font-size: 8.5px;
  color: #a0a0a0;
  margin-top: 6px;
  font-style: italic;
  letter-spacing: 0.01em;
}

.xo-sparkle {
  font-size: 12px;
  animation: xo-flicker 2s infinite;
}

@keyframes xo-flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}