/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a2a2b;
    --accent: #ff6b35;
    --accent-light: #ffa07a;
    --accent-dark: #e04e1a;
    --gold: #ffb347;
    --gold-dark: #e89420;
    --pink: #ff8fa3;
    --pink-light: #ffc9d1;
    --mint: #7dd3a0;
    --mint-light: #c4f0d6;
    --lavender: #b19cd9;
    --sky: #6ec6ff;
    --cream: #fff8f0;
    --bg: #fff5ec;
    --bg-white: #ffffff;
    --text: #2c2c3a;
    --text-light: #6b6b7d;
    --shadow: 0 10px 40px rgba(255, 107, 53, 0.08);
    --shadow-hover: 0 20px 60px rgba(255, 107, 53, 0.15);
    --radius: 32px;
    --radius-sm: 16px;
    --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== JELSZÓ ZÁR ===== */
#gateLock {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 50%, #e04e1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    overflow: hidden;
}

#gateLock.hidden {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.gate-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobFloat 15s ease-in-out infinite;
}

.gate-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ffb347, transparent 70%);
    top: -10%;
    left: -10%;
}

.gate-blob.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff8fa3, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.gate-blob.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7dd3a0, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-40px, 40px) scale(0.9); }
}

.gate-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 48px 56px;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    animation: gateSlide 0.6s ease;
}

@keyframes gateSlide {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.gate-logo-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.gate-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px dashed rgba(255, 107, 53, 0.4);
    animation: ringSpin 8s linear infinite;
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

.gate-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #e04e1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.gate-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.gate-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gate-form input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 100px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    background: rgba(255, 248, 240, 0.5);
    font-family: var(--font);
    font-size: 1rem;
    text-align: center;
    letter-spacing: 2px;
    transition: all var(--transition);
}

.gate-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.gate-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 100px;
    border: none;
    background: linear-gradient(135deg, #ff6b35, #e04e1a);
    color: white;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.gate-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 12px;
    min-height: 20px;
    font-weight: 500;
}

@keyframes gateShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.gate-content.shake {
    animation: gateShake 0.4s ease;
}

/* ===== BETÖLTŐ ===== */
#loaderOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #fff5ec 0%, #ffe4d1 50%, #ffd1b8 100%);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

#loaderOverlay.active {
    display: flex;
}

#loaderOverlay.hidden {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.loader-container {
    text-align: center;
    padding: 30px;
}

.loader-logo-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 70%);
    animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.loader-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    animation: logoFloat 2s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.3);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.loader-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ffb347;
    border-bottom-color: #ff6b35;
    animation: ringSpin 2s linear infinite;
}

.loader-title {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #ff6b35, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.loader-progress-bar {
    width: 240px;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    margin: 0 auto 8px;
    overflow: hidden;
}

.loader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6b35, #ffb347, #ff6b35);
    border-radius: 10px;
    transition: width 0.2s ease;
}

.loader-progress-text {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* ===== MOZGÓ HÁTTÉR ===== */
.bg-scene {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    animation: bgFadeIn 1.5s ease 2.5s forwards;
}

@keyframes bgFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bg-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: floatLayer 20s ease-in-out infinite alternate;
}

.layer-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.20), transparent 70%);
    animation-duration: 25s;
}

.layer-2 {
    width: 500px;
    height: 500px;
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 143, 163, 0.18), transparent 70%);
    animation-duration: 30s;
    animation-delay: -5s;
}

.layer-3 {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 40%;
    background: radial-gradient(circle, rgba(125, 211, 160, 0.15), transparent 70%);
    animation-duration: 22s;
    animation-delay: -10s;
}

.layer-4 {
    width: 350px;
    height: 350px;
    bottom: 30%;
    left: 20%;
    background: radial-gradient(circle, rgba(177, 156, 217, 0.15), transparent 70%);
    animation-duration: 26s;
    animation-delay: -7s;
}

.layer-5 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 20%;
    background: radial-gradient(circle, rgba(110, 198, 255, 0.15), transparent 70%);
    animation-duration: 20s;
    animation-delay: -3s;
}

.layer-6 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 60%;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.18), transparent 70%);
    animation-duration: 24s;
    animation-delay: -12s;
}

@keyframes floatLayer {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(60px, -40px) scale(1.1) rotate(10deg); }
    50% { transform: translate(-40px, 60px) scale(0.9) rotate(-5deg); }
    75% { transform: translate(70px, 30px) scale(1.05) rotate(15deg); }
    100% { transform: translate(-30px, -60px) scale(0.95) rotate(-10deg); }
}

.bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.06) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    animation: dotsMove 60s linear infinite;
}

@keyframes dotsMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* ===== APP ===== */
#app {
    opacity: 0;
    animation: appFadeIn 0.6s ease 2.2s forwards;
    position: relative;
    z-index: 2;
}

@keyframes appFadeIn {
    from { opacity: 0; transform: translateY(15px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #ff6b35, #ffb347); border-radius: 10px; }

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.7rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #ff6b35 0%, #e04e1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-slogan {
    font-size: 0.65rem;
    font-weight: 600;
    font-family: var(--font);
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    background: none;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255, 107, 53, 0.08);
}

.header-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6b35;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.brand-owner {
    background: linear-gradient(135deg, #ffb347, #ff6b35);
    padding: 6px 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.brand-owner i {
    color: #fff8e7;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 179, 71, 0.04));
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.nav-links a:hover {
    background: linear-gradient(135deg, #ff6b35, #ffb347);
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
}

.nav-links a:hover i {
    color: white;
}

.nav-links a i {
    color: var(--accent);
    transition: color 0.3s;
}

/* ===== HERO ===== */
.hero {
    padding: 60px 0 40px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff0e6, #ffe4d1);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
}

.badge-icon {
    font-size: 1.1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 900;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 16px;
    color: var(--text);
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #ff6b35, #ffb347, #ff8fa3);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS - SZÍNES ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border: none;
    border-radius: 100px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    overflow: hidden;
}

.btn-map {
    background: linear-gradient(135deg, #7dd3a0, #4fb87a);
    color: white;
    box-shadow: 0 10px 30px rgba(125, 211, 160, 0.35);
}

.btn-map:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 45px rgba(125, 211, 160, 0.45);
}

.btn-map i { color: #e8fff0; }

.btn-county {
    background: linear-gradient(135deg, #6ec6ff, #3a9ee0);
    color: white;
    box-shadow: 0 10px 30px rgba(110, 198, 255, 0.35);
}

.btn-county:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 45px rgba(110, 198, 255, 0.45);
}

.btn-county i { color: #e8f6ff; }

.btn-admin-gold {
    background: linear-gradient(135deg, #ffb347, #ff6b35);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.35);
}

.btn-admin-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 45px rgba(255, 107, 53, 0.45);
}

.btn-admin-gold i { color: #fff8e7; }

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #e04e1a);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 107, 53, 0.15);
    color: var(--text);
}

.btn-outline:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.8rem;
    gap: 6px;
}

.btn-danger {
    background: linear-gradient(135deg, #ff4757, #d63447);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.35);
}

.btn-success {
    background: linear-gradient(135deg, #7dd3a0, #4fb87a);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(125, 211, 160, 0.35);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== COUNTY ===== */
.county-section {
    padding: 0 0 16px;
    display: none;
}

.county-section.visible {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.county-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 4px 0;
}

.county-btn {
    padding: 9px 22px;
    border-radius: 100px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text);
}

.county-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
    border-color: var(--accent);
}

.county-btn.active {
    background: linear-gradient(135deg, #ff6b35, #ffb347);
    color: white;
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

/* ===== RESTAURANTS ===== */
.restaurants-section {
    padding: 20px 0 60px;
}

.restaurants-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.restaurants-title {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.title-icon {
    font-size: 1.8rem;
    animation: bounce 3s ease-in-out infinite;
}

.restaurants-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text);
}

.restaurant-count {
    background: linear-gradient(135deg, #fff0e6, #ffe4d1);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-dark);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
    }
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--accent);
    opacity: 0.3;
    display: block;
    margin-bottom: 16px;
}

/* ===== RESTAURANT CARD ===== */
.restaurant-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 28px;
    border: 2px solid rgba(255, 107, 53, 0.08);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.restaurant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffb347, #ff8fa3, #b19cd9);
    background-size: 200% 100%;
    animation: rainbowSlide 3s linear infinite;
}

@keyframes rainbowSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.restaurant-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.15);
    background: white;
    border-color: rgba(255, 107, 53, 0.2);
}

.restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.restaurant-name {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text);
}

.restaurant-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-dark);
    background: linear-gradient(135deg, #fff0e6, #ffe4d1);
    padding: 4px 14px;
    border-radius: 100px;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.restaurant-meta i {
    color: var(--accent);
}

/* ===== ÉTTEREM ADATOK ===== */
.restaurant-details {
    margin: 12px 0 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff8f0, #fff0e6);
    border-radius: var(--radius-sm);
    border-left: 4px solid #ffb347;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    font-size: 0.88rem;
    color: var(--text-light);
}

.detail-row i {
    width: 20px;
    color: var(--accent);
    font-size: 0.85rem;
}

.detail-row strong {
    color: var(--text);
    font-weight: 700;
    min-width: 75px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-row a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

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

.detail-edit input {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 107, 53, 0.1);
    font-family: var(--font);
    font-size: 0.85rem;
    background: white;
    margin-bottom: 6px;
    transition: all var(--transition);
}

.detail-edit input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.08);
}

.detail-actions {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

/* ===== LEÍRÁS ===== */
.restaurant-description {
    margin: 12px 0 14px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f0f9f5, #e0f4ea);
    border-radius: var(--radius-sm);
    border-left: 4px solid #7dd3a0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.restaurant-description .description-label {
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4fb87a;
}

.restaurant-description .description-text {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.restaurant-description .description-edit textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(125, 211, 160, 0.15);
    font-family: var(--font);
    font-size: 0.85rem;
    resize: vertical;
    min-height: 70px;
    background: white;
    transition: all var(--transition);
}

.restaurant-description .description-edit textarea:focus {
    outline: none;
    border-color: #7dd3a0;
    box-shadow: 0 0 0 4px rgba(125, 211, 160, 0.1);
}

/* ===== MENU UPLOAD ===== */
.menu-upload-area {
    margin-top: 14px;
    background: linear-gradient(135deg, #f0f5ff, #e6eeff);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 2px dashed rgba(110, 198, 255, 0.3);
    transition: all var(--transition);
}

.menu-upload-area:hover {
    border-color: #6ec6ff;
    background: linear-gradient(135deg, #e6eeff, #dde8ff);
}

.menu-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-preview img,
.menu-preview iframe {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(110, 198, 255, 0.15);
}

.menu-placeholder {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.menu-placeholder i {
    font-size: 2.2rem;
    color: #6ec6ff;
    opacity: 0.4;
    display: block;
    margin-bottom: 8px;
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6ec6ff, #3a9ee0);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
    color: white;
    box-shadow: 0 6px 20px rgba(110, 198, 255, 0.3);
}

.file-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(110, 198, 255, 0.4);
}

.file-label i {
    color: white;
}

input[type="file"] {
    display: none;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* ===== ADMIN PANEL ===== */
.admin-panel {
    display: none;
    background: linear-gradient(135deg, #fff8f0, #fff0e6);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 12px 0 32px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.08);
}

.admin-panel.visible {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header h3 i {
    color: var(--accent);
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.admin-users {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-user-item {
    background: white;
    padding: 8px 18px 8px 22px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.06);
}

.admin-user-item .badge {
    background: linear-gradient(135deg, #ffb347, #ff6b35);
    color: white;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-box {
    background: white;
    border-radius: var(--radius);
    padding: 36px 44px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(255, 107, 53, 0.25);
    border: 2px solid rgba(255, 107, 53, 0.1);
    max-height: 85vh;
    overflow-y: auto;
    animation: modalSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlide {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-large {
    max-width: 700px;
    padding: 40px 48px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.08);
}

.modal-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h2 i {
    color: var(--accent);
}

.modal-close {
    background: rgba(255, 107, 53, 0.08);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--accent);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: var(--accent);
    color: white;
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--accent);
    width: 18px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 100px;
    border: 2px solid rgba(255, 107, 53, 0.12);
    background: #fff8f0;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

/* ===== ÁSZF ===== */
.aszf-content {
    padding: 4px 0;
}

.aszf-section {
    margin-bottom: 24px;
}

.aszf-section ul {
    padding-left: 20px;
    margin: 8px 0 4px 10px;
    color: var(--text-light);
    line-height: 1.8;
}

.aszf-section ul li {
    list-style-type: none;
    position: relative;
    padding-left: 20px;
}

.aszf-section ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.85rem;
}

.aszf-section p {
    margin-bottom: 4px;
}

.aszf-section strong {
    color: var(--text);
}

.aszf-section + .aszf-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px dashed rgba(255, 107, 53, 0.1);
}

.aszf-section h3 {
    font-size: 1.05rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aszf-section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, #ff6b35, #ffb347);
    border-radius: 4px;
    flex-shrink: 0;
}

.aszf-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 107, 53, 0.08);
    color: var(--text-light);
    font-size: 0.85rem;
    display: grid;
    gap: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .brand-logo { font-size: 1.3rem; }
    .brand-slogan { font-size: 0.55rem; letter-spacing: 2px; }
    .brand-owner { font-size: 0.7rem; padding: 4px 12px; }
    .modal-box { padding: 28px 24px; }
    .modal-large { padding: 28px 24px; }
    .restaurant-card { padding: 20px; }
    .admin-panel { padding: 20px; }
    .admin-actions .btn { width: 100%; justify-content: center; }
    .header .container { flex-direction: column; text-align: center; }
    .header-logo { width: 40px; height: 40px; }
    .gate-content { padding: 32px 28px; }
    .gate-title { font-size: 1.8rem; }
    .detail-row { font-size: 0.8rem; flex-wrap: wrap; }
    .detail-row strong { min-width: 60px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.9rem; }
    .county-btn { padding: 6px 14px; font-size: 0.75rem; }
    .modal-header h2 { font-size: 1.15rem; }
    .restaurant-details { padding: 12px 14px; }
    .detail-row { font-size: 0.75rem; gap: 6px; }
    .detail-row strong { min-width: 50px; font-size: 0.65rem; }
    .title-icon { font-size: 1.3rem; }
    .restaurants-header h2 { font-size: 1.4rem; }
    .gate-content { padding: 28px 20px; }
    .gate-title { font-size: 1.5rem; }
    .gate-logo { width: 80px; height: 80px; }
}