.delivery-cost-info {
  --dci-bg: #f5f5f5;
  --dci-border: #dcdcdc;
  --dci-title: #232323;
  --dci-text: #4a4a4a;
  --dci-icon: #6b6b6b;
  --dci-link: #1f6fb2;
  --dci-radius: 4px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.125rem;
  background: var(--dci-bg);
  border: 1px solid var(--dci-border);
  border-radius: var(--dci-radius);
}

.delivery-cost-info--soft {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.delivery-cost-info--minimal {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border-width: 0 0 1px;
  border-radius: 0;
}

.delivery-cost-info__title {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--dci-title);
}

.delivery-cost-info__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-cost-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.delivery-cost-info__item + .delivery-cost-info__item {
  margin-top: 0.625rem;
}

.delivery-cost-info__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--dci-icon);
}

.delivery-cost-info__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.delivery-cost-info__text,
.delivery-cost-info__text a {
  color: var(--dci-text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.delivery-cost-info__text a {
  color: var(--dci-link);
  text-decoration: underline;
}

.delivery-cost-info__text a:hover,
.delivery-cost-info__text a:focus {
  opacity: 0.85;
}
