/* =============================================================================
   Cart extras — free-shipping progress bar and payment icons
   ============================================================================= */

.dpl-ship-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  background: #F7F7F7;
}

.dpl-ship-bar__text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #4B4B4B;
}

.dpl-ship-bar__text strong {
  font-weight: 500;
  color: #0D0D0D;
}

.dpl-ship-bar__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FF9A01;
  color: #FFFFFF;
  flex-shrink: 0;
}

.dpl-ship-bar__track {
  position: relative;
  height: 6px;
  border-radius: 100px;
  background: #E5E5E5;
  overflow: hidden;
}

.dpl-ship-bar__fill {
  display: block;
  height: 100%;
  border-radius: 100px;
  background: #FF9A01;
  transition: width 0.3s ease;
}

.dpl-ship-bar--reached .dpl-ship-bar__fill {
  background: #0D0D0D;
}

/* -----------------------------------------------------------------------------
   Payment icons
   ----------------------------------------------------------------------------- */

.dpl-payment-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.dpl-payment-icons__label {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ADADAD;
}

.dpl-payment-icons__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dpl-payment-icons__item {
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.9;
}

.dpl-payment-icons__item svg {
  display: block;
  height: 26px;
  width: auto;
}

/* Text badge for a method we have no artwork for yet */
.dpl-payment-icons__item:has(.dpl-payment-icons__text) {
  height: 26px;
  padding: 0 8px;
  border: 1px solid #E5E5E5;
  background: #FFFFFF;
  border-radius: 6px;
}

.dpl-payment-icons__text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #4B4B4B;
  white-space: nowrap;
}

.dpl-payment-icons--start {
  align-items: flex-start;
}

.dpl-payment-icons--start .dpl-payment-icons__list {
  justify-content: flex-start;
}

/* Image artwork (official logos uploaded to Shopify Files) sits on the same white
   plate as the drawn badges — the PNGs are transparent and not 50x32, so the plate
   comes from the item and the logo is contained inside it. */
.dpl-payment-icons__item:has(.dpl-payment-icons__img) {
  height: 26px;
  width: 41px;
  padding: 2px 3px;
  background: #FFFFFF;
  border-radius: 4px;
  justify-content: center;
}

.dpl-payment-icons__img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* -----------------------------------------------------------------------------
   Payment note above the checkout button
   ----------------------------------------------------------------------------- */

.dpl-cart-pay-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 12px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  background: #F7F7F7;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #4B4B4B;
}

.dpl-cart-pay-note__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9A01;
  flex-shrink: 0;
}

@media screen and (max-width: 749px) {
  .dpl-cart-pay-note {
    text-align: left;
    justify-content: flex-start;
  }
}
