@charset "UTF-8";

/* --- ALAP BEÁLLÍTÁSOK (RESET) --- */
:root {
    --primary-blue: #2E3192;
    --primary-orange: #F37920;
    --dark-grey: #333333;
    --light-grey: #f4f6f9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, var(--primary-blue), #001c72);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-grey);
    background-color: var(--light-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- HEADER & NAV --- */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem; /* Kicsit kisebb padding, hogy karcsúbb legyen */
}

/* --- LOGO ÉS SZLOGEN (ÚJ) --- */
/* Egyben tartja a logót és a szlogent */
.branding {
    display: flex;
    align-items: center;
    gap: 15px; /* Távolság a logó és a szlogen között */
}

.logo {
    display: flex;
    align-items: center;
    border-right: 2px solid #eee; /* Vékony elválasztó vonal */
    padding-right: 15px;
}

.logo img {
    height: 100px; /* Optimalizált méret */
    width: auto;
    vertical-align: middle;
}

/* Az új szlogen stílus */
.header-slogan {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-style: bold;

}

/* --- MENÜ --- */
.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
    font-size: 1rem;
}

.nav-links a:hover { color: var(--primary-orange); }

/* Modern hover effektus */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.cta-btn {
    background-color: var(--primary-orange);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244, 121, 32, 0.5); }
.cta-btn::after { display: none; }

/* Mobil menü toggle */
.menu-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--primary-blue); 
	position: relative; /* Fontos, hogy a z-index működjön */
        z-index: 1001;      /* Magasabb legyen, mint a lenyíló menü */
}

/* --- DROPDOWN MENÜ (OKOS VÁLTÁSSAL) --- */
.dropdown {
    position: relative; 
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    
    /* IGAZÍTÁS LOGIKÁJA: */
    left: 50%; /* A szülő elem (pl. "Termékek") közepétől indul */
    
    /* Két transzformációt használunk:
       1. translateX(-50%): Vízszintesen középre húzza magát (ez a "ragadás" kulcsa)
       2. translateY(20px): Függőlegesen lejjebb van (az animáció kezdőpontja)
    */
    transform: translateX(-50%) translateY(20px);
    
    /* ALAPÁLLAPOT (Kevés menüpont) */
    width: 260px;
    column-count: 1;
    display: block;
    
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 3px solid var(--primary-orange);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
}

/* OKOS BŐVÍTÉS (Ha több mint 6 elem van) */
.dropdown-menu:has(li:nth-child(7)) {
    width: 500px;        /* Szélesebb doboz */
    column-count: 2;     /* Két oszlop */
    column-gap: 20px;    /* Rés az oszlopok között */
}

/* MEGJELENÉS HOVERRE */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    
    /* FONTOS: Itt is meg kell tartani a translateX(-50%)-et! 
       Csak a függőleges (Y) értéket nullázzuk az animációhoz. */
    transform: translateX(-50%) translateY(0);
}

/* --- TÖBBI RÉSZ VÁLTOZATLAN --- */
.dropdown-menu li {
    break-inside: avoid;
    page-break-inside: avoid;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    font-size: 0.9rem;
    color: var(--dark-grey);
    border-bottom: 1px solid #f4f6f9;
    transition: 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--primary-orange);
    padding-left: 20px;
}
/* --- Dropdown menü vége --- */
/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 90vh;
    background: url("../elemek/kepek/index_homlokzat.jpg") center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(46, 49, 146, 0.85), rgba(46, 49, 146, 0.6));
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary-orange);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* --- GRID LAYOUT --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: -100px; /* Felhúzva a hero-ra */
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

/* --- KÁRTYÁK STÍLUSA --- */
.promo-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(46, 49, 146, 0.2);
}

.discount-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: #ff0000;
    color: white;
    font-weight: 900;
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    z-index: 2;
}

.promo-img-box {
    height: 200px;
    overflow: hidden;
    background: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-img-box img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-img-box img { transform: scale(1.1); }

.promo-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.promo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.price-box { margin-bottom: 1.5rem; }

.old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
    display: block;
}

.new-price {
    color: var(--primary-orange);
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.unit { font-size: 0.8rem; color: var(--dark-grey); font-weight: 400; }

.btn-order {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary-blue);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-order:hover { background: var(--primary-orange); }

/* --- HÍREK --- */
.news-section { padding: 4rem 0; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--primary-orange); margin: 10px auto;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.news-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #ccc;
}
.news-item h4 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--primary-blue); }

.archive-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.archive-list li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-orange);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* --- PARTNEREK --- */
.partners {
    background: var(--white);
    padding: 3rem 0;
    text-align: center;
}
.partners-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.6;
}
.partner-placeholder {
    font-weight: bold;
    color: #ccc;
    border: 2px solid #eee;
    padding: 1rem 2rem;
    border-radius: 8px;
}

/* --- FOOTER --- */
footer {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a:hover { color: var(--primary-orange); padding-left: 5px; }

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- ANIMÁCIÓK --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 10000;
    display: none;
    border-top: 4px solid var(--primary-orange);
}
.cookie-content {
    max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.cookie-content h3 { color: var(--primary-blue); margin-bottom: 5px; font-size: 1.1rem; width: 100%; }
.cookie-content p { flex: 1; min-width: 300px; font-size: 0.9rem; color: #333; margin: 0; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn { padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: bold; border: none; transition: 0.3s; }
.cookie-btn.btn-primary { background-color: var(--primary-orange); color: white; }
.cookie-btn.btn-primary:hover { background-color: #d96616; }
.cookie-btn.btn-secondary { background-color: #eee; color: #333; }
.cookie-btn.btn-secondary:hover { background-color: #ddd; }

/* --- MOBIL NÉZET (Responsive) --- */
@media (min-width: 992px) {
    .hero {
        background-attachment: fixed;   /* csak desktopon parallax */
    }
}
@media (max-width: 992px) {
    /* 1. Header javítás: Logo és Szöveg igazítása */
    .navbar { padding: 0.8rem 1rem; } /* Kevesebb padding mobilon */
    
    .branding {
        gap: 10px; /* Kisebb hely a logo és szöveg között */
    }

    .logo {
        padding-right: 10px;
    }

    .logo img {
        height: 50px; /* Kisebb logo mobilon, hogy elférjen a szöveg mellett */
    }

    .header-slogan {
        display: block !important; /* KÉRÉSRE: Megjelenítjük mobilon is! */
        font-size: 1rem; /* Kisebb betűméret */
        white-space: normal; /* Engedjük sortörést, ha nagyon muszáj */
        line-height: 1.2;
        max-width: 180px; /* Ne tolja ki a menü gombot */
    }

    /* 2. Egyéb mobil beállítások */
    .hero h1 { font-size: 2.5rem; }
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        align-items: flex-start;
    }
    .nav-links.active { display: flex; }
    
    /* Mobil dropdown javítás */
    .dropdown { display: block; width: 100%; }
    .dropdown > a { display: flex; justify-content: space-between; width: 100%; }
    
    .dropdown-menu {
        display: none !important; /* JS nélkül mobilon ne nyíljon meg zavaróan */
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
	.nav-links.active .dropdown-menu {
    	   display: none !important; /* Így nem nyílik le mobilon, nem foglal helyet */
	}
    
    .news-grid { grid-template-columns: 1fr; }
    .features-grid { margin-top: 0; padding: 2rem; }
    .hero-overlay { clip-path: none; }
    
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; justify-content: center; }
}
/* --- ALOLDAL SPECIFIKUS KIEGÉSZÍTÉSEK --- */

/* Szolgáltatás lista (Céginfó) */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.services-list li {
    background: #f4f6f9;
    padding: 0.5rem 1rem;
    border-left: 4px solid var(--primary-orange);
    font-weight: 500;
    list-style: none;
}

/* Kapcsolat oldal (Rács elrendezés) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Kapcsolat elemek (Ikon + Szöveg) */
.contact-item {
    display: flex;
    align-items: flex-start; /* Fent igazodjon */
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0; /* Ne nyomódjon össze az ikon */
}

/* Térkép konténer (hogy reszponzív legyen) */
.map-container {
    position: relative;
    padding-bottom: 56.29%; /* 16:9 arány */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tartalom doboz (Céginfó és Kapcsolat keretei) */
.content-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

/* Mobil nézet igazítás ezekhez */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Mobilon egymás alá kerüljön */
    }
}

/* --- TERMÉK GYŰJTŐOLDAL (Category Grid) --- */
.category-grid {
    display: grid;
    /* Automatikusan annyi oszlop, amennyi kifér (min. 220px széles) */
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.category-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-orange);
}

.category-card a {
    display: block;
    padding: 1.5rem;
    height: 100%;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-card img {
    max-width: 100%;
    height: auto;
    max-height: 60px; /* Ikon méret fixálása */
    object-fit: contain;
}

/* "ÚJ" címke stílusa */
.badge-new {
    background-color: #ff0000;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
    /*text-transform: uppercase;*/
}

/* --- TERMÉK ALOLDAL ELRENDEZÉS (Product Layout) --- */
.product-layout {
    display: grid;
    grid-template-columns: 250px 1fr; /* Bal oldal fix 250px, jobb oldal a maradék */
    gap: 2rem;
    align-items: start;
}

/* Oldalsáv (Kategóriák) */
.sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
}

.category-list li {
    border-bottom: 1px solid #eee;
}

.category-list li a {
    display: block;
    padding: 0.8rem 0;
    color: var(--dark-grey);
    font-weight: 500;
}

.category-list li a:hover {
    color: var(--primary-orange);
    padding-left: 5px; /* Kis mozgás effektus */
}

/* Almenü a tartalom felett (pl. Műanyag | Fa) */
.sub-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.sub-nav a, .sub-nav span.active {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-weight: bold;
    font-size: 0.9rem;
}

.sub-nav span.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.sub-nav a:hover {
    background: #eee;
    color: var(--primary-blue);
}

/* --- ÁRLISTA TÁBLÁZATOK --- */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-table th {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem;
    text-align: left;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.price-table tr:hover {
    background-color: #f9f9f9;
}

.product-img {
    width: 100px;
    height: 100px;
    object-fit: cover; /* Hogy a négyzetbe szépen beleigazodjon */
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: zoom-in; /* Jelzi, hogy kattintható */
    transition: transform 0.2s;
}

.product-img:hover {
    transform: scale(1.1);
}

/* Árak stílusa táblázatban */
.price-tag {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-blue); /* Kék szín visszaállítva */
    white-space: nowrap;
    display: block; /* Hogy az egységár alá kerüljön */
}

.unit-price {
    display: block; /* Új sorba töri az egységárat */
    font-size: 0.85rem;
    color: #666; /* Szürke szín */
    font-weight: normal;
    margin-top: 2px;
    white-space: nowrap;
}
/* Ha nincs ár, ezt az osztályt teszi rá a script */
.price-tag.missing-price {
    font-size: 0.9rem !important; /* Kisebb betű */
    font-style: italic;           /* Dőlt */
    color: #777 !important;       /* Szürke */
    font-weight: normal;          /* Nem félkövér */
}

/* Ez már benne van a CSS-edben, de biztos ami biztos: */
.unit-price {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 2px;
}
/* --- AKCIÓS SOR KIEMELÉSE --- */
.price-table tr.sale-row {
    background-color: rgba(243, 121, 32, 0.08); /* Nagyon halvány narancs háttér */
    border-left: 4px solid var(--primary-orange); /* Bal oldali kiemelő csík */
}

/* Hover effektus felülírása az akciós sornál (hogy ne szürküljön be, hanem narancs maradjon) */
.price-table tr.sale-row:hover {
    background-color: rgba(243, 121, 32, 0.18);
}
/* --- KÉPNAGYÍTÁS (LIGHTBOX) --- */
.lightbox-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; /* Minden felett */
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.8); /* Sötét háttér */
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border: 3px solid white;
    border-radius: 5px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover {
    color: var(--primary-orange);
}

/* --- MOBIL NÉZET FRISSÍTÉS --- */
@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr; /* Egymás alá kerüljenek */
    }
    .sidebar {
        margin-bottom: 2rem;
    }
    .price-table th, .price-table td {
        padding: 0.5rem; /* Kisebb táblázat mobilon */
        font-size: 0.9rem;
    }
}
/* --- BESZEREZHETŐ TERMÉKEK LISTA (besz.html) --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    margin-top: 2rem;
}

.info-grid li {
    background: #f4f6f9;
    padding: 15px;
    border-left: 4px solid var(--primary-orange);
    border-radius: 4px;
    display: flex;
    align-items: center; /* Ikon és szöveg középre igazítása */
}

.info-grid li i {
    color: var(--primary-blue);
    margin-right: 15px;
    font-size: 1.2rem;
}

.info-grid li strong {
    color: var(--dark-grey);
}
/* Figyelemfelhívó doboz (pl. Ünnepi nyitva tartás, Kiegészítő termékek) */
.alert-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 2rem;
    text-align: left;
    font-size: 1rem;
}

.alert-box i {
    color: #856404; /* Ikon színe */
    margin-right: 10px;
}

.alert-box strong {
    font-weight: bold;
}
/* --- KIÁRUSÍTÁS CÍMKE (SALE BADGE) --- */
.badge-sale {
    display: inline-block;
    background-color: #dc3545; /* Élénk piros háttér */
    color: #ffffff;            /* Fehér szöveg */
    font-weight: bold;
    font-size: 0.75rem;        /* Kicsit kisebb, elegáns méret */
    text-transform: uppercase; /* Csupa nagybetű */
    padding: 4px 10px;         /* Belső térköz a szöveg körül */
    border-radius: 50px;       /* Lekerekített "kapszula" forma */
    margin-bottom: 6px;        /* Kis távolság a terméknévtől */
    box-shadow: 0 3px 6px rgba(220, 53, 69, 0.3); /* Finom árnyék a kiemeléshez */
    letter-spacing: 0.5px;     /* Betűk kis ritkítása az olvashatóságért */
}
/* --- ÚJ KATALÓGUS SZEKCIÓ --- */
.catalog-section {
    padding: 4rem 2rem;
    background-color: var(--light-grey);
}

/* Rács elrendezés a katalógusoknak */
.catalog-grid {
    display: grid;
    /* Reszponzív: min. 250px széles kártyák, amennyi kifér */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Maga a kártya */
.catalog-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 49, 146, 0.15);
}

/* Kép tartó doboz (álló formátumra optimalizálva a katalógusok miatt) */
.catalog-img-box {
    height: 280px; /* Magasabb, mint a termékeknél, mert a katalógus álló */
    background: #eef1f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}

.catalog-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* A teljes borító látszódjon */
    transition: transform 0.5s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Kis árnyék magának a katalógus könyvnek */
}

.catalog-card:hover .catalog-img-box img {
    transform: scale(1.05);
}

/* Szöveges rész */
.catalog-content {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.catalog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
}

/* Egyedi gomb a katalógusokhoz */
.btn-catalog {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-catalog i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-catalog:hover {
    background-color: var(--primary-orange);
    color: white;
}

.btn-catalog:hover i {
    transform: translateX(5px);
}
/* --- SZOLGÁLTATÁS SÁV (HOME) --- */
.services-banner {
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    border: 1px solid #eee;
}

.service-item {
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: 0.3s;
}

.service-item:hover .icon-circle {
    background: var(--primary-blue);
    color: white;
    transform: rotateY(180deg); /* Kis animáció hoverre */
}

.service-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Kiemelt ajánlatkérő doboz a sor végén */
.quote-cta-box {
    background: linear-gradient(135deg, var(--primary-orange), #d96616);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 20px rgba(244, 121, 32, 0.3);
    transform: scale(1.05); /* Kicsit nagyobb, hogy kitűnjön */
}

.quote-cta-box h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.quote-cta-box p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-quote {
    display: inline-block;
    background: white;
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-quote:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobil nézet igazítás */
@media (max-width: 768px) {
    .services-banner {
        grid-template-columns: 1fr; /* Egymás alá kerüljenek mobilon */
        text-align: center;
    }
    .quote-cta-box {
        transform: scale(1); /* Mobilon ne legyen nagyobb */
        margin-top: 1rem;
    }
}
/* --- REFACTOR: HTML INLINE STÍLUSOK HELYETT --- */

/* Hero szekció gombjának tárolója */
.hero-cta-container {
    margin-top: 30px;
}

/* Hero szekció gomb (Nagyobb méret és fix háttér) */
.cta-btn.hero-btn {
    background: var(--primary-orange);
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

/* Kék színű kedvezmény címke (felülírja az alap pirosat) */
.discount-badge.blue {
    background: var(--primary-blue);
}

/* Katalógus szekció bevezető szövege */
.catalog-intro {
    text-align: center;
    margin-bottom: 2rem;
}

/* Süti tájékoztató link aláhúzása */
.cookie-link {
    text-decoration: underline;
}
/* --- ALOLDALAK KÖZÖS BEÁLLÍTÁSAI --- */
.page-main {
    padding-top: 100px;
    min-height: 80vh;
}

/* --- ŰRLAP STÍLUSOK (AJÁNLATKÉRÉS) --- */
.form-intro {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input:not([type="checkbox"]), 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background-color: #fff;
}

/* Checkbox csoport */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-wrapper input {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-wrapper label {
    font-weight: normal;
    font-size: 0.9rem;
    cursor: pointer;
}

.link-highlight {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Submit gomb és visszajelzések */
.btn-submit {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- CÉGINFÓ STÍLUSOK --- */
.welcome-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.stats-box {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    flex-wrap: wrap; /* Mobilon tördelődjön */
}

.stats-item i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-right: 10px;
}

.text-muted {
    color: #666;
    font-weight: normal;
}

.quote-box {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--primary-blue);
    font-weight: bold;
}

.text-right {
    text-align: right;
    margin-top: 2rem;
}

/* --- KAPCSOLAT OLDAL STÍLUSOK --- */
.contact-separator {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid #eee;
}

.opening-table {
    width: 100%;
    margin-top: 0.5rem;
    border-collapse: collapse;
}

.opening-table td {
    padding: 5px 0;
}

.opening-time {
    font-weight: bold;
}

.opening-closed {
    color: #dc3545;
    font-weight: bold;
}

/* Térkép kártya módosítások */
.content-box.map-card {
    padding: 0;
    overflow: hidden;
}

.map-footer {
    padding: 1rem;
    text-align: center;
}

.btn-small {
    font-size: 0.9rem;
}
/* --- TERMÉKEK ÉS ÚJHÁZ OLDAL KIEGÉSZÍTÉSEK --- */

/* Átlátszó doboz módosító (ha a content-box csak keretnek kell) */
.content-box.transparent {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

/* Oldal bevezető szöveg (középre igazítva, kicsit nagyobb) */
.page-intro {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

/* Archívum ikon szürke stílusa a kártyán */
.archive-icon {
    color: #ccc;
    margin-bottom: 10px;
}

/* "Nem találja?" szekció */
.not-found-box {
    text-align: center;
    margin-top: 3rem;
}

.btn-inline-margin {
    margin-top: 1rem;
    display: inline-block;
}

/* ÚjHáz oldal specifikus tipográfia */
.section-subtitle {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.text-lead {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.text-blue-heading {
    color: var(--primary-blue);
    margin-top: 1.5rem;
}

/* Szürke kiemelt doboz (pl. külső linkhez) */
.highlight-box-gray {
    background: #f4f6f9;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 8px;
    text-align: center;
}

.highlight-box-gray p {
    margin-bottom: 1rem;
}

/* Vissza gomb konténer */
.back-link-container {
    margin-top: 1rem;
}

.link-gray {
    color: #666;
}
/* --- TERMÉK ALOLDALAK (TÁBLÁZATOS NÉZET) --- */

/* Balra igazított címsor (alapértelmezett középre igazítás felülírása) */
.section-title.align-left {
    text-align: left;
}

/* Aktív kategória az oldalsávban */
.category-list a.active-cat {
    color: var(--primary-orange);
}

/* Termékleírás szöveg */
.product-description {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Rövidebb margójú leírás (pl. ajtóknál) */
.product-description.short {
    margin-bottom: 1rem;
}

/* Táblázat oszlop formázások */
.table-col-img {
    width: 80px;
}

.price-table .table-col-price {
    text-align: right;
}

/* "Nem találta meg?" doboz az alján */
.missing-offer-box {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.missing-offer-text {
    margin-bottom: 1rem;
    font-weight: bold;
    color: var(--primary-blue);
}
/* --- ERESZCSATORNA ÉS EGYÉB APRÓSÁGOK --- */

/* Apró szürke megjegyzés (pl. termékvariációk a táblázatban) */
.text-muted-small {
    color: #666;
    font-size: 0.9em; /* Kicsit olvashatóbb, mint az alap small */
}

/* Ha a <th> vagy <td>-ben van kép, igazítsuk középre vertikálisan */
.price-table td img {
    vertical-align: middle;
}
/* --- APRÓ BETŰS ÉS EGYÉB KIEGÉSZÍTÉSEK --- */

/* Dőlt, szürke megjegyzés (pl. "A képek illusztrációk") */
.text-italic-muted {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}
/* --- TÁBLÁZATON BELÜLI LISTÁK (Gerenda, Gipszkarton) --- */
.product-detail-list {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
    list-style: disc;
    margin-left: 20px;
}
/* Narancssárga kiemelt szöveg (pl. fontos tulajdonság) */
.text-orange-bold {
    color: var(--primary-orange);
    font-weight: bold;
}
/* --- SEGÉDOSZTÁLYOK --- */

/* Függőleges igazítás felülre (pl. OSB táblázat képnél) */
.valign-top {
    vertical-align: top !important;
}

/* Narancssárga szöveg szín (aktív menüpontokhoz) */
.text-orange {
    color: var(--primary-orange) !important;
}
/* Link az értesítő dobozban (pl. PDF letöltés) */
.alert-link {
    text-decoration: underline;
    color: #856404;
}

/* Táblázat kategória elválasztó sor (szürke háttér) */
.table-category-header {
    background: #f4f6f9;
    font-weight: bold;
}

/* Kék színű kategória szöveg (pl. tetőfedésnél) */
.table-category-header.blue-text {
    color: var(--primary-blue);
}

/* Felső margó segédosztály */
.mt-1 {
    margin-top: 1rem;
}
/* --- VAKOLATOK OLDAL SPECIFIKUS --- */
.brand-intro-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.brand-text {
    flex: 2;
    min-width: 300px;
}

.brand-image-box {
    flex: 1;
    text-align: center;
}

.color-chart-img {
    max-width: 150px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Leírás a termék neve alatt (kisebb, szürke) */
.product-desc-small {
    font-size: 0.9rem;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

/* Nagyobb termékkép (pl. vödrök, ahol a 60px kicsi lenne) */
.product-img-large {
    width: 80px;
    height: auto;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: zoom-in;
    transition: transform 0.2s;
}
.product-img-large:hover { transform: scale(1.1); }

/* Címke háttérszínek */
.badge-gray { background-color: #666; }
.badge-blue { background-color: var(--primary-blue); }
.badge-orange { background-color: var(--primary-orange); }

/* --- MEGEMLÉKEZÉS SZEKCIÓ (LEGACY) --- */
.legacy-section {
    background-color: var(--white);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 3rem 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.legacy-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    background: #fcfcfc; /* Nagyon halvány szürke háttér a kártyának */
    padding: 2rem 3rem;
    border-radius: 50px 10px 50px 10px; /* Egyedi, elegáns forma */
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.legacy-image img {
    width: 120px;             /* Szélesség maradt a régi */
    height: 160px;            /* Magasság növelve -> Álló téglalap */
    object-fit: cover;        /* A kép kitölti a keretet torzulás nélkül */
    border-radius: 15px;      /* 50% helyett finom lekerekítés */
    filter: grayscale(100%);  /* Fekete-fehér alapállapot */
    border: 3px solid #e0e0e0;
    transition: all 0.5s ease;
    cursor: zoom-in;          /* Jelzi, hogy kattintható */
}

/* Ez a hover effektus maradt a régi, csak biztosítjuk, hogy működjön */
.legacy-container:hover .legacy-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
    border-color: var(--primary-orange);
}

.legacy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.im-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

/* Egy kis elválasztó vonal az In Memoriam után */
.im-badge::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #ccc;
    margin-left: 10px;
}

.legacy-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legacy-dates {
    font-weight: 400;
    color: #666;
    font-size: 1rem;
    white-space: nowrap; /* Ne törje le az évszámot */
}

.legacy-content p {
    font-style: italic;
    color: var(--dark-grey);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* Mobil nézet (Responsive) */
@media (max-width: 768px) {
    .legacy-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        border-radius: 20px;
    }
    
    .im-badge {
        justify-content: center; /* Középre igazítás mobilon */
    }
    
    .im-badge::after {
        display: none; /* Mobilon ne legyen vonal */
    }
    
    .legacy-content h3 {
        font-size: 1.2rem;
    }
    
    .legacy-dates {
        display: block; /* Mobilon új sorba kerüljön az évszám */
        font-size: 0.9rem;
        margin-top: 5px;
    }
}

/* =========================================
   TOP BANNER VEZÉRLŐPULT (Karrier)
   ========================================= */

/* 1. LÁTHATÓSÁG KAPCSOLÓ */
.top-alert-bar {
    /* Ha el akarod rejteni, írd át a 'block'-ot 'none'-ra! block: megjelenik, none: nem jelenik meg*/
    display: none; 
    
    background: linear-gradient(90deg, #dc3545, #b02a37); /* Piros háttér */
    /* background: linear-gradient(90deg, #F37920, #d96616); /* Vagy Narancs háttér */
    color: white;
    font-size: 0.95rem;
    padding: 12px 0;
    position: relative;
    z-index: 2000; /* Legyen mind felett */
}

/* 2. CÍMKE SZÖVEGE (pl. KARRIER, FONTOS, AKCIÓ) */
.alert-badge-dynamic::before {
    content: "FEJLESZTÉS ALATT"; /* <--- ÍRD ÁT ITT! */
    
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-right: 10px;
    text-transform: uppercase;
}

/* 3. FŐ ÜZENET SZÖVEGE */
.alert-text-dynamic::after {
    content: "Az oldalon lévő információk nem relevánsak!"; /* <--- ÍRD ÁT ITT! */
    
    font-weight: 500;
    margin-right: 15px;
}

/* 4. GOMB SZÖVEGE */
.alert-link-dynamic::before {
    content: "Részletek"; /* <--- ÍRD ÁT ITT! */
    text-decoration: underline;
    font-weight: bold;
    margin-right: 5px;
    visibility: hidden;
}

/* --- EGYÉB FORMÁZÁSOK (Ezt nem kell szerkesztened) --- */
.alert-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.alert-link-dynamic {
    color: white;
    transition: 0.3s;
    white-space: nowrap;
}
.alert-link-dynamic:hover {
    color: var(--light-grey);
    text-decoration: none;
}

/* Mobil nézet igazítás */
@media (max-width: 768px) {
    .alert-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .alert-badge-dynamic::before {
        margin-right: 0;
        display: inline-block; /* Mobilon külön sorba kerül */
    }
    .alert-text-dynamic::after {
        margin-right: 0;
        display: block; /* Sortörés mobilon */
    }
}
/* --- ADATVÉDELMI ÉS JOGI OLDALAK --- */
.legal-content {
    line-height: 1.8;
    color: #444;
}

.legal-content h2 {
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.legal-content h3 {
    color: var(--primary-orange);
    font-family: 'Montserrat', sans-serif;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.legal-content ul {
    list-style: disc; /* Visszaállítjuk a pöttyöket */
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    padding-left: 5px;
}

.legal-content p {
    margin-bottom: 1rem;
    text-align: justify; /* Szebb sorkizárt megjelenés jogi szövegnél */
}

.legal-content strong {
    color: var(--dark-grey);
    font-weight: 700;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-orange);
}
/* --- SZOLGÁLTATÁSOK OLDAL --- */

/* Szállítási kártyák elrendezése (2 oszlop) */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.delivery-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;
    height: 100%;
}

.delivery-header {
    background: var(--primary-blue);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.delivery-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: white;
}

.delivery-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.delivery-body {
    padding: 1.5rem;
}

/* Árlista stílus a kártyán belül */
.price-list-group {
    margin-bottom: 1.5rem;
}

.price-list-title {
    color: var(--primary-orange);
    font-weight: bold;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 10px;
    display: block;
}

.delivery-prices {
    list-style: none;
    padding: 0;
}

.delivery-prices li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
}

.delivery-prices li span:last-child {
    font-weight: bold;
    color: var(--dark-grey);
    white-space: nowrap; /* Ár ne törjön le */
    margin-left: 10px;
}

.delivery-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    display: block;
}

/* Általános szolgáltatások rács */
.general-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gen-service-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gen-service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gen-service-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.gen-service-item span {
    font-weight: 600;
    color: var(--dark-grey);
    line-height: 1.3;
}
/* --- BENTO TIMELINE STÍLUSOK --- */

/* Bevezető szöveg finomítása */
.lead-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-center { text-align: center; }

/* Idővonal keret */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem 0;
}

/* A függőleges vonal */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--light-grey));
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 0;
}

/* Sorok (Bal és Jobb) */
.timeline-row {
    display: flex;
    justify-content: flex-end; /* Alapértelmezett: jobb oldal */
    padding-bottom: 3rem;
    position: relative;
    width: 50%;
    padding-right: 40px; /* Távolság a vonaltól */
    margin-left: auto; /* Jobb oldalra tolja */
}

/* Bal oldali sorok felülírása */
.timeline-row.left {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: auto;
    padding-right: 0;
    padding-left: 40px; /* Távolság a vonaltól */
}

/* A pötty a vonalon */
.timeline-row::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

.timeline-row.right::after { left: -12px; } /* Jobb oldali elem pöttye balra */
.timeline-row.left::after { right: -12px; } /* Bal oldali elem pöttye jobbra */

/* --- BENTO KÁRTYÁK --- */
.bento-card {
    background: white;
    border-radius: 24px; /* Nagyobb lekerekítés a Bento hatáshoz */
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 49, 146, 0.12);
}

/* Évszám címke */
.card-year {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: rgba(46, 49, 146, 0.1); /* Halvány kék */
    line-height: 1;
}

/* Kártya tartalmak */
.bento-card h4 {
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

/* 1. Típus: Képes kártya (Archív) */
.card-history {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.card-image-placeholder {
    width: 120px;
    height: 120px;
    background: #eee;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    flex-shrink: 0;
    font-size: 0.8rem;
    text-align: center;
}
.card-image-placeholder i { font-size: 2rem; margin-bottom: 5px; }

/* 2. Típus: Kiemelt Milestone */
.highlight-orange {
    border-left: 6px solid var(--primary-orange);
}
.family-list li { margin-bottom: 5px; color: var(--dark-grey); font-weight: 500; }
.family-list i { color: var(--primary-orange); margin-right: 8px; }

/* 3. Típus: Grid-in-Grid (Osztott kártyák) */
.bento-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}
.card-small {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-blue {
    background: var(--primary-blue);
    color: white;
}
.card-blue h4 { color: white; }
.centered { text-align: center; }
.icon-large { font-size: 2rem; margin-bottom: 10px; color: var(--primary-orange); }
.card-year-small {
    font-weight: bold; font-size: 0.9rem; opacity: 0.7; margin-bottom: 5px; text-align: center;
}

/* 4. Típus: Partner kártya */
.ujhaz-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #F37920; /* Újház narancs */
    letter-spacing: -1px;
}
.partner-logo-area { margin-bottom: 1rem; }

/* 5. Típus: Statisztika */
.stat-bubble {
    display: inline-flex;
    align-items: center;
    background: var(--light-grey);
    padding: 5px 15px;
    border-radius: 50px;
    margin-top: 1rem;
    border: 1px solid #ddd;
}
.stat-number {
    font-weight: 900; font-size: 1.2rem; color: var(--primary-blue); margin-right: 8px;
}
.stat-label { font-size: 0.9rem; color: #666; }

/* 6. Típus: Idézet */
.card-quote {
    background: linear-gradient(135deg, #fff, #f4f6f9);
    border: 2px solid var(--primary-orange);
}
.quote-icon { font-size: 2rem; color: #ddd; display: block; margin-bottom: 1rem; }
.slogan-text { font-style: italic; color: var(--primary-blue); font-size: 1.2rem; margin-bottom: 1rem; }
.quote-author { font-weight: bold; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #999; }
/* --- Bento TIMELINE KÉP STÍLUS --- */
.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Kitölti a rendelkezésre álló 120x120px helyet */
    border-radius: 16px;    /* Megyezik a placeholder kerekítésével */
    cursor: zoom-in;        /* Jelzi, hogy kattintható */
    transition: transform 0.3s ease;
}

.timeline-img:hover {
    transform: scale(1.05); /* Finom nagyítás rámutatáskor */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* --- RESPONSIVE (MOBILRA) --- */
@media (max-width: 768px) {
    .timeline-line { left: 20px; transform: none; } /* Vonal balra igazítva */
    
    .timeline-row {
        width: 100%;
        margin-left: 0;
        padding-left: 50px; /* Hely a vonalnak */
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-row.left { padding-left: 50px; padding-right: 0; }
    
    /* Pöttyök igazítása */
    .timeline-row::after, .timeline-row.left::after, .timeline-row.right::after {
        left: 12px; /* A vonal közepére */
        right: auto;
    }

    .bento-grid-inner { grid-template-columns: 1fr; } /* A kis kártyák egymás alá kerülnek */
    
    .card-history { flex-direction: column-reverse; text-align: center; } /* Kép felülre */
    
    .card-year { font-size: 1.8rem; }
}
/* --- IN MEMORIAM KÁRTYA STÍLUS --- */
.card-memorial {
    background: #fafafa; /* Kicsit sötétebb fehér, törtfehér */
    border-left: 6px solid #555; /* Gyász/Tisztelet jelzése sötétszürkével */
    border-radius: 20px;
}

.card-memorial .card-year {
    color: rgba(0, 0, 0, 0.05); /* Szürkébb évszám a háttérben */
}

.memorial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.memorial-icon {
    color: #555; /* Sötétszürke csillag */
    font-size: 1.2rem;
}

.card-memorial h4 {
    color: #333; /* Sötétebb cím */
    margin-bottom: 0;
}

.memorial-text {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.5;
}

.im-signature {
    margin-top: 15px;
    text-align: right;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.form-result { 
    padding: 1.5rem; 
    border-radius: 8px; 
    margin-bottom: 2rem; 
    display: none; 
}
.form-result.success { 
    background: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb; 
}
.form-result.error { 
    background: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb; 
}
.honeypot { 
    display: none; 
}
.back-link { 
    display: block; 
    margin: 1.5rem 0; 
    text-align: center; 
    font-size: 1rem; 
}

/* --- ÚJ MUNKATÁRS LISTA STÍLUSOK --- */
.staff-section-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    margin: 2rem 0 1rem 0;
    text-align: center;
    font-size: 1.8rem;
}

/* Csoportosítás (Cégvezetés, Értékesítés, Pénzügy) */
.staff-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Automatikus oszlopok */
    gap: 2rem;
    margin-bottom: 2rem;
}

.staff-category-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    /* border-top: 4px solid var(--primary-orange); Narancs felső csík */
    border: 1px solid var(--primary-orange);}

.staff-category-title {
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Egyéni névjegy */
.person-card {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #eee;
}
.person-card:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }

.person-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-grey);
    display: block;
    margin-bottom: 2px;
}

.person-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary-orange);
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.person-contact-link {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 4px;
    transition: 0.2s;
}
.person-contact-link i {
    width: 25px; /* Fix szélesség, hogy egy vonalba essenek a számok */
    color: var(--primary-blue);
}
.person-contact-link:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}