/* ============================================================
   Bemutató-sáv a mintaoldalakhoz
   ------------------------------------------------------------
   Két dolgot old meg egyszerre:
   1. Jelzi, hogy kitalált vállalkozásról van szó — a mintákon
      szerepelnek árak, címek és értékelések, amiket egy odatévedő
      látogató valódinak nézhetne.
   2. Visszautat ad a lukacsweb.hu-ra. Enélkül minden minta
      zsákutca volt: új fülön nyílt, és nem vezetett sehova.
   ============================================================ */

.minta-sav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.9rem;

    padding: 0.6rem 1rem;
    background: #16150f;
    color: #e8e5dc;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;

    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.22);
}

.minta-sav:hover { background: #1f1d15; }

.minta-sav:focus-visible {
    outline: 2px solid #9bd18f;
    outline-offset: -4px;
}

.minta-sav-cimke {
    flex-shrink: 0;
    padding: 0.14em 0.5em;
    border-radius: 3px;
    background: #9bd18f;
    color: #16150f;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.minta-sav-szoveg { opacity: 0.88; }

.minta-sav-cta {
    flex-shrink: 0;
    color: #9bd18f;
    font-weight: 600;
    white-space: nowrap;
}

/* Ne takarja el a minta saját lábrészét. */
body { padding-bottom: 3.4rem; }

@media (max-width: 620px) {
    .minta-sav { font-size: 0.72rem; padding: 0.55rem 0.8rem; }
    .minta-sav-szoveg { display: none; }
    body { padding-bottom: 3rem; }
}

@media print {
    .minta-sav { display: none; }
    body { padding-bottom: 0; }
}
