:root {
            --brand: #2563eb;
            --brand-dark: #1e40af;
            --bg: #f8fafc;
            --white: #ffffff;
            --text: #0f172a;
            --text-light: #64748b;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

        /* Navigáció */
        nav {
            background: var(--white);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .logo { font-weight: 800; font-size: 1.4rem; color: var(--brand); text-decoration: none; }
        .nav-links { display: flex; align-items: center; gap: 20px; }
        .nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; }
        
        .lang-switcher { display: flex; gap: 20px;  border-left: 2px solid #eee;border-right: 2px solid #eee; padding: 0 20px; }
        .lang-switcher a { color: var(--text-light); font-size: 0.75rem; text-decoration: none; }
        .lang-switcher a.active { color: var(--brand); font-weight: 800; }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 2rem 5% 1rem 5%;
            text-align: center;
            color: white;
        }

        .hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; letter-spacing: -1px; }
        
        .search-box {
            background: white;
            padding: 10px;
            border-radius: 16px;
            display: flex;
            max-width: 900px;
            margin: 0 auto;
            gap: 10px;
        }

        .search-box input {
            flex: 1;
            padding: 15px;
            border: none;
            outline: none;
            font-size: 1rem;
            border-radius: 10px;
        }

        .search-btn {
            background: var(--brand);
            color: white;
            border: none;
            padding: 0 35px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
        }

        /* Szekciók */
        .section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
        .section-title { margin-bottom: 40px; font-size: 1.8rem; font-weight: 800; }
        .section_top{padding:0 5% 80px 5%; max-width: 1200px; margin: 0 auto;}
.section_top {
    width: 100%;
    overflow: hidden; /* Megvédi az oldalt a vízszintes szétcsúszástól */
    padding: 20px 0;
}
        .cat-card{
            background: var(--white);
                        padding: 25px;
                        border-radius: 0 0 16px 16px ;
                        text-align: center;
                        text-decoration: none;
                        color: var(--text);
                        transition: 0.3s;
                        border-right: 1px solid #e2e8f0;
                        border-left: 1px solid #e2e8f0;
                        border-bottom: 1px solid #e2e8f0;
                        display: block;
                        margin-top:-12px;
        }
        .cat-card i{font-style: normal; font-size: 2rem; display: block; margin-bottom: 10px;}
        .cat-card span{font-weight: 600;}
        .cat-card:hover{
            transform: translateY(10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
/* --- Asztali nézet (Grid) --- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    overflow-wrap: break-word;
    hyphens: auto;
}
 
.cat-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
}

.cat-card i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.cat-card span {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

/* --- Mobil nézet (Scrollable) --- */
@media (max-width: 768px) {
    .cat-grid {
        display: flex !important; /* Grid kikapcsolása */
        flex-wrap: nowrap !important; /* Kötelező egy sorba kényszerítés */
        overflow-x: auto !important; /* Vízszintes görgetés */
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 10px 20px 20px 20px; /* Alul több hely az árnyéknak */
        
        /* Scroll Snap - az app érzetért */
        scroll-snap-type: x mandatory;
        
        /* Görgetősáv elrejtése */
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }

    .cat-grid::-webkit-scrollbar {
        display: none;
    }

    .cat-card {
        /* KISZÁMOLVA: 100% szélesség - (2*20px szélső padding) - (1.5 * 12px gap) osztva 2.5-tel */
        flex: 0 0 calc((100% - 58px) / 2.5) !important;
        scroll-snap-align: start;
        padding: 15px 10px;
        min-height: 130px; /* Fix magasság a szövegek hossza miatt */
        
        /* Hosszú német szavak kezelése */
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto; 
    }

    .cat-card i {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .cat-card span {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Maximum 2 sorba törheti el a szót */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

        /* Statikus Szakember Kártyák */
        .pro-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 15px;
        }

        .pro-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0; /* A belső paddinget a body-nak adjuk */
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

/* Lebegő hatás egérrel */
.pro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #2563eb33;
}

.pro-card-body {
    padding: 30px 25px 15px 25px;
    flex-grow: 1;
}

/* Hitelesített jelvény */
.verified-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 12px;
    
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    padding-right: 80px; /* Hely a badge-nek */
}

.location-tag {
    font-size: 0.85rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pro-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Alsó sáv */
.pro-card-footer {
    padding: 20px 25px 25px;
    background: #f8fafc; /* Enyhén eltérő háttér az aljának */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
}

.price-tag .amount {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
}

.price-tag .unit {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Profil gomb */
.btn-profile-modern {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-profile-modern:hover {
    background: #1d4ed8;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.25);
    color: white;
}

/*profil card end*/


/*uj profile card*/

.pro-card-modern {
 
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 24px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pro-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #3b82f6;
}

/* Header: Badge és Ár */
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-pill {
    background: #ecfdf5;
    color: #059669;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-badge {
    background: #f8fafc;
    padding: 6px 14px;
    border-radius: 12px;
    color: #1e293b;
}

.price-num { font-weight: 600; font-size: 1.1rem; }
.price-unit { font-size: 0.75rem; opacity: 0.6; margin-left: 2px; }

/* Content */
.company-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.location-text {
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 600;
}

.stars { color: #fbbf24; letter-spacing: 2px; }
.rating-count { font-size: 0.8rem; color: #94a3b8; margin-left: 5px; font-weight: 600; }

/* Kategória gombok */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.cat-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.description-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    min-height: 54px; /* Fix magasság, hogy a kártyák egyformák legyenek */
}

/* Gomb */
.btn-main-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1e293b; /* Sötét, elegáns gomb */
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-main-action:hover {
    background: #3b82f6;
    color: white;
}

/**/
/* Ezt tedd a <style> blokkba */
.category-hero {
    
    margin-bottom: 40px;
    box-shadow: inset 0 -100px 100px rgba(0,0,0,0.3); /* Mélységet ad a szövegnek */
}

.category-seo-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 20px;
}

/* Lapozó gombok modernizálása */
.pagination a {
    transition: all 0.3s ease;
}

.pagination a:hover:not([style*="background: #2563eb"]) {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-2px);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}



.lang-switcher a {
    text-decoration: none;
    color: #666;
    padding: 2px 4px;
}

.lang-switcher a.active {
    color: var(--brand);
    border-bottom: 2px solid var(--brand);
}

.sep { color: #ddd; }

/* Gombok kezelése */
.btn-nav {
    background: var(--brand);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* Mobil specifikus beállítások */
@media (max-width: 576px) {
    .main-nav {
        padding: 8px 12px;
    }
    
    .logo { font-size: 1.1rem; }
    
    .lang-switcher {
        gap: 3px;
    }
    
    /* Mobilnézeten csak a lényeget hagyjuk */
    .btn-nav {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}


.filter-bar {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.filter-form {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    gap: 10px;
}

.filter-group i { color: #3b82f6; }

.filter-group select, .filter-group input {
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    outline: none;
}

.btn-filter-go {
    border: none;
    background: #3b82f6;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-filter-go:hover { background: #2563eb; }

@media (max-width: 768px) {
    .filter-form { flex-direction: column; align-items: stretch; }
    .filter-group select, .filter-group input {max-width:250px!important;}
}

.swal2-show{z-index:9999;}


        .btn-profile {
            display: block; text-align: center; background: #f1f5f9;
            padding: 12px; border-radius: 12px; text-decoration: none;
            font-weight: 700; color: var(--text); font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .search-box { flex-direction: column; }
            .nav-links { display: none; }
        }
        
    /* Fő konténer */
.search-container-modern {
    display: flex;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px; /* Lekerekített szélek */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    border: 1px solid #eee;
}

/* Beviteli csoportok */
.input-group-custom {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 15px;
}

.input-icon {
    color: #999;
    margin-right: 10px;
    font-size: 1.1rem;
}

.input-group-custom input {
    border: none !important;
    outline: none !important;
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    background: transparent;
}

/* Függőleges elválasztó vonal */
.divider {
    width: 1px;
    height: 30px;
    background-color: #eee;
}

/* A modern gomb */
.search-btn-modern {
    background: #2778c4;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-btn-modern:hover {
    background: #1a5a96;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(39, 120, 196, 0.3);
}

/* --- MOBIL NÉZET --- */
@media (max-width: 768px) {
    .search-container-modern {
        flex-direction: column; /* Egymás alá kerülnek */
        border-radius: 20px;
        padding: 15px;
    }

    .input-group-custom {
        width: 100%;
        padding: 10px 0;
    }

    .divider {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    .search-btn-modern {
        width: 100%;
        margin-top: 10px;
        border-radius: 12px;
    }
}    
        
        
/******* innnen kezudődik a régi*/

:root {
           --card-bg: #ffffff;
    --text-main: #1a1a1a;
    --badge-bg: #fff4e5;
    --badge-text: #663d00;
             
        }

body { font-family: 'Poppins', sans-serif; background-color: #f9fbf7; color: #333; }
        .navbar { background: #6f42c1; }
        .navbar-brand, .nav-link { color: white !important; font-weight: bold; }
       
        .hero-section {
            background: linear-gradient(135deg, #6f42c1 0%, #d63384 100%);
            color: white;
            padding: 80px 0;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }

        .login-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            color: #333;
        }

        .btn-gamified {
            background: #ffc107;
            border: none;
            font-weight: 600;
            text-transform: uppercase;
            padding: 12px 30px;
            border-radius: 6px;
            transition: transform 0.2s;
        }

        .btn-gamified:hover {  background: #e0a800; }

        .prize-card {
            border: none;
            border-radius: 15px;
            transition: 0.3s;
            overflow: hidden;
        }
        .prize-card:hover { transform: translateY(-10px); }
        
        .winner-badge {  color: white; border-radius: 50px; padding: 5px 15px; font-size: 0.8rem; }
        
        /* Nyertes lista stílusa */
    .winner-ticker-container {
        height: 250px;
        overflow: hidden;
        border: 2px solid #e0e0e0;
        border-radius: 20px;
        background: #fff;
        padding: 10px;
    }

    .winner-item {
        display: flex;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        transition: 0.3s;
    }

    .winner-item:last-child { border-bottom: none; }

    .winner-avatar {
        width: 45px;
        height: 45px;
        background: #6f42c1;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-right: 15px;
    }

    .winner-info { flex-grow: 1; text-align: left; }
    .winner-name { font-weight: bold; margin: 0; }
    .winner-prize { font-size: 0.85rem; color: #666; }
    .winner-date { font-size: 0.75rem; color: #aaa; }

    /* Pont-animáció a kártyákon */
    .pulse-points {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
       .main-footer {
    background: #1a1a2e; /* Mély sötétkék/fekete */
    padding: 80px 0 30px;
    color: #e1e1e1;
    border-top: 3px solid #6f42c1;
    position: relative;
}

.footer-logo {
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-text {
    color: #a0a0a0;
    line-height: 1.6;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #6f42c1;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #6f42c1;
    padding-left: 8px;
}

/* Social gombok */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s;
    text-decoration: none;
}

.social-links a:hover {
    background: #6f42c1;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
}

/* Hírlevél box */
.newsletter-box {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-box input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: #fff;
    flex-grow: 1;
    outline: none;
}

.btn-subscribe {
    background: #6f42c1;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.btn-subscribe:hover {
    background: #5a32a3;
    transform: scale(1.1);
}

.footer-divider {
    margin: 40px 0 30px;
    border-color: rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 0.85rem;
    color: #666;
}

.payment-icons {
    font-size: 1.5rem;
    color: #444;
}

.payment-icons i {
    margin-left: 15px;
}



.wrap {
    width: 100%;
    margin: 0 auto
}

.button.btn_primary
 {
    background: #d02e7d;
    color: #fff;
}
.btn_primary{
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #ccc; /* Vagy amilyen színt szeretnél */
}
.winner-list-sidebar .d-flex {
    transition: transform 0.2s ease;
}
/* Animáció a LIVE felirathoz, hogy vonzza a szemet */
.animate-pulse {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.winner-list-sidebar .d-flex:hover {
    border-color: #ffc107 !important; /* Arany szegély hoverre */
    cursor: default;
}
.video-container {
    border: 5px solid #fff;
}
#how-it-works {
    background: #ffffff;
    overflow: hidden;
}

.step-card {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: #0d6efd;
    position: relative;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon-wrap {
    transform: translateY(-5px);
    background: #0d6efd;
    color: #fff;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #343a40;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-line {
    position: absolute;
    top: 60px;
    left: 15%;
    width:70%;
    /*right: 15%;*/
    height: 2px;
    background: repeating-linear-gradient(to right, #dee2e6 0, #dee2e6 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.shadow-warning {
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}
.timer-box {
    background: linear-gradient(90deg, #ffb347, #ffcc33);
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(255, 179, 71, 0.3);
}

.timer-display {
    font-family: 'Courier New', monospace; /* Fix szélességű karakterek, hogy ne ugráljon */
}

h6{font-size:1.2rem!important;}

.winnerspan{display: flex;
    flex-direction: column-reverse;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    }
    
    
   /* A fő konténer */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
        }

        /* Fejléc rész a nyilakkal */
        .slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .slider-title { font-size: 24px; font-weight: 800; color: #1a1a1a; }

        /* A GÖRGETHETŐ RÉSZ */
        .slider-wrapper {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 10px 5px 30px 5px;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
        }

        .slider-wrapper::-webkit-scrollbar { display: none; }

        /* KÁRTYA MÉRETEZÉS */
        .card-snap-item {
            flex: 0 0 80%; /* Mobilon 1.2 kártya */
            scroll-snap-align: center;
        }

      

        /* KÁRTYA DESIGN (A KÉPED ALAPJÁN) */
        .product-card {
            background: #fff;
            border-radius: 28px;
            padding: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            height: 100%;
            transition: transform 0.2s;
        }

        .product-card:hover { transform: translateY(-5px); }

        .img-wrap {
            width: 100%;
            aspect-ratio: 1/1;
          
            border-radius: 22px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .img-wrap img { width: 100%; height: 100%; object-fit: contain; padding:3rem;}

        .title { font-size: 1.2rem; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; height: 2.6rem; overflow: hidden; text-align: center;}

        .footer { display: flex; justify-content: space-between; align-items: center; }
        .price { font-size: 1.4rem; font-weight: 900; color: #000; }
        
        .badge {
            background: #fff4e5;
            color: #663d00;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* NAVIGÁCIÓS GOMBOK */
        .nav-controls { display: none; gap: 10px; }

        @media (min-width: 992px) {
            .nav-controls { display: flex; }
        }

        .nav-btn {
            width: 44px;
            height: 44px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            font-size: 18px;
        }

        .nav-btn:hover { background: #000; color: #fff; border-color: #000; } 
        
        
.hero-section {
    position: relative;
    /* Ide másold be a generált kép elérési útját */
    background-image: url('/assets/img/hero_bg.webp'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 35px 0; /* Megfelelő magasság a tartalomnak */
    color: white;
    overflow: hidden;
}

/* Sötétítő réteg, hogy a fehér szöveg és a login box kiemelkedjen */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 40%-os sötétítés - állítsd 0.6-ra ha túl világos a kép */
    z-index: 1;
}

/* Biztosítjuk, hogy a tartalom a sötétítő réteg felett legyen */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Opcionális: A cím (h1) árnyékolása a még jobb olvashatóságért */
.hero-section h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}        

#scrolltop {
  position: fixed;
  z-index: 999999;
  text-align: center;
  text-indent: 100%;
  height: 50px;
  width: 50px;
  border-radius: 8px;
  bottom: 40px;
  right: 10px;
  background: url(/brozzme-scrolltop-arrow.svg) center 50% no-repeat #6f42c1;
 
  cursor: pointer;
}
.winner-card {
    border-radius: 20px;
    overflow: visible;
    transition: transform 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-10px);
}

.winner-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.winner-badge img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    background: white;
}

.winner-card .card-body {
    padding-top: 30px !important; /* Helyet hagyunk a badge-nek */
}

.transition-hover {
    transition: all 0.3s ease-in-out;
}

/* Kisebb kijelzőkön finomítunk az arányokon */
@media (max-width: 576px) {
    .winner-badge img {
        width: 50px;
        height: 50px;
    }
}
.my-fb-button {
    width: 100%;           /* Ettől lesz full széles a konténerében */
    max-width: 100%;       /* Biztosíték */
    height: 40px;          /* Hogy egyforma magas legyen a Google-lel */
    background-color: #1877F2;
    color: white;
    border: none;
    border-radius: 4px;    /* Vagy amennyi a sárga gombodé */
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;   /* Távolság a Google gombtól */
    transition: background 0.3s;
}

.my-fb-button:hover {
    background-color: #166fe5;
}

.fontrem{font-size:1rem!important;} 

      
     /* Általános térközök */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* Rólunk szekció kép stílus */
.image-stack {
    position: relative;
    padding: 10px;
}
.image-stack img {
    border-bottom: 8px solid #0055a4; /* Osztrák kék vagy piros hangsúly */
}

/* Előnyök kártyák */
.benefit-card {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.benefit-card:hover {
    transform: translateY(-10px);
}
.benefit-icon {
    width: 60px;
    height: 60px;
    background: #e7f0ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

/* Házirend box */
.rules-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.bg-primary {
    background-color: #0055a4 !important; /* Professzionális sötétkék */
}

/* Animált gomb finomítás */
.btn-primary {
    background-color: #0055a4;
    border: none;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #003d75;
    transform: scale(1.05);
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
    .py-6 { padding-top: 3rem; padding-bottom: 3rem; }
    .display-5 { font-size: 2rem; }
}   

#search-results {
    max-height: 400px;
    overflow-y: auto;
    border-radius: 0 0 15px 15px;
    border: 1px solid #dee2e6;
}

#search-results .list-group-item {
    border-left: none;
    border-right: none;
    transition: background 0.2s;
}

#search-results .list-group-item:hover {
    background-color: #f8f9fa;
    border-left: 4px solid #0055a4;
}

#global-search {
    border-radius: 50px;
    padding-left: 20px;
}

.kep-kontener {
  position: relative;
  width: 330px;  /* Állítsd be a neked tetsző méretre */
  height: 300px;
  margin: 50px auto; /* Hogy legyen helye elfordulni */
}

.kep {
  position: absolute;
  width: 100%;
  height: auto;
  border-radius: 20px; /* Lekerekített sarkok */
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); /* Elegáns árnyék */
  transition: transform 0.3s ease; /* Kis animáció, ha ráviszed az egeret */
  border: 4px solid white; /* Fotókeret hatás */
}

.kep-also {
  transform: rotate(-10deg); /* Balra dől */
  z-index: 1;
}

.kep-felso {
  transform: rotate(5deg) translateX(20px); /* Jobbra dől és kicsit elcsúszik */
  z-index: 2;
}

/* Interaktív extra: ha ráközelítesz az egérrel, kisimulnak */
.kep-kontener:hover .kep {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
}


  @media (min-width: 992px) {
            .card-snap-item {
                flex: 0 0 20%; /* Asztalin 3.2 kártya */
                scroll-snap-align: start;
            }
            
            .kep-kontener {
               
                width: 420px!important;  
              
              }
        }
        
        
        
/* Ez az üres réteg fogja elfedni és homályosítani a hátteret */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Sötétítés */
    backdrop-filter: blur(8px);    /* EZ A LÉNYEG: a mögötte lévő dolgokat homályosítja */
    -webkit-backdrop-filter: blur(8px);
    z-index: 9996; /* Eggyel a modal alatt */
}

#loginmodal {
    position: fixed;
    z-index: 9998;
    
    /* Pozicionálás a képernyő közepére */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Ez tolja vissza pontosan a saját méretének felével */
    
    width: 400px;
    max-width: 90%; /* Mobilbarát védelem: ne lógjon le kicsi kijelzőn */
    
    /* Opcionális: egy kis árnyék, hogy jobban elváljon a homályos háttértől */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-radius: 15px;
}

@media (max-width: 500px) {
   .profiletabs, .profile-header{flex-direction:column!important;} 
}
