.shipment-methods-block {
  max-width: 700px;
}
.shipment-title {
  font-size: 1.35em;
  font-weight: bold;
  margin-bottom: 28px;
}
.shipment-info-bar {
  background: #eafbe7;
  color: #222;
  border-radius: 8px;
  padding: 18px 24px;
  margin-bottom: 32px;
  font-size: 1.08em;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #d2f5c8;
}
.shipment-info-icon {
  font-size: 1.25em;
}
.shipment-methods {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}
.shipment-method {
  background: #fafafa;
  border: 1px solid #222;
  border-radius: 24px;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  transition: border 0.2s, background 0.2s;
  margin-bottom: 0;
}
.shipment-method.selected, .shipment-method:hover {
  border: 2px solid #000000;
  background: #f5fef5;
}
.shipment-method input[type="radio"] {
  display: none;
}
.radio-custom {
  width: 26px;
  height: 26px;
  border: 2px solid #bbb;
  border-radius: 50%;
  margin-right: 10px;
  background: #fff;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.shipment-method.selected .radio-custom {
  border-color: #000000;
}
.shipment-method input[type="radio"]:checked + .radio-custom::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: #000000;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}
.badge,
.badge-green,
.badge-green-light {
  font-size: 0.85em;
  padding: 2px 10px;
  border-radius: 12px;
}
.badge {
  display: inline-block;
  font-weight: 600;
  margin-left: 16px;
  margin-right: 0;
  vertical-align: middle;
}
.badge-green {
  background: #23B20B;
  color: #fff;
}
.badge-green-light {
  background: #eafbe7;
  color: #23B20B;
  border: 1px solid #23B20B;
  font-weight: 500;
  margin-left: 10px;
}
.leaf {
  margin-left: 4px;
  font-size: 1.1em;
}
.shipment-address {
  margin-left: 18px;
  color: #222;
  font-size: 1.08em;
  font-weight: 700;
}
.shipment-method-label {
  flex: 1;
  min-width: 0;
}
.shipment-method-img {
  height: 28px;
  width: auto;
  margin-right: 12px;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .shipment-methods-block {
    max-width: 100%;
    margin-top: 24px;
  }
  .shipment-method {
    padding: 16px 10px;
    font-size: 1em;
  }
}
@media (max-width: 600px) {
  .shipment-methods-block {
    padding: 0 2px;
  }
  .shipment-title {
    font-size: 1.1em;
    margin-bottom: 18px;
  }
  .shipment-info-bar {
    padding: 10px 8px;
    font-size: 0.98em;
  }
  .shipment-method {
    padding: 10px 4px;
    font-size: 0.98em;
  }
  .badge {
    padding: 3px 10px;
    font-size: 0.95em;
  }
  .shipment-address {
    margin-left: 8px;
    font-size: 1em;
  }
}
.item-details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 2px;
}
.item-details-row .item-title {
  font-weight: bold;
  font-size: 1em;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-details-row .item-price {
  font-weight: bold;
  color: #222;
  font-size: 1em;
  min-width: 70px;
  text-align: right;
  margin-left: 16px;
}
@media (max-width: 600px) {
  .item-details-row {
    gap: 8px;
  }
  .item-details-row .item-title {
    font-size: 0.98em;
  }
  .item-details-row .item-price {
    font-size: 0.98em;
    min-width: 50px;
    margin-left: 8px;
  }
}
.checkout-left {
  border: 1.5px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px #0001;
  padding: 32px 24px;
} 