/* ── ÁR & MEGRENDELÉS SZEKCIÓ ─────────────────── */

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

.order-card {
  width: 100%;
  max-width: 560px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Vörös felső díszcsík */
.order-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

/* ── FEJLÉC ────────────────────────────────────── */
.order-card__eyebrow {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  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(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.order-card__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  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: rgba(255,255,255,0.65);
  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(--red);
  flex-shrink: 0;
}

/* ── ELVÁLASZTÓ ────────────────────────────────── */
.order-card__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  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.22s ease;
  white-space: nowrap;
}

/* Elsődleges – piros kitöltés */
.btn-order--primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 4px 18px rgba(200,16,46,0.35);
}

.btn-order--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.5);
}

/* Másodlagos – átlátszó, fehér keret */
.btn-order--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}

.btn-order--secondary:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

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

/* ── 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;
  }
}
