@charset "UTF-8";
/**
 * Delivery (Lieferbedingungen) Component
 * 
 * Style-Guide-konforme SCSS-Implementierung für Lieferbedingungen
 * ✅ Verwendet zentrale SCSS-Variablen aus abstracts/_variables.scss
 * ✅ BEM-Naming-Konvention
 * ✅ Responsive Design mit Mobile-First Approach
 */
/*!
 * BlechArt.shop - Design Tokens (SCSS Variables)
 * Basierend auf style-guide/tokens/
 */
.delivery-header {
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 3rem);
}
.delivery-header__title {
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  line-height: 1.2;
}
.delivery-header__description {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: #d1d5db;
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
  line-height: 1.75;
}

.delivery-country-selector {
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
}
.delivery-country-selector__label {
  display: block;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  color: #f3f4f6;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
}
.delivery-country-selector__select {
  width: 100%;
  max-width: 300px;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  border: 1px solid #4b5563;
  border-radius: 0.375rem;
  background-color: #111827;
  color: #f9fafb;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  transition: all 0.2s ease-in-out;
}
.delivery-country-selector__select:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.delivery-country-selector__select:hover {
  border-color: #6b7280;
}

.delivery-stats {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.delivery-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(0.8rem, 2vw, 1rem);
}
@media (max-width: 768px) {
  .delivery-stats__grid {
    grid-template-columns: 1fr;
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}

.delivery-stat-card {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: clamp(0.8rem, 2vw, 1rem);
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  transition: all 0.2s ease-in-out;
}
.delivery-stat-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.delivery-stat-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
.delivery-stat-card__content {
  flex: 1;
  min-width: 0;
}
.delivery-stat-card__value {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #f9fafb;
  line-height: 1.2;
}
.delivery-stat-card__label {
  display: block;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #d1d5db;
  margin-top: clamp(0.2rem, 0.5vw, 0.25rem);
  line-height: 1.5;
}

.delivery-zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(2rem, 6vw, 3rem);
}

.delivery-zone-card {
  background: #111827;
  border-radius: 0.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid #4b5563;
  transition: all 0.2s ease-in-out;
}
.delivery-zone-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
}
.delivery-zone-card--highlighted {
  border-color: #f59e0b;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  background: rgba(245, 158, 11, 0.2);
}
.delivery-zone-card__header {
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.delivery-zone-card__title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.delivery-zone-card__description {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #d1d5db;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
}
.delivery-zone-card__zone-badge {
  display: inline-block;
  background: #f59e0b;
  color: #111827;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 9999px;
  font-weight: 500;
}
.delivery-zone-card__shipping-rates {
  margin: clamp(0.8rem, 2vw, 1rem) 0;
  padding: clamp(0.8rem, 2vw, 1rem);
  background: #111827;
  border-radius: 0.375rem;
  border-left: 4px solid #f59e0b;
}
.delivery-zone-card__rates-title {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
}
.delivery-zone-card__countries {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  margin: clamp(0.8rem, 2vw, 1rem) 0;
}
.delivery-zone-card__shipping-time {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #d1d5db;
  font-weight: 500;
  margin-top: clamp(0.6rem, 1.5vw, 0.75rem);
  padding-top: clamp(0.6rem, 1.5vw, 0.75rem);
  border-top: 1px solid #374151;
}

.delivery-shipping-rates {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}

.delivery-shipping-rate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  background: #111827;
  border-radius: 0.25rem;
  border: 1px solid #374151;
}
.delivery-shipping-rate__range {
  font-weight: 500;
  color: #e5e7eb;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.delivery-shipping-rate__range .delivery-shipping-rate__plus {
  color: #9ca3af;
  font-weight: normal;
}
.delivery-shipping-rate__cost {
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.delivery-shipping-rate__cost .delivery-cost--paid {
  color: #f9fafb;
}
.delivery-shipping-rate__cost .delivery-cost--free {
  color: #4ade80;
}

.delivery-country-tag {
  display: inline-block;
  background: #1f2937;
  color: #e5e7eb;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.25rem;
  border: 1px solid #374151;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.delivery-country-tag:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
  color: #f9fafb;
}
.delivery-country-tag--highlighted {
  background: #f59e0b;
  color: #111827;
  border-color: #f59e0b;
  font-weight: 500;
}
.delivery-country-tag--selected {
  background: #f59e0b;
  color: #111827;
  border-color: #f59e0b;
}

.delivery-info {
  background-color: #111827;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(1.2rem, 4vw, 2rem);
}
.delivery-info__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.delivery-info__content {
  color: #e5e7eb;
  line-height: 1.75;
}
.delivery-info__content p {
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.delivery-info__content p:last-child {
  margin-bottom: 0;
}
.delivery-info__content ul {
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  padding-left: clamp(1rem, 3vw, 1.5rem);
}
.delivery-info__content ul li {
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}

@media (max-width: 768px) {
  .delivery-header__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .delivery-header__description {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .delivery-zones {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vw, 1rem);
  }
  .delivery-zone-card {
    padding: clamp(0.8rem, 2vw, 1rem);
  }
  .delivery-zone-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.4rem, 1vw, 0.5rem);
  }
  .delivery-zone-card__title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .delivery-zone-card__cost {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .delivery-country-selector__select {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .delivery-header {
    margin-bottom: clamp(1.2rem, 4vw, 2rem);
  }
  .delivery-zone-card {
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .delivery-zone-card__countries {
    gap: clamp(0.2rem, 0.5vw, 0.25rem);
  }
  .delivery-country-tag {
    font-size: 0.75rem;
    padding: clamp(0.2rem, 0.5vw, 0.25rem);
  }
  .delivery-info {
    padding: clamp(0.8rem, 2vw, 1rem);
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }
}
.shop-section--reduced {
  padding: clamp(1rem, 3vw, 1.5rem) 0;
}
@media (max-width: 768px) {
  .shop-section--reduced {
    padding: clamp(0.8rem, 2vw, 1rem) 0;
  }
}
/*# sourceMappingURL=delivery.css.map */
