.free-shipping-bar{
  border-bottom: 1px solid #333;
}
.cart-free-shipping {
  padding: 12px 0;
  border-top: 1px solid var(--color-entry-line, #ddd);
}

.cart-free-shipping__eligible {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background-color: #f0f8f0;
  border-radius: 4px;
  color: #2e7d32;
}

.cart-free-shipping__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #2e7d32;
}

.cart-free-shipping__text {
  margin: 0;
  color: #2e7d32;
  font-weight: 500;
}

.cart-free-shipping__progress {
  padding: 12px;
}

.cart-free-shipping__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cart-free-shipping__label {
  margin: 0;
  color: var(--color-light-text, #666);
}

.cart-free-shipping__amount {
  margin: 0;
  font-weight: 500;
  color: var(--color-text, #333);
}

.cart-free-shipping__bar {
  width: 100%;
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.cart-free-shipping__fill {
  height: 100%;
  background: linear-gradient(90deg, #ffa500, #ff8c00);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.cart-free-shipping__hint {
  margin: 0;
  text-align: center;
  color: var(--color-light-text, #999);
}