/* ============================================================
   BELISSIMA – Preise-Styles
   ============================================================ */

.prices-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--purple-50);
  border: 1px solid var(--purple-200, #ddd6fe);
  border-left: 4px solid var(--purple-600);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 60px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.prices-note i {
  color: var(--purple-600);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Price Category ───────────────────────────────────────── */
.price-category {
  margin-bottom: 56px;
}

.price-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--purple-100);
}

.price-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(124,58,237,.25);
}

.price-cat-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple-900);
}

/* ── Price Table ──────────────────────────────────────────── */
.price-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition-fast);
}

.price-row:last-child { border-bottom: none; }

.price-row:hover { background: var(--purple-50); }

.price-row--highlight {
  background: linear-gradient(90deg, var(--purple-50), var(--white));
}

.price-row--highlight:hover {
  background: var(--purple-100);
}

.price-name {
  font-size: 0.95rem;
  color: var(--gray-800);
  font-weight: 500;
  flex: 1;
}

.price-dots {
  flex: 1;
  border-bottom: 2px dotted var(--gray-200);
  min-width: 40px;
  max-width: 200px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-700);
  white-space: nowrap;
  min-width: 100px;
  text-align: right;
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Footer Note ──────────────────────────────────────────── */
.prices-footer {
  text-align: center;
  padding: 48px 32px;
  background: var(--purple-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--purple-100);
  margin-top: 24px;
}

.prices-footer p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ── CTA (reuse) ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 60%, var(--purple-800) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Matrix-Zeile (kurz/mittel/lang × ohne/mit Spray) ────── */
.price-row--matrix {
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 24px;
  gap: 12px;
}

.price-row--matrix .price-name {
  flex: unset;
  width: 100%;
}

.price-sub-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.price-sub-table thead th {
  text-align: right;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--purple-500);
  padding: 0 12px 8px;
  border-bottom: 1px solid var(--purple-100);
}

.price-sub-table thead th:first-child {
  text-align: left;
  width: 80px;
}

.price-sub-table tbody td {
  text-align: right;
  padding: 8px 12px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
}

.price-sub-table tbody tr:last-child td { border-bottom: none; }

.price-sub-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--purple-700);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-sub-table tbody td.td-highlight {
  color: var(--purple-800);
  font-weight: 700;
}

/* Föhnen/Styling Längen-Chips */
.price-lengths {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.price-length-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.85rem;
}

.price-length-chip .chip-label {
  font-weight: 600;
  color: var(--purple-600);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-length-chip .chip-val {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--purple-800);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .price-row { padding: 14px 16px; }
  .price-dots { display: none; }
  .price-value { min-width: unset; }
  .price-name { font-size: 0.88rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
