
/* =============================================
   ÁRJEGYZÉK SZEKCIÓ
   ============================================= */

#arak {
  background: var(--off-white);
  padding: 90px 8%;
}

/* ── TÁBLÁK KONTÉNER ── */
.price-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* ── BLOKK ── */
.price-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: box-shadow 0.25s;
}

.price-block:hover {
  box-shadow: 0 6px 24px rgba(60, 156, 60, 0.1);
}

/* Széles blokk — teljes sor */
.price-block-wide {
  grid-column: 1 / -1;
}

/* Kiemelés blokk — kiszállási díj */
.price-block-callout {
  grid-column: 1 / -1;
  background: var(--dark);
  border-color: var(--dark);
}

.price-block-callout .price-block-header h3 { color: var(--white); }
.price-block-callout .price-block-icon { color: var(--teal-lt); }
.price-block-callout .price-note-text { color: rgba(255,255,255,0.75); }
.price-block-callout .price-note-text strong { color: var(--teal-lt); }

/* ── BLOKK FEJLÉC ── */
.price-block-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-block-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--teal-dk);
  margin-top: 2px;
}

.price-block-icon svg { width: 100%; height: 100%; }

.price-block-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.price-block-note {
  font-size: 0.78rem;
  color: var(--mid);
  font-style: italic;
  width: 100%;
  padding-left: 52px;
  margin-top: -0.4rem;
}

/* ── TÁBLÁZAT ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.price-table thead th {
  text-align: left;
  padding: 0.5rem 0.8rem;
  background: var(--off-white);
  color: var(--mid);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--border);
}

.price-table thead th:last-child { text-align: right; }

.price-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--off-white); }

.price-table td {
  padding: 0.7rem 0.8rem;
  color: var(--dark);
  vertical-align: middle;
}

/* Ár oszlop — jobbra igazítva, kiemelve */
.price-val {
  text-align: right !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem !important;
  color: var(--teal-dk) !important;
  white-space: nowrap;
}

.price-green {
  color: #2e7d2e !important;
}

/* Felár táblázat — kisebb betűk */
.price-table-extra td { font-size: 0.82rem; }
.price-table-extra .price-val { font-size: 0.9rem !important; }

/* ── TARTALMAZZA LISTA ── */
.price-includes {
  background: var(--off-white);
  border-radius: calc(var(--radius) - 2px);
  padding: 1rem 1.2rem;
}

.price-includes-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 0.6rem;
}

.price-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.price-includes li {
  font-size: 0.83rem;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.price-includes li::before {
  content: '✓';
  color: var(--teal-dk);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FELÁRAK CÍM ── */
.price-extra-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 0.4rem;
}

/* ── KÉT OSZLOP A SZÉLES BLOKKBAN ── */
.price-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.price-note-text {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
}

.price-note-text strong { color: var(--dark); }

.price-footnote {
  font-size: 0.75rem;
  color: var(--mid);
  font-style: italic;
}

.price-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal-dk);
  color: white;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 0.5rem;
  align-self: flex-start;
}

.price-cta:hover { background: var(--teal); }

/* ── RESZPONZÍV ── */
@media (max-width: 900px) {
  .price-tables { grid-template-columns: 1fr; }
  .price-block-wide,
  .price-block-callout { grid-column: 1; }
  .price-row-two { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 600px) {
  .price-table { font-size: 0.82rem; }
  .price-val { font-size: 0.9rem !important; }
}
