/* ── ÁR & MEGRENDELÉS SZEKCIÓ ─────────────────────
   VILÁGOS („windowsos") stílus – kizárólag az index.html-en fut. */

.order-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 20px 40px;
}

.order-card {
  width: 100%;
  max-width: 560px;
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

/* ── FEJLÉC ────────────────────────────────────── */
.order-card__eyebrow {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.order-card__title {
  font-family: var(--font-title);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.order-card__sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 440px;
  margin: 0 auto 22px;
}

/* ── JELLEMZŐK LISTA ───────────────────────────── */
.order-card__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 26px;
  list-style: none;
}

.order-card__features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.order-card__features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── ELVÁLASZTÓ ────────────────────────────────── */
.order-card__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

/* ── GOMBOK ────────────────────────────────────── */
.order-card__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

/* Elsődleges – kék kitöltés */
.btn-order--primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,103,192,0.25);
}

.btn-order--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,103,192,0.32);
}

/* Másodlagos – körvonalas gomb, sötét szöveg */
.btn-order--secondary {
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--border-strong);
}

.btn-order--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.btn-order__ico {
  font-size: 17px;
  line-height: 1;
}

/* E-mail gomb – ne csupa nagybetű, hogy a cím olvasható legyen */
.btn-order--mail {
  text-transform: none;
  letter-spacing: 0.3px;
}

/* ── KATTINTÁS-VISSZAJELZÉS (zöld felvillanó keret) ──────────────
   Amikor a látogató rákattint egy gombra, MIELŐTT megtörténne az
   oldalváltás, egy rövid zöld gyűrű villan fel körülötte – jelezve,
   hogy a kattintás megtörtént ("igen, folyamatban"). Az animációt a
   js/click-feedback.js kapcsolja be (.is-clicked osztály), ami egy
   röpke késleltetéssel navigál csak tovább, hogy legyen ideje lefutni.
   Ugyanez az elv (azonnali, egyértelmű visszajelzés) tér majd vissza
   a szoftverekben is – itt a weboldalon egy egyszerű, egyszeri villanás. */
.btn-order {
  position: relative;
}

.btn-order::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 11px;
  border: 2px solid #1DB954;
  opacity: 0;
  pointer-events: none;
}

.btn-order.is-clicked::after {
  animation: btn-click-flash 0.5s ease-out;
}

@keyframes btn-click-flash {
  0%   { opacity: 0.95; transform: scale(0.94); }
  60%  { opacity: 0.7; }
  100% { opacity: 0; transform: scale(1.16); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-order.is-clicked::after {
    animation: none;
    opacity: 0.85;
  }
}

/* ── RESZPONZÍV ────────────────────────────────── */
@media (max-width: 480px) {
  .order-card {
    padding: 24px 20px 22px;
  }

  .order-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-order {
    justify-content: center;
    padding: 14px 20px;
  }

  .order-card__features li {
    white-space: normal;
    text-align: left;
  }
}
