/* Free Shipping Progress Bar Styles */
.free-ship-progress-bar {
  position: fixed;
  top: 60px; /* Below sticky header */
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 10px 16px;
  border-bottom: 2px solid var(--black);
  z-index: 95;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.free-ship-progress-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.free-ship-progress-text { font-size: 13px; font-weight: 800; margin-bottom: 8px; color: var(--black); }
.free-ship-progress-track { height: 8px; background: white; border: 1px solid var(--light-gray); border-radius: 4px; overflow: hidden; }
.free-ship-progress-fill { height: 100%; background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%); width: 0%; transition: width 0.5s ease; }

@media (max-width: 768px) {
  .free-ship-progress-bar { top: 56px; padding: 8px 12px; }
  .free-ship-progress-text { font-size: 11px; margin-bottom: 6px; }
  .free-ship-progress-track { height: 6px; }
}
