/* =========================================================
   GUMIFUTÁR – önálló CSS
   Nem függ gls.css-től
========================================================= */

/* ---------- alap ---------- */
body {
  background: #f4f7fb;
}

main.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

/* ---------- HERO ---------- */
.service-grid-section .hero {
  background: linear-gradient(180deg, #ffffff, #f2f6fb);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.service-grid-section .hero h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.service-grid-section .hero p {
  color: #475569;
  max-width: 720px;
}

/* ---------- SZEKCIÓ ---------- */
.service-section {
  background: transparent;
}

.service-section h2 {
  margin: 12px 0 6px;
}

.service-section > p {
  color: #64748b;
}

/* ---------- FORM KÁRTYA ---------- */
.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin-top: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}

/* ---------- GRID ---------- */
.row {
  display: flex;
  flex-wrap: wrap;
}

.row-tight {
  margin-left: -8px;
  margin-right: -8px;
}

.row-tight > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.col-12 { width: 100%; }
.col-md-6 { width: 50%; }

@media (max-width: 768px) {
  .col-md-6 { width: 100%; }
}

/* ---------- INPUTOK ---------- */
.input-line,
.of-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 15px;
}

.input-line:focus,
.of-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

label {
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

/* ---------- RADIO ---------- */
.radio {
  margin-right: 6px;
}

input[type="radio"] {
  transform: scale(1.1);
}

/* ---------- GOMB ---------- */
.btn,
.btn-primary,
.gl-submit,
.of-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn-primary:hover,
.of-btn:hover {
  background: #1e40af;
}

/* ---------- FIGYELMEZTETÉS ---------- */
.pc-alert {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.pc-alert--warn {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}

/* ---------- ORDER FORM ---------- */
.order-form .of-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}

.of-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.of-col-12 { width: 100%; }
.of-col-8 { width: 66.666%; }
.of-col-6 { width: 50%; }
.of-col-4 { width: 33.333%; }

@media (max-width: 768px) {
  .of-col-8,
  .of-col-6,
  .of-col-4 {
    width: 100%;
  }
}

/* ---------- HERO ORDER ---------- */
.of-grid--hero {
  align-items: center;
  margin-bottom: 12px;
}

.order-title {
  font-size: 26px;
}

.order-price {
  font-size: 22px;
  font-weight: 700;
  color: #16a34a;
}

/* ---------- HR ---------- */
.hr {
  border: none;
  height: 1px;
  background: #e5e7eb;
  margin: 28px 0;
}
/* =========================================================
   FOOTER – stabil, nem szétesős
   (óvatos, hogy más oldalakat se törjön)
========================================================= */

footer {
  background: #0b1b33;
  color: rgba(255,255,255,0.88);
  margin-top: 60px;
}

footer a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* sok sablonban container van a footerben */
footer .container,
footer .footer-container,
footer .footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 16px;
}

/* tipikus footer grid / oszlopos elrendezések */
footer .row,
footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

footer [class*="col-"],
footer .footer-col {
  min-width: 220px;
  flex: 1 1 220px;
}

/* címek */
footer h2,
footer h3,
footer h4 {
  color: #ffffff;
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .2px;
}

/* listák */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin: 8px 0;
  line-height: 1.35;
}

footer .muted,
footer small {
  color: rgba(255,255,255,0.70);
}

/* alul a copyright / bar */
footer .footer-bottom,
footer .copyright,
footer .subfooter {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

footer .footer-bottom .container,
footer .copyright .container,
footer .subfooter .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* ikonok/mini badge-ek ha vannak */
footer img {
  max-width: 100%;
  height: auto;
}

/* mobil: szétesés ellen */
@media (max-width: 768px) {
  footer .row,
  footer .footer-row {
    flex-direction: column;
  }

  footer [class*="col-"],
  footer .footer-col {
    min-width: 0;
    width: 100%;
  }

  footer .container,
  footer .footer-container,
  footer .footer-wrap {
    padding: 28px 16px;
  }
}
/* FOOTER: törjön új sorba, ne ragadjon oszlopba */
.app-footer{
  display:block;
  width:100%;
  max-width:none;
  clear:both;
  flex:0 0 100%;
}

/* belső középre igazítás */
.app-footer__inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:24px 16px;
}

/* grid normálisan törjön */
.app-footer__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}

@media (max-width: 900px){
  .app-footer__grid{ grid-template-columns: 1fr; }
}



/* =========================================================
   GLS-GUMI – finomhangolás (GLS alap + kis eltérés)
   Csak a gumis oldalra hasson
========================================================= */

body.page-gls-gumi{
  background: linear-gradient(180deg,#f6f8fb 0%, #f2f4f8 100%);
}

body.page-gls-gumi main,
body.page-gls-gumi .page-content,
body.page-gls-gumi .container-main{
  background:#fff;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(16,24,40,.08);
  padding:28px 24px;
  margin:32px auto;
  max-width:1200px;
}

/* címek ritmusa */
body.page-gls-gumi h1{
  letter-spacing:-.02em;
}

/* trust + footer levegő */
body.page-gls-gumi .trust-bar{ margin-top:40px; }
body.page-gls-gumi .app-footer{ margin-top:48px; }
.container-main{ max-width:1200px; margin:32px auto; padding:0 16px; }
    .offer-grid{ display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; }
    @media (max-width: 900px){ .offer-grid{ grid-template-columns:1fr; } }

    .price-box{
      border:1px solid #eef2f6;
      border-radius:14px;
      padding:14px 16px;
      margin:8px 0 14px;
      background:#fafbff;
    }
    .price-big{ font-size:28px; font-weight:800; letter-spacing:-.02em; }
    .price-note{ color:#475467; margin-top:4px; }

    .cta-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
    a.gls-submit{ text-decoration:none; padding:10px 14px; border-radius:12px; display:inline-flex; align-items:center; justify-content:center; }
    a.gls-submit.primary{ background:linear-gradient(180deg,#1f6fff,#155eea); color:#fff; font-weight:700; }
    a.gls-submit.ghost{ background:#eef2ff; color:#1d4ed8; font-weight:700; }

    .sum-row{ display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-top:1px solid #eef2f6; }
    .sum-row:first-child{ border-top:0; }
    .sum-row span{ color:#667085; }
    .sum-row b{ color:#101828; font-weight:700; text-align:right; }
    
    .container-main{ max-width:1200px; margin:32px auto; padding:0 16px; }
      .offer-grid{ display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; }
      @media (max-width: 900px){ .offer-grid{ grid-template-columns:1fr; } }
      
      .gls-hero--offer{
        display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
        padding:18px 18px; border-radius:16px;
        background: linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
        border:1px solid #eef2f6;
        margin-bottom:16px;
      }
      .gls-hero--offer h1{ margin:8px 0 6px 0; letter-spacing:-.02em; }
      .gls-hero__left .sub{ color:#475467; }
      
      .gls-badge{
        display:inline-flex; align-items:center; gap:8px;
        font-size:12px; font-weight:700;
        padding:6px 10px; border-radius:999px;
        background:#eef2ff; color:#1d4ed8;
      }
      
      .offer-card .body{ padding-top:6px; }
      
      .price-box{
        border-radius:16px;
        padding:16px;
        border:1px solid #e6ebf2;
        background: radial-gradient(1200px 200px at 0% 0%, #eef6ff 0%, #ffffff 60%);
      }
      .price-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
      .price-amount{ font-size:34px; font-weight:900; letter-spacing:-.02em; }
      .price-chip{
        font-size:12px; font-weight:800;
        padding:6px 10px; border-radius:999px;
        background:#eaf2ff; color:#155eea;
        border:1px solid #dbe7ff;
      }
      .price-note{ margin-top:6px; color:#475467; font-weight:600; }
      
      .cta-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
      a.gls-submit{ text-decoration:none; padding:10px 14px; border-radius:12px; display:inline-flex; align-items:center; justify-content:center; }
      a.gls-submit.primary{ background:linear-gradient(180deg,#1f6fff,#155eea); color:#fff; font-weight:800; }
      a.gls-submit.ghost{ background:#eef2ff; color:#1d4ed8; font-weight:800; }
      
      .micro{ margin-top:12px; font-size:13px; color:#667085; display:flex; align-items:center; gap:8px; }
      .micro .dot{ width:8px; height:8px; border-radius:99px; background:#1f6fff; display:inline-block; }
      .micro-link{ color:#155eea; font-weight:700; text-decoration:none; }
      .micro-link:hover{ text-decoration:underline; }
      
      .sum-card .body{ padding-top:6px; }
      .sum-row{ display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-top:1px solid #eef2f6; }
      .sum-row:first-child{ border-top:0; }
      .sum-row span{ color:#667085; }
      .sum-row b{ color:#101828; font-weight:800; text-align:right; }
      
      .sum-hint{
        margin-top:12px;
        display:flex; gap:10px; align-items:flex-start;
        padding:10px 12px; border-radius:12px;
        background:#f8fafc; border:1px solid #e4e7ec;
        color:#475467; font-size:13px;
      }
      .sum-hint__ico{ line-height:1.2; }
      
      /* =========================================================
         GUMI KALK – GLS-flow kinézet (csak ezen az oldalon)
         body class: page-gls-gumi
      ========================================================= */
      
      body.page-gls-gumi{
        background: linear-gradient(180deg,#f6f8fb 0%, #f2f4f8 100%);
      }
      
      /* fő konténer: legyen olyan, mint az ár oldalon */
      body.page-gls-gumi .container-main{
        max-width:1200px;
        margin:32px auto;
        padding:0 16px;
      }
      
      /* HERO blokk finoman */
      body.page-gls-gumi .gls-hero{
        display:flex;
        justify-content:space-between;
        align-items:flex-start;
        gap:14px;
        padding:18px 18px;
        border-radius:16px;
        background: linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
        border:1px solid #eef2f6;
        margin-bottom:16px;
      }
      body.page-gls-gumi .gls-hero h1{
        margin:0 0 6px 0;
        letter-spacing:-.02em;
      }
      body.page-gls-gumi .gls-hero .sub{
        color:#475467;
      }
      body.page-gls-gumi .gls-hero .pill{
        padding:8px 12px;
        border-radius:999px;
        background:#eef2ff;
        color:#1d4ed8;
        font-weight:700;
        border:1px solid #dbe7ff;
        white-space:nowrap;
      }
      
      /* KÁRTYA (a form köré) */
      body.page-gls-gumi .gls-card{
        background:#fff;
        border-radius:14px;
        box-shadow:0 12px 30px rgba(16,24,40,.08);
        border:1px solid #eef2f6;
        overflow:hidden;
      }
      body.page-gls-gumi .gls-card .head{
        padding:14px 16px;
        border-bottom:1px solid #eef2f6;
        display:flex;
        justify-content:space-between;
        align-items:flex-end;
        gap:12px;
      }
      body.page-gls-gumi .gls-card .head h2{
        margin:0;
        font-size:16px;
      }
      body.page-gls-gumi .gls-card .head .muted{
        color:#667085;
        font-size:13px;
      }
      body.page-gls-gumi .gls-card .body{
        padding:16px;
      }
      
      /* 2 oszlop grid a kalk oldalon */
      body.page-gls-gumi .calc-grid{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap:16px;
      }
      @media (max-width: 900px){
        body.page-gls-gumi .calc-grid{ grid-template-columns:1fr; }
      }
      
      /* Inputok – kevésbé “bootstrap-steril” */
      body.page-gls-gumi label{
        font-weight:700;
        color:#344054;
      }
      body.page-gls-gumi .form-control,
      body.page-gls-gumi select,
      body.page-gls-gumi input[type="text"],
      body.page-gls-gumi input[type="number"]{
        border-radius:12px;
        border:1px solid #d0d5dd;
        padding:10px 12px;
        height:auto;
        box-shadow:none;
      }
      body.page-gls-gumi .form-control:focus,
      body.page-gls-gumi select:focus,
      body.page-gls-gumi input:focus{
        border-color:#84c5ff;
        outline:0;
      }
      
      /* CTA gomb egységes az ár oldallal */
      body.page-gls-gumi .gls-submit,
      body.page-gls-gumi button.gls-submit{
        appearance:none;
        border:0;
        border-radius:12px;
        padding:10px 14px;
        font-weight:800;
        cursor:pointer;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
      }
      body.page-gls-gumi .gls-submit.primary{
        background: linear-gradient(180deg,#1f6fff,#155eea);
        color:#fff;
      }
      body.page-gls-gumi .gls-submit.ghost{
        background:#eef2ff;
        color:#1d4ed8;
      }
      
      /* RADIO: “kifizeti a szállítást” legyen kártyás */
      body.page-gls-gumi .radio-card{
        border:1px solid #e4e7ec;
        border-radius:12px;
        padding:10px 12px;
        background:#f8fafc;
      }
      body.page-gls-gumi .radio-card .form-check{
        margin:8px 0;
      }
      body.page-gls-gumi .radio-card .form-check-label{
        font-weight:700;
        color:#344054;
      }
      body.page-gls-gumi .radio-card .hint{
        margin-top:6px;
        color:#667085;
        font-size:13px;
      }
      
      /* ✅ UVV blokk kiemelése (mint gls-csomagnál) */
      body.page-gls-gumi .uvv-panel{
        margin-top:10px;
        border-radius:14px;
        border:1px solid #dbe7ff;
        background: radial-gradient(900px 180px at 0% 0%, #eef6ff 0%, #ffffff 62%);
        padding:12px;
      }
      body.page-gls-gumi .uvv-panel .uvv-title{
        display:flex;
        align-items:center;
        gap:8px;
        font-weight:900;
        color:#1d4ed8;
        margin-bottom:6px;
      }
      body.page-gls-gumi .uvv-panel .uvv-sub{
        color:#475467;
        font-size:13px;
        margin-bottom:8px;
      }
      body.page-gls-gumi .uvv-panel .form-check{
        margin:8px 0;
      }
      body.page-gls-gumi .uvv-panel .form-check-label{
        font-weight:800;
        color:#101828;
      }
      /* =========================================================
         GLS – másolható banki adatok blokk
      ========================================================= */
      .gls-note{
        margin-top:14px;
        padding:14px 16px;
        border-radius:12px;
        border:1px solid #e4e7ec;
        background:#f8fafc;
      }
      
      .gls-note--copy{
        background: linear-gradient(180deg,#f9fbff 0%, #ffffff 100%);
        border-color:#dbe7ff;
      }
      
      .gls-note__title{
        font-weight:900;
        color:#1d4ed8;
        margin-bottom:10px;
      }
      
      .gls-note__row{
        display:flex;
        justify-content:space-between;
        align-items:center;
        gap:12px;
        padding:8px 0;
        border-top:1px dashed #e4e7ec;
      }
      .gls-note__row:first-of-type{
        border-top:0;
      }
      
      .gls-note__row span{
        color:#475467;
        font-weight:600;
      }
      
      .gls-note__row code{
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
        font-size:14px;
        padding:4px 8px;
        border-radius:8px;
        background:#eef2ff;
        color:#1d4ed8;
        user-select: all;          /* 👈 egy kattintás = másolható */
      }
      
      .gls-note__hint{
        margin-top:10px;
        font-size:13px;
        color:#667085;
      }
      