/* =========================================================
   PREISE – TABELLE
   Desktop First | Mobile Cards
   ========================================================= */

/* ---------------------------------------------------------
   WRAPPER
--------------------------------------------------------- */

.price-table-wrapper {
  margin-top: var(--space-lg);
  overflow-x: auto;
}

/* ---------------------------------------------------------
   TABLE (DESKTOP)
--------------------------------------------------------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  overflow: hidden;
}

/* HEAD */
.price-table thead {
  background: rgba(0, 0, 0, 0.25);
}

.price-table th {
  text-align: left;
  padding: 1.2rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sunlight);
}

/* BODY */
.price-table td {
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  color: var(--color-neutral);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* PRICE COLUMN */
.price-table td:last-child {
  font-weight: 600;
  color: var(--color-sunlight);
}

/* HOVER */
.price-table tbody tr {
  transition: background 0.3s ease;
}

.price-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ---------------------------------------------------------
   NOTE
--------------------------------------------------------- */

.price-note {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-muted);
  max-width: 100%;
}

.price-notice {
  margin-top: var(--space-xl);
  padding: var(--space-lg);

  background: linear-gradient(
    180deg,
    rgba(15, 36, 24, 0.85),
    rgba(11, 14, 12, 0.9)
  );

  border-left: 4px solid var(--color-sunlight);
  border-radius: 18px;

  color: var(--color-neutral);
}

.price-notice h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-sunlight);
}

.price-notice p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

/* =========================================================
   MOBILE
   ≤ 768px
   ========================================================= */

@media (max-width: 768px) {
  .price-table {
    background: none;
    border-radius: 0;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody tr {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    margin-bottom: var(--space-md);
  }

  .price-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .price-table td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.35rem 0;
    border: none;
    font-size: 0.9rem;
  }

  .price-table td::before {
    content: attr(data-label);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .price-table td:last-child {
    margin-top: 0.4rem;
    font-size: 1rem;
  }
}

.price-table tbody tr.is-featured {
  background: linear-gradient(
    135deg,
    rgba(226, 179, 124, 0.18),
    rgba(92, 122, 58, 0.18)
  );
}

.price-table tbody tr.is-featured td:last-child {
  font-size: 1.05rem;
}
