.versand-container {
  width: 100%;
  margin: 10px 0;
  padding: 15px;
  box-sizing: border-box;
}
.country-select-wrapper {
  margin-bottom: 20px;
}
.country-select-wrapper label {
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 8px;
  display: block;
}
#country_select {
  padding: 8px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.versandnotification {
  line-height: 1.5;
}
.shipping-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 15px 0;
}
.shipping-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 160px;
  flex-shrink: 0;
}
.shipping-price {
  background: #FDB813;
  color: #2a2a2a;
  padding: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
.shipping-info {
  background: #1a5db4;
  color: white;
  padding: 12px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.shipping-weight {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.shipping-details {
  font-size: 11px;
  line-height: 1.4;
  color: #ccc;
}
.shipping-details .check {
  color: #4CAF50;
  margin-right: 4px;
}
.info-badges {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap;
}
.info-badge {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
}
.shipping-section-title {
  margin: 25px 0 15px 0;
  color: #333;
  font-size: 1.3em;
}
#international_shipping_notice {
  margin: 20px 0;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 5px;
  border-left: 4px solid #1a5db4;
}
@media (max-width: 600px) {
  .shipping-card {
    width: calc(50% - 6px);
    min-width: 130px;
  }
  .shipping-price {
    font-size: 18px;
    padding: 10px;
  }
  .shipping-info {
    padding: 10px;
    min-height: 80px;
  }
  .shipping-weight {
    font-size: 13px;
  }
  .shipping-details {
    font-size: 10px;
  }
  .info-badge {
    font-size: 12px;
    padding: 6px 10px;
  }
  .country-select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  #country_select {
    width: 100%;
  }
  .versandnotification {
    font-size: 14px;
  }
}
