/** Shopify CDN: Minification failed

Line 120:0 Expected "}" to go with "{"

**/
/* ----------------------------------------------------------
   ★★★  CART BAR (fixed bottom)  ★★★
   ---------------------------------------------------------- */
.dfw-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #1f2d4d;
  color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.22);

  /* hidden by default — slides in from bottom */
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.34, 1.18, 0.64, 1);
  will-change: transform;
}

.dfw-cart-bar.is-visible {
  transform: translateY(0);
}

.dfw-cart-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

/* Cart icon + count + total */
.dfw-cart-bar__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.dfw-cart-bar__icon {
  width: 22px;
  height: 22px;
  fill: #ff8a00;
  flex-shrink: 0;
}
.dfw-cart-bar__count  { color: #eee; }
.dfw-cart-bar__count strong { color: #fff; font-size: 16px; }
.dfw-cart-bar__divider { color: #666; }
.dfw-cart-bar__total  { color: #eee; }
.dfw-cart-bar__total strong { color: #fff; font-size: 17px; }

/* Buttons */
.dfw-cart-bar__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.dfw-cart-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 38px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.dfw-cart-bar__btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #eee;
}
.dfw-cart-bar__btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.dfw-cart-bar__btn--primary {
  background: #ff8a00;
  color: #fff;
  border: 1.5px solid transparent;
}
.dfw-cart-bar__btn--primary:hover {
  background: #e07800;
  color: #fff;
}

/* Pulse animation on count change */
@keyframes dfw-cart-bar-pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); color: #ff8a00; }
  100% { transform: scale(1); }
}
.dfw-cart-bar__count strong.is-updating {
  display: inline-block;
  animation: dfw-cart-bar-pulse 0.4s ease;
}

/* Mobile cart bar */
@media (max-width: 768px) {
.dfw-cart-bar {
display: none;
}
