/* =========================================
   PREISLISTE PAGE STYLES
   ========================================= */

.pricing-category {
  max-width: 900px;
  margin: 0 auto;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-left: 10px;
}

.category-title i {
  font-size: 1.8rem;
  color: var(--purple);
  background: rgba(129,32,193,0.1);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
}

.category-title h2 {
  font-size: 1.6rem;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Gitter für die Preis-Karten */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Design der einzelnen Preis-Zeile */
.extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 22px 28px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.extra-item:hover {
  transform: translateY(-2px);
  border-color: rgba(129,32,193,0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.extra-content h4 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
}

.extra-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
  max-width: 500px; /* Damit Text nicht zu breit wird */
}

.extra-price {
  text-align: right;
  min-width: 140px; /* Platz für den Preis */
  padding-left: 20px;
}

.extra-price .amount {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--purple);
}

.extra-price .unit {
  display: block;
  font-size: 0.8rem;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
}

/* Mobile Anpassung für Preisliste */
@media (max-width: 650px) {
  .extra-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .extra-price {
    text-align: left;
    padding-left: 0;
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid #f4f4f4;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .category-title h2 { font-size: 1.4rem; }
}
