/** Shopify CDN: Minification failed

Line 30:0 Unexpected "}"

**/
/* ============================================================
   Rabbit Island Coffee Co. — Free Shipping Bar
   Paste into: Assets > ri-shipping-bar.css  (new file)
   Then link in layout/theme.liquid before </head>
   {{ 'ri-shipping-bar.css' | asset_url | stylesheet_tag }}
   ============================================================ */

:root {
  --ri-sage:   #96b5ab;
  --ri-mauve:  #c490c1;
  --ri-forest: #254636;
  --ri-cream:  #f7f2eb;
  --ri-cream2: #efe9e0;
  --ri-warm:   #5a5248;
  --ri-ink:    #1c1c1a;
}

/* Bar wrapper */
.ri-shipping-bar {
  padding: 12px 18px 24px;
  background: transparent;
  border-bottom: none;
  transition: background 0.4s ease, border-color 0.4s ease;
}
}

/* Unlocked state — mauve */
.ri-shipping-bar--unlocked {
  background: #f5eaf4;
  border-bottom-color: #e8d0e6;
}

.ri-shipping-bar--unlocked .ri-shipping-bar__msg {
  color: #7a3d78;
}

.ri-shipping-bar--unlocked .ri-shipping-bar__track {
  background: #dbb8d9;
}

.ri-shipping-bar--unlocked .ri-shipping-bar__fill {
  background: var(--ri-mauve);
}

/* Message text */
.ri-shipping-bar__msg {
  font-size: 12.5px;
  color: var(--ri-warm);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.ri-shipping-bar__msg strong {
  color: var(--ri-ink);
  font-weight: 600;
}

/* Progress track */
.ri-shipping-bar__track {
  background: #d9d0c5;
  border-radius: 10px;
  height: 5px;
  overflow: hidden;
  transition: background 0.4s ease;
}

/* Progress fill */
.ri-shipping-bar__fill {
  height: 100%;
  border-radius: 10px;
  background: var(--ri-forest);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s ease;
  position: relative;
}

.ri-shipping-bar__fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}
/* ── Product Badges ── */
.ri-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.ri-badge--popular {
  background: var(--ri-sage);
  color: #fff;
}

.ri-badge--staff {
  background: var(--ri-mauve);
  color: #fff;
}

.ri-badge--new {
  background: var(--ri-forest);
  color: var(--ri-cream);
}