/* Cart delivery choice summary — engine-driven values. */
.woocommerce-cart .ddse-native-shipping-row-hidden {
  display: none !important;
}

.woocommerce-cart .ddse-cart-delivery-summary {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid #d9dddf;
  border-bottom: 1px solid #d9dddf;
}

.woocommerce-cart .ddse-cart-delivery-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 14px 0;
}

.woocommerce-cart .ddse-cart-delivery-summary__row + .ddse-cart-delivery-summary__row {
  border-top: 1px solid #e5e8e9;
}

.woocommerce-cart .ddse-cart-delivery-summary__label {
  min-width: 0;
  font-size: .94rem;
  line-height: 1.35;
  color: #1f2525;
}

.woocommerce-cart .ddse-cart-delivery-summary__value {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: .92rem;
  font-weight: 850;
  color: #172020;
}

.woocommerce-cart .ddse-cart-delivery-summary--classic > td {
  padding: 0 !important;
}

.woocommerce-cart .ddse-cart-pickup-cta {
  margin: 18px 0 12px;
}

.woocommerce-cart .ddse-cart-pickup-cta__button {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border: 0;
  border-radius: 9px;
  background: var(--ddm-accent-dark, #35655f);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: filter .16s ease, transform .16s ease, opacity .16s ease;
}

.woocommerce-cart .ddse-cart-pickup-cta__button:hover,
.woocommerce-cart .ddse-cart-pickup-cta__button:focus-visible {
  filter: brightness(.94);
}

.woocommerce-cart .ddse-cart-pickup-cta__button:active {
  transform: translateY(1px);
}

.woocommerce-cart .ddse-cart-pickup-cta__button:disabled {
  cursor: wait;
  opacity: .72;
}

.woocommerce-cart .ddse-cart-pickup-cta__button svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.woocommerce-cart .ddse-cart-pickup-cta__error {
  margin: 8px 0 0;
  color: #a32424;
  font-size: .82rem;
  line-height: 1.35;
}

/* The current market theme inserts the free-shipping module before checkout.
   Keep the requested order: total -> pickup CTA -> threshold module -> checkout. */
.woocommerce-cart .ddse-cart-pickup-cta + .ddm-cart-shipping-progress {
  margin-top: 0;
}

@media (max-width: 600px) {
  .woocommerce-cart .ddse-cart-delivery-summary__row {
    min-height: 56px;
    padding: 12px 0;
  }

  .woocommerce-cart .ddse-cart-delivery-summary__label,
  .woocommerce-cart .ddse-cart-delivery-summary__value {
    font-size: .86rem;
  }

  .woocommerce-cart .ddse-cart-pickup-cta__button {
    min-height: 54px;
    padding: 13px 14px;
    font-size: .93rem;
  }
}
