/* Teljes main.css fájl a WelcomeBook.hu oldalhoz - Cookie Banner stílusokkal */

:root {
    --primary-color: #3a7bd5;
    --secondary-color: #00d2ff;
    --dark-color: #2c3e50;
    --light-color: #f5f7fa;
    --accent-color: #ff7e5f;
    --success-color: #4caf50;
    --promo-color: #ff4757;
    --text-color: #333;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--text-color);
    background: linear-gradient(135deg, #d4f5d4 0%, #4caf50 100%); /* TEMP: uj VPS vizualis jelzo - revertelheto */
    min-height: 100vh;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header és logo stílusok */
.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin: 0.8rem 0;
}

.logo span {
    color: var(--accent-color);
}

header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.hero-banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Reszponzív kép megjelenítés */
@media (max-width: 768px) {
    .hero-banner {
        margin: 1rem auto;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
}

.header-content p {
    margin: 0;
}

.coming-soon {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255,126,95,0.3);
}

/* Hero section stílusok */
.hero {
    padding: 3rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.4" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
    z-index: -1;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--dark-color);
}

.highlight {
    background-color: #fff3cd;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-weight: bold;
}

/* Új benefit grid stílusok */
.benefits-container {
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 900px;
}

.benefits-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 40px;
    text-align: center;
}

.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
}

.cta-button-container {
    margin: 1.5rem auto 1rem;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--promo-color) 0%, #ff6b81 100%);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255,71,87,0.25);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e83a47 0%, #ff5a70 100%);
    box-shadow: 0 7px 20px rgba(255,71,87,0.35);
    transform: translateY(-3px);
}

.discount-badge {
    display: block;
    background-color: #ffe8e2;
    color: var(--accent-color);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 1rem auto 0;
    max-width: 500px;
    text-align: center;
    border: 2px dashed var(--accent-color);
}

/* Különleges bevezető ajánlat banner */
.promo-banner {
    margin: 2rem auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    border: 2px solid var(--promo-color);
    position: relative;
    overflow: hidden;
}

.promo-banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 50px 50px 0;
    border-style: solid;
    border-color: transparent var(--promo-color) transparent transparent;
}

.promo-banner h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--promo-color);
    font-size: 1.4rem;
    font-weight: bold;
}

.promo-timer {
    text-align: center;
    margin-bottom: 1rem;
}

.promo-timer p {
    font-size: 0.85rem;
    font-weight: bold;
    color: #777;
    margin-bottom: 0.3rem;
}

.countdown {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--promo-color);
    letter-spacing: 1px;
}

.promo-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.promo-tier {
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.promo-tier.highlight {
    border: 2px solid var(--promo-color);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255,71,87,0.15);
}

.promo-tier h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: bold;
}

.promo-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--promo-color);
    margin-bottom: 0.5rem;
}

.promo-tier p:not(.promo-value) {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.promo-button {
    display: block;
    background: linear-gradient(135deg, var(--promo-color) 0%, #ff6b81 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255,71,87,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 auto;
    max-width: 80%;
}

.promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255,71,87,0.4);
}

/* Nyíl lefelé a hero szekcióban */
.scroll-indicator {
    text-align: center;
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Szekciók és címek */
.features, .physical-products, .packages, .faq {
    padding: 3rem 0;
}

.legal-section, .digital-vs-print {
    padding: 3rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 1.6rem;
}

.section-title span {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 0.8rem auto;
}

/* Funkciók grid */
.feature-grid, .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item, .product-item {
    background-color: var(--light-color);
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-item:hover, .product-item:hover {
    transform: translateY(-8px);
}

.feature-icon, .product-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.product-icon {
    color: var(--accent-color);
}

.feature-title, .product-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

/* Jogi információk */
.legal-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.legal-box {
    background-color: var(--light-color);
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.legal-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

/* Csomagok */
.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.package-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid var(--primary-color);
}

.package-popular {
    border-top: 5px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: 30px;
    right: -30px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.4rem 0;
    width: 150px;
    text-align: center;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.package-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.package-price span {
    font-size: 1rem;
    font-weight: normal;
    color: #999;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.package-features li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* GYIK */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--light-color);
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-weight: bold;
}

.faq-answer {
    color: #555;
    font-size: 0.95rem;
}

/* Feliratkozási űrlap */
.contact {
    padding: 3rem 0;
    background-color: var(--dark-color);
    color: white;
    text-align: center;
}

.contact h2 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.notification-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 2rem auto 0;
    position: relative;
    padding-top: 1.5rem;
}

.notification-form h3 {
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    text-align: center;
    color: var(--dark-color);
}

.limited-offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    width: auto;
    max-width: 90%;
    margin: 0 auto;
    transform: translateX(-50%);
    background-color: var(--promo-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.02);
        opacity: 0.9;
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    width: 100%;
}

.input-group input {
    padding: 0.8rem;
    border: 1px solid #e1e5ea;
    border-radius: 5px 5px 0 0;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-family);
    margin-bottom: 0;
}

.input-group button {
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--promo-color) 0%, #ff6b81 100%);
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.9rem 1.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(255,71,87,0.2);
    color: white;
    border: none;
    border-radius: 0 0 5px 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

.input-group button:hover {
    background: linear-gradient(135deg, #e83a47 0%, #ff5a70 100%);
    box-shadow: 0 5px 12px rgba(255,71,87,0.3);
}

.privacy-note {
    font-size: 0.8rem;
    color: #9aa5b1;
    text-align: center;
}

.privacy-note a {
    color: var(--accent-color);
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #1a2530;
    color: #9aa5b1;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: #9aa5b1;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.company-info {
    border-top: 1px solid #2c3847;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
}

#formResponse {
    margin: 0.5rem 0;
    font-weight: bold;
    font-size: 0.85rem;
}

/* Összehasonlító táblázat */
.digital-vs-print {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    white-space: normal;
    font-size: 0.9rem;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    position: sticky;
    top: 0;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    position: sticky;
    left: 0;
    background-color: white;
    z-index: 1;
}

.comparison-table th:first-child {
    background-color: var(--primary-color);
    z-index: 2;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .yes {
    color: var(--success-color);
    font-weight: bold;
}

.comparison-table .no {
    color: #f44336;
}

.comparison-table .highlight-cell {
    background-color: rgba(58, 123, 213, 0.1);
}

/* Kártyás nézet mobilra */
.comparison-cards {
    display: none;
}

@media (max-width: 767px) {
    .comparison-table {
        display: none;
    }
    
    .comparison-cards {
        display: block;
    }
    
    .comparison-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 1.2rem;
        overflow: hidden;
    }
    
    .card-header {
        background-color: var(--primary-color);
        color: white;
        padding: 0.8rem 1rem;
        font-weight: bold;
        font-size: 1rem;
    }
    
    .card-row {
        display: flex;
        border-bottom: 1px solid #eee;
    }
    
    .card-row:last-child {
        border-bottom: none;
    }
    
    .card-label {
        flex: 0 0 40%;
        padding: 0.8rem 1rem;
        background-color: #f9f9f9;
        font-weight: bold;
        font-size: 0.9rem;
    }
    
    .card-value {
        flex: 0 0 60%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .card-value.highlight {
        background-color: rgba(58, 123, 213, 0.1);
    }
    
    .card-value .yes {
        color: var(--success-color);
        font-weight: bold;
    }
    
    .card-value .no {
        color: #f44336;
    }
}

/* Felugró promóciós ablak */
.popup-prompt {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.popup-prompt.show {
    opacity: 1;
    transform: translateY(0);
}

.popup-prompt.closing {
    opacity: 0;
    transform: translateY(20px);
}

.popup-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    padding: 1.5rem;
    position: relative;
    border: 2px solid var(--promo-color);
    overflow: hidden;
}

.popup-content:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 30px 30px 0;
    border-style: solid;
    border-color: transparent var(--promo-color) transparent transparent;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
    z-index: 2;
}

.popup-close:hover {
    color: #333;
}

.popup-content h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--promo-color);
    font-size: 1.2rem;
}

.popup-content p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #555;
}

.popup-content #popup-spots {
    font-weight: bold;
    color: var(--promo-color);
}

.popup-button {
    display: block;
    background: linear-gradient(135deg, var(--promo-color) 0%, #ff6b81 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(255,71,87,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 1rem;
}

.popup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,71,87,0.3);
}

/* Sikeres feliratkozás utáni üzenet */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
}

.success-popup.show {
    opacity: 1;
}

.success-popup-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: pop-in 0.5s forwards;
}

@keyframes pop-in {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-popup-content h3 {
    margin-top: 0;
    color: var(--success-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.success-close-btn {
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.success-close-btn:hover {
    background-color: #3d9c40;
}

/* Pulzáló animáció a promóciós elemekhez */
.pulse {
    animation: pulse-animation 1s ease-in-out;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Screenreader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================= */
/* COOKIE BANNER STÍLUSOK - INTEGRÁLT VERZIÓ */
/* ========================================= */

/* Cookie Banner - WelcomeBook.hu designhoz illeszkedő */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-content {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: var(--font-family);
}

.cookie-content p:first-child {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.cookie-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cookie-btn {
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    min-width: 120px;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--success-color) 0%, #45a049 100%);
    color: white;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.cookie-btn.necessary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b4a 100%);
    color: white;
}

.cookie-btn.necessary:hover {
    background: linear-gradient(135deg, #ff6b4a 0%, #e55a42 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.cookie-btn.settings {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.settings:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    background-color: white;
    border-radius: 15px;
    max-width: 520px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 3px solid var(--primary-color);
    font-family: var(--font-family);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #eee;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    border-radius: 15px 15px 0 0;
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #6c757d;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cookie-modal-close:hover {
    color: var(--dark-color);
    background-color: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.2rem;
    background-color: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.cookie-category-header strong {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: bold;
}

.cookie-category p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Cookie Switch - modern design */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    transition: 0.4s;
    border-radius: 30px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

input:checked + .cookie-slider {
    background: linear-gradient(135deg, var(--success-color) 0%, #45a049 100%);
}

input:checked + .cookie-slider:before {
    transform: translateX(30px);
}

input:disabled + .cookie-slider {
    background: linear-gradient(135deg, var(--success-color) 0%, #45a049 100%);
    cursor: not-allowed;
    opacity: 0.7;
}

input:disabled + .cookie-slider:before {
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 100%);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 2px solid #eee;
    text-align: center;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    border-radius: 0 0 15px 15px;
}

.cookie-modal-footer .cookie-btn {
    min-width: 180px;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
}

/* Animációk */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner.show {
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.hide {
    animation: slideDown 0.3s ease-in;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-modal.show .cookie-modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

/* Focus states akadálymentesítéshez */
.cookie-btn:focus,
.cookie-modal-close:focus,
.cookie-switch input:focus + .cookie-slider {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================= */
/* RESZPONZÍV MEDIA QUERY-k */
/* ============================= */

/* Tablet és nagyobb képernyők */
@media (min-width: 480px) {
    .input-group {
        flex-direction: row;
    }
    
    .input-group input {
        border-radius: 5px 0 0 5px;
        border-right: none;
        flex: 1;
    }
    
    .input-group button {
        border-radius: 0 5px 5px 0;
        width: auto;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coming-soon {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1.1rem;
    }
    
    .discount-badge {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .promo-tiers {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-banner h3 {
        font-size: 1.6rem;
    }

    .countdown {
        font-size: 1.3rem;
    }

    .promo-button {
        font-size: 1.1rem;
        max-width: 60%;
    }
    
    .limited-offer-badge {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }
    
    /* Cookie Banner desktop nézet */
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .cookie-buttons {
        flex-shrink: 0;
        justify-content: flex-end;
    }
    
    .cookie-btn {
        white-space: nowrap;
        min-width: 140px;
    }
    
    .cookie-modal-content {
        width: 520px;
    }
    
    .cookie-banner {
        padding: 1.2rem 0;
    }
}

@media (min-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cookie-buttons {
        gap: 1rem;
    }
    
    .cookie-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.4rem;
    }
}

/* Mobilnézet javítások a felugró ablakokhoz */
@media (max-width: 767px) {
    .popup-prompt {
        left: 50%;
        right: auto;
        bottom: 10px;
        transform: translateX(-50%) translateY(20px);
        width: 90%;
        max-width: 350