        :root{
            --neon-red: #FF0033;    /* Intenzív neon piros */
        }

        body { 
            font-family: Arial, sans-serif;
            background-color: #f4f4f4; 
            display: flex; 
            flex-direction: column;
            justify-content: center; 
            align-items: center; 
            min-height: 100vh; 
            margin: 0; 
            box-sizing: border-box;
            background-image: url(../img/urlapHatter.png); 
            background-size: cover; 
            background-position: center center; 
            background-repeat: no-repeat; 
            background-attachment: fixed; 
            background-color: #333;
            padding-top: 70px;
        }

	    .warning-banner {
            background: rgba(0, 0, 0, 0.6); /* Sötét háttér, hogy olvasható legyen a képen */
            border: 2px solid var(--neon-red);
            padding: 20px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            
            /* Neon izzás a doboz körül */
            box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
            
            /* Vészjósló pulzálás */
            animation: warning-pulse 2s infinite;
            z-index: 10;
        }

        .warning-banner p {
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
            font-size: 1.2rem;
            margin: 0;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .warning-banner strong {
            color: var(--neon-red);
            text-shadow: 0 0 10px var(--neon-red);
            display: inline-block;
            margin-right: 10px;
        }

        /* Figyelmeztető ikon szimulálása */
        .warning-banner::before {
            content: "";
            margin-right: 15px;
            font-size: 1.4rem;
        }

        /* Pulzáló animáció kódja */
        @keyframes warning-pulse {
            0% {
                box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
                border-color: rgba(255, 0, 51, 0.6);
            }
            50% {
                box-shadow: 0 0 30px rgba(255, 0, 51, 0.6);
                border-color: rgba(255, 0, 51, 1);
                transform: scale(1.01);
            }
            100% {
                box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
                border-color: rgba(255, 0, 51, 0.6);
            }
        }

        /* --- ÚJ: Forgó Színes Keretes Akciós Doboz --- */
        .promo-banner {
            position: relative; /* Kell a pseudo-elementek pozicionálásához */
            margin: 20px auto;
            max-width: 700px;
            border-radius: 12px;
            overflow: hidden; /* Elrejti a mögötte forgó téglalap sarkait */
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;            
            /* A DOBOZ BELSEJE: Enyhén sötétített, átlátszó háttér, hogy látszódjon a háttérkép, de a szöveg olvasható legyen */
            background: rgba(0, 0, 0, 0.6);          
            color: white;
            padding: 18px 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4); /* Mélységet ad a doboznak */
            z-index: 1; /* A belső tartalom a keret felett maradjon */
        }

        /* A FORGÓ SZÍNES GRADIENS (a keret alapja) */
        .promo-banner::before {
            content: '';
            position: absolute;
            z-index: -2; /* Minden mögé */
            left: -50%; /* Sokkal nagyobb legyen a téglalap, mint a doboz */
            top: -50%;
            width: 200%; /* Hogy forgás közben se legyen üres rész */
            height: 200%;
            background-color: transparent; /* Alapból átlátszó */          
            /* ANIMÁCIÓ: Forgasd körbe-körbe */
            animation: rotate-border 4s linear infinite;
        }

        /* --- KÜLÖNLEGES ÜNNEPI SZÍNEK --- */

        /* Alap akció szín */
        .promo-origin::before {
            background-image: conic-gradient(#ff9800, #f44336, #ff9800);
        }

        /* Black Friday (Arany) */
        .promo-black-friday::before {
            background-image: conic-gradient(#b8860b, #ffd700, #ff8c00, #ffd700, #b8860b);
        }

        /* Karácsony (Piros-Zöld) */
        .promo-christmas::before {
            background-image: conic-gradient(#cc0000, #ffffff, #006600, #ffffff, #cc0000);
        }

        /* Húsvét - Pasztell tavaszi színek */
        .promo-easter::before {
            background-image: conic-gradient(#fffacd, #98fb98, #87cefa, #98fb98, #fffacd);
        }

        /* A BELSŐ TAKARÁS (hogy csak a széle látszódjon) */
        .promo-banner::after {
            content: '';
            position: absolute;
            z-index: -1; /* A szöveg mögött, de a forgó keret előtt */
            left: 4px; /* A keret vastagsága (növelheted 6px-re, ha vastagabbat akarsz) */
            top: 4px;
            width: calc(100% - 8px); /* 100% - (2 * bal oldali rés) */
            height: calc(100% - 8px);            
            /* Ugyanaz az átlátszó sötét háttér, mint a doboznak */
            background: rgba(0, 0, 0, 0.7); 
            border-radius: 10px; /* Egy picivel kisebb sugár, mint a külső dobozé */
        }

        /* A szöveg stílusa marad */
        .promo-icon {
            font-size: 1.8rem;
            position: relative; /* Biztosítja, hogy felül legyen */
            z-index: 2;
        }

        .promo-text {
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative; /* Biztosítja, hogy felül legyen */
            z-index: 2;
        }

        /* ANIMÁCIÓ DEFINÍCIÓ: A forgás */
        @keyframes rotate-border {
            100% {
                transform: rotate(1turn); /* Egy teljes fordulat (360 fok) */
            }
        }

        /* Mobilos igazítás */
        @media (max-width: 600px) {
            .promo-banner {
                flex-direction: column;
                margin: 15px;
                padding: 12px;
            }
        }

        /* --- FEJLÉC ÉS RESZPONZÍV MENÜ --- */

        .main-header {
            background-color: rgba(0, 51, 102, 0.9); /* Sötétkék, áttetsző */
            color: white;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed; 
            top: 0;
            left: 0;
            width: 100%;
            box-sizing: border-box;
            z-index: 1000;
        }

        .logo {
            font-size: 1.5em;
            font-weight: bold;
             color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo:hover {
            color: #f0f0f0; /* Kicsit világosabb fehér */
        }

        .main-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex; 
        }

        .main-menu li a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            transition: background-color 0.3s;
        }

        .main-menu li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .menu-toggle {
            display: none; 
            background: none;
            border: none;
            color: white;
            font-size: 2em;
            cursor: pointer;             
        }        

        .menu-toggle:hover{
            background-color: rgba(0, 51, 102, 0.9);
        }

        .main-header .menu-toggle {
            margin-right: 0 !important;
        }

        /*---- FŐ TARTALOM ÉS ŰRLAP KONTÉNER ----*/

        /* A választógombok Stílusa */
        .mode-switch-group {display: flex; gap: 10px; margin-bottom: 15px;}
        .mode-switch-group button {padding: 8px 15px; border: 2px solid #007bff; border-radius: 5px; cursor: pointer; background-color: #f8f8f8; transition: background-color 0.2s, border-color 0.2s, color 0.2s;
            font-weight: bold; text-align: center; flex-grow: 1; color: #007bff; font-size: 1em;}
        .mode-switch-group button:hover{background-color: #007bff; color: white;}
        /* A kiválasztott / aktív gomb stílusa */
        .mode-switch-group button.active {background-color: #007bff; color: white; border-color: #0056b3;}            
        /* Garantáljuk, hogy a manuális mezők alapból rejtettek, mielőtt a JS futna*/
        #manualFields {display: none;}    
                      
        /* --- Tooltip Stílusok --- */
        .info-tooltip {position: relative; display: inline-block; cursor: pointer; color: #007bff; font-weight: bold; margin-left: 5px;}
        .tooltip-text {visibility: hidden; width: 250px; background-color: #555; color: #fff; text-align: center; border-radius: 6px;
            padding: 8px; position: absolute; z-index: 1; bottom: 125%; left: 50%; margin-left: -125px; opacity: 0; transition: opacity 0.3s;
            font-size: 14px;}
        /* Nyíl a tooltip alatt*/
        .tooltip-text::after {content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid;
            border-color: #555 transparent transparent transparent;}
        /* Tooltip megjelenítése egér fölé vitelekor */
        .info-tooltip:hover .tooltip-text {visibility: visible; opacity: 1;}
        /* Ezt az osztályt adja hozzá a JS a megjelenítéshez */
        .info-tooltip.active .tooltip-text {visibility: visible; opacity: 1;}

        @media (max-width: 768px) {
            .tooltip .tooltiptext {
                left: auto !important;
                right: 0 !important; /* A jobb szélhez igazítja, így nem lóg ki */
                transform: none !important;
                width: 180px !important; /* Kicsit keskenyebb legyen */
                white-space: normal !important; /* Törje a sorokat */
            }
        }

        @media (max-width: 600px) {
            .tooltip .tooltiptext {
                width: 160px;     /* Kisebb szélesség mobilon */
                left: auto;       /* Ne középen legyen */
                right: -10px;     /* Kicsit lógjon túl a gombon balra, de maradjon a képernyőn belül */
                font-size: 12px;  /* Olvashatóbb marad, ha kicsit kisebb a betű */
            }
        }

        .form-container { 
            background-color: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 8px; 
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
            width: 100%; 
            max-width: 450px; 
        }

        h2 { text-align: center;
             color: #333; 
             margin-bottom: 25px; 
        }

        fieldset .form-group {
            padding: 0; 
        }

        .form-group { 
            margin-bottom: 20px; 
            padding: 0 10px; /* Ez beljebb viszi a név, email, telefon stb. mezőket */
            box-sizing: border-box; 
        }

        .form-group label { 
            display: block; 
            margin-bottom: 5px; 
            font-weight: bold; 
            color: #555; 
        }
        .form-group input:not([type="checkbox"]) { 
            width: 100%; 
            padding: 10px; 
            border: 1px solid #ccc; 
            border-radius: 4px; 
            box-sizing: border-box; 
        }

        button { 
            width: 100%; 
            padding: 12px; 
            background-color: #4CAF50; 
            color: white; 
            border: none; 
            border-radius: 4px; 
            font-size: 16px; 
            cursor: pointer; 
            transition: background-color 0.3s ease; 
            margin-top: 10px; 
        }
        
        button:hover { 
           background-color: #45a049;           
        }
        
        .checkbox-group { 
            display: flex; 
            align-items: flex-start; 
            margin-bottom: 20px; 
            font-size: 14px; 
        }

        .checkbox-group input[type="checkbox"] { 
            margin-right: 8px; 
            margin-top: 4px; 
            min-width: 16px; 
            min-height: 16px; 
        }

        .price-box { 
            text-align: center; 
            border: 1px dashed #4CAF50; 
            padding: 15px; 
            border-radius: 4px; 
            margin-top: 15px; 
        }

        #location_status { 
            font-weight: bold; 
        }

        #getLocationButton {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            border-radius: 6px;
            font-weight: bold;
        }

        /* 1. Legördülő lista (SELECT) stílusa: Hasonlóan az INPUT mezőkhöz */
        .form-container select {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            margin-bottom: 5px; /* A form-group már adhat alsó margót, de biztonság kedvéért */
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box; /* Fontos, hogy a padding ne növelje a mező szélességét 100% fölé */
            background-color: white;
            font-size: 16px;
            height: 40px; /* Az input mezők magasságához igazítva */
            appearance: none; /* A böngésző alapvető nyíl ikonjának eltávolítása */
            -webkit-appearance: none;
            -moz-appearance: none;
            /* Háttérképként egy egyéni nyíl hozzáadása, hogy jelezze, hogy lenyíló lista */
            background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2210%22%20viewBox%3D%220%200%2014%2010%22%3E%3Cpath%20fill%3D%22%23555%22%20d%3D%22M7%2010L0%200h14z%22%2F%3E%3C%2Fsvg%3E');
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 10px 10px;
        }

        /* 2. Radio/Checkbox konténerek és elemek egységesítése */
        .form-group.checkbox-group > label {
            font-weight: bold !important; /* A felirat kiemelése */
        }

        .form-group.checkbox-group div {
            display: flex;
            gap: 15px;
            align-items: center; /* Vízszintes igazítás */
        }

        .form-container input[type="radio"],
        .form-container input[type="checkbox"] {
            /* Az alapértelmezett böngésző stílus megtartása, de az igazítás fixálása */
            /* Vagy egyéni stílus: */
            width: 18px; 
            height: 18px; 
            margin-right: 5px;
            margin-top: 0;
            vertical-align: middle;
        }

        .form-container input[type="radio"] + label,
        .form-container input[type="checkbox"] + label {
            display: inline;
            font-weight: normal; /* A check/radio melletti felirat ne legyen vastag */
            margin-top: 0;
        }

        button[type="submit"] {
            background-color: #28a745; /* Sötétebb zöld */
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 15px; /* Kicsit vaskosabb, hangsúlyosabb */
            border-radius: 6px;
            margin-top: 20px; /* Több hely a felette lévő mezőtől */
        }

        button[type="submit"]:hover {
            background-color: #218838;
        }

        /* --- 6. LÁBLÉC STÍLUSOK (FRISSÍTVE) --- */
        .main-footer {
            background-color: #333; 
            color: white;
            padding: 60px 20px 0 20px;
            border-top: 1px solid #1a1a1a;
            width: 100%;
            box-sizing: border-box;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin: 0 auto 50px auto;
            max-width: 1200px;
        }

        .footer-about {
            text-align: center;
        }

        .footer-about p {
            color: #ccc;
            line-height: 1.6;
        }

        .footer-about img{
            text-align: center;
        }

        .footer-contact h3, 
        .footer-links h3,
        .footer-about h3 {
            color: #8cffff;
            font-size: 1.2rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-contact ul, 
        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-contact ul li {
            margin-bottom: 15px;
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-contact a, 
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-contact a:hover, 
        .footer-links a:hover {
            color: #8cffff;
            padding-left: 5px; /* Kis mozgás effekt */
        }

        .footer-bottom {
            border-top: 1px solid #1a1a1a;
            padding: 25px 0;
            text-align: center;
            font-size: 0.85rem;
            color: #fff;
        }

        /* Mobilos igazítás */
        @media (max-width: 768px) {
            .footer-grid {
                text-align: center;
            }
            .footer-contact ul li {
                justify-content: center;
            }
        }
        
        /* --- TABLET ÁLLÓ MÓD JAVÍTÁS (768px - 1024px) --- */
        @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
            body {
                /* Letiltjuk a fixálást tableten, hogy megszűnjön a zoom hiba */
                background-attachment: scroll !important; 
                background-size: cover !important;
                background-position: center center !important;
            }

            .form-container {
                max-width: 80%; /* Tableten kicsit szélesebb lehet az űrlap, mint mobilon */
                margin: 40px auto;
            }
        }

        /* Speciális javítás álló tájoláshoz (Portrait) */
        @media (orientation: portrait) {
            body {
                background-size: cover;
                /* Ha a kép elcsúszna, itt finomíthatod: */
                background-position: center center;
            }
        }

         /* --- 5. RESZPONZÍV LOGIKA (MOBIL NÉZET) --- */
        @media (max-width: 768px) {
            
            .menu-toggle {
                display: block; /* Hamburger gomb megjelenítése */
                background: transparent !important;
            }

            .main-header {
                padding: 0 15px; /* Itt állítod be, mennyire legyen a szélétől (15px az ideális) */
            }

            .main-menu {
                display: none; /* Alapértelmezetten elrejtjük a menüpontokat */
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 90px; 
                left: 0;
                background-color: rgba(0, 51, 102, 0.98); 
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            }
            
            /* Menü lenyitása JS-el */
            .main-menu.is-open {
                display: flex; 
            }

            .main-menu ul {
                flex-direction: column;
                width: 100%;
            }

            .main-menu li a {
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        /* Mobil optimalizáció */
        @media (max-width: 600px) {        
        .form-container {
            margin: 15px;
            padding: 20px;
            }
        }

        @media (max-width: 480px) {
        .form-group div[style*="display: flex"] {
            flex-direction: column !important;
            gap: 5px !important;
        }
    
        #sendCodeButton, #verification_code {
            width: 100% !important;
        }
        }