/* ============================================
   netbezpecne.cz – Custom CSS
   ============================================ */

:root {
    --primary: #0d1b2a;
    --primary-light: #1a2f47;
    --accent: #00b4d8;
    --accent-dark: #0090b0;
    --success: #2dc653;
    --danger: #e63946;
    --warning: #f4a261;
    --bg: #f0f4f8;
    --surface: #ffffff;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: 0.2s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 740px; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-hero { background: #fff; color: var(--primary); font-size: 1.1rem; padding: 16px 40px; }
.btn-hero:hover { background: var(--accent); color: #fff; }
.btn-full { display: block; width: 100%; }
.btn-disabled { background: #ccc; color: #888; cursor: not-allowed; }
.btn-disabled:hover { transform: none; }
.btn-secondary { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c42d39; color: #fff; }
.btn-green { background: var(--success); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; border-radius: 6px; }

/* ---- NAVBAR ---- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container {
    max-width: 1140px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    color: #fff; font-size: 1.25rem; font-weight: 500;
}
.nav-logo:hover { text-decoration: none; color: var(--accent); }
.nav-logo strong { color: var(--accent); }
.logo-shield { font-size: 1.4rem; }
.nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none;
}
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.95rem; transition: color var(--transition); }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all var(--transition); }

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #162a45 60%, #0a3d62 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 100px 20px 60px;
    position: relative; overflow: hidden;
    gap: 60px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; max-width: 600px; }
.hero-badge {
    display: inline-block;
    background: rgba(0,180,216,0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 16px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 24px; letter-spacing: 0.5px;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; color: #fff;
    line-height: 1.1; margin-bottom: 20px;
}
.hero-subtitle { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 32px; max-width: 500px; }
.hero-price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 32px; }
.price-old { color: rgba(255,255,255,0.5); text-decoration: line-through; font-size: 1.4rem; }
.price-new { color: var(--accent); font-size: 2.5rem; font-weight: 800; }
.price-label { color: rgba(255,255,255,0.6); font-size: 1rem; }
.hero-guarantee {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 20px;
}
.guarantee-icon { font-size: 1.1rem; }
.hero-visual {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
}
.shield-big {
    font-size: 8rem; opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ---- SECTIONS ---- */
.section { padding: 80px 20px; }
.section-light { background: var(--bg); }
.section-dark { background: var(--primary); }
.section-cena { background: linear-gradient(135deg, #f0f4f8 0%, #e8f4f8 100%); }
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700; text-align: center;
    margin-bottom: 48px; color: var(--primary);
}
.section-title-light { color: #fff; }

/* ---- CARDS ---- */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
    background: var(--surface); border-radius: var(--radius);
    padding: 32px 24px; text-align: center;
    box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-highlight { border-top: 4px solid var(--accent); }
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--primary); }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---- COURSE BLOCKS ---- */
.blocks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; margin-bottom: 40px; }
.block-card {
    background: rgba(255,255,255,0.08); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.12); padding: 32px;
    color: rgba(255,255,255,0.9);
}
.block-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.block-num {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800; flex-shrink: 0;
}
.block-header h3 { color: #fff; font-size: 1.15rem; }
.block-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.block-list li {
    padding-left: 16px;
    border-left: 3px solid var(--accent);
    font-size: 0.95rem; line-height: 1.5;
}
.block-list li strong { color: #fff; display: block; margin-bottom: 4px; }
.diploma-note {
    text-align: center; color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 20px;
    font-size: 1rem; border: 1px solid rgba(255,255,255,0.12);
}

/* ---- PRICING ---- */
.pricing-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; max-width: 900px; margin: 0 auto; }
.pricing-card {
    background: var(--surface); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 40px;
    border-top: 5px solid var(--accent); position: relative;
}
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    padding: 4px 20px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 700;
    white-space: nowrap;
}
.pricing-amount { text-align: center; margin-bottom: 32px; margin-top: 16px; }
.price-old-big { color: var(--text-muted); text-decoration: line-through; font-size: 1.5rem; }
.price-current-big { font-size: 3.5rem; font-weight: 800; color: var(--primary); }
.price-per { color: var(--text-muted); font-size: 0.9rem; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.guarantee-block {
    background: var(--surface); border-radius: var(--radius);
    padding: 40px 32px; text-align: center; box-shadow: var(--shadow);
    border: 2px solid var(--success);
}
.guarantee-icon-big { font-size: 3rem; margin-bottom: 16px; }
.guarantee-block h3 { color: var(--primary); font-size: 1.3rem; margin-bottom: 12px; }
.guarantee-block p { color: var(--text-muted); font-size: 0.95rem; }

/* ---- DATES ---- */
.dates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.date-card {
    background: var(--surface); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
    display: flex; flex-direction: column; gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.date-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.date-full { border-left-color: #ccc; opacity: 0.7; }
.date-top { display: flex; justify-content: space-between; align-items: baseline; }
.date-date { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.date-time { color: var(--text-muted); font-size: 0.95rem; }
.date-type { color: var(--accent); font-size: 0.9rem; font-weight: 600; }
.date-location { color: var(--text-muted); font-size: 0.85rem; }
.spots-free { color: var(--success); font-weight: 600; font-size: 0.9rem; }
.spots-full { color: var(--danger); font-weight: 600; font-size: 0.9rem; }
.no-dates {
    text-align: center; padding: 60px 20px;
    color: var(--text-muted); font-size: 1.1rem;
    background: var(--surface); border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ---- LECTURER ---- */
.lecturer-block { max-width: 600px; margin: 0 auto; }
.lecturer-info { color: rgba(255,255,255,0.85); }
.lecturer-info h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }

/* ---- REGISTRATION FORM ---- */
.page-title { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.back-link { color: var(--text-muted); font-size: 0.9rem; display: inline-block; margin-bottom: 24px; }
.back-link:hover { color: var(--accent); }
.reg-date-info {
    background: var(--surface); border-radius: var(--radius);
    padding: 24px; margin-bottom: 32px; box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
}
.reg-date-row { padding: 6px 0; color: var(--text); }
.alert { border-radius: var(--radius); padding: 16px 20px; margin-bottom: 20px; font-weight: 600; }
.alert-error { background: #fff0f0; color: var(--danger); border: 1px solid var(--danger); }

/* Nette form styles */
form .form-group, form .pair { margin-bottom: 20px; }
form label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--primary); }
form input[type=text], form input[type=email], form input[type=password],
form input[type=tel], form input[type=number], form input[type=datetime-local],
form textarea, form select {
    width: 100%; padding: 12px 16px;
    border: 2px solid var(--border); border-radius: 8px;
    font-size: 1rem; background: var(--surface); color: var(--text);
    transition: border-color var(--transition);
}
form input:focus, form textarea:focus, form select:focus {
    outline: none; border-color: var(--accent);
}
form textarea { min-height: 100px; resize: vertical; }
form .error { color: var(--danger); font-size: 0.85rem; margin-top: 4px; }
form input[type=checkbox] { width: auto; margin-right: 8px; }
form .checkbox { display: flex; align-items: center; gap: 8px; }
form input[type=submit], form button[type=submit] {
    background: var(--accent); color: #fff; border: none;
    padding: 14px 32px; border-radius: 8px; font-size: 1rem;
    font-weight: 700; cursor: pointer; transition: background var(--transition);
    width: 100%; margin-top: 8px;
}
form input[type=submit]:hover, form button[type=submit]:hover { background: var(--accent-dark); }

/* ---- PAYMENT PAGE ---- */
.payment-success-banner {
    display: flex; align-items: center; gap: 20px;
    background: #f0fff4; border: 2px solid var(--success);
    border-radius: var(--radius); padding: 24px; margin-bottom: 32px;
}
.success-icon { font-size: 3rem; }
.payment-success-banner h2 { color: var(--success); margin-bottom: 4px; }
.payment-card {
    background: var(--surface); border-radius: var(--radius);
    padding: 32px; box-shadow: var(--shadow); margin-bottom: 24px;
}
.payment-card h3 { color: var(--primary); font-size: 1.3rem; margin-bottom: 12px; }
.payment-qr-section { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; margin: 24px 0; }
.qr-label { font-weight: 600; margin-bottom: 12px; color: var(--primary); }
.qr-image { width: 200px; height: 200px; border: 1px solid var(--border); border-radius: 8px; }
.qr-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }
.payment-table { width: 100%; border-collapse: collapse; }
.payment-table th, .payment-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.payment-table th { color: var(--text-muted); font-size: 0.9rem; width: 160px; }
.vs-highlight { color: var(--accent); font-size: 1.2rem; letter-spacing: 2px; }
.payment-info-box {
    background: var(--bg); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0;
}
.payment-info-box h4 { margin-bottom: 12px; color: var(--primary); }
.payment-info-box ol { padding-left: 20px; }
.payment-info-box li { margin-bottom: 8px; color: var(--text-muted); }
.guarantee-small {
    text-align: center; color: var(--text-muted);
    padding: 12px; border-top: 1px solid var(--border); font-size: 0.9rem;
}
.reg-info {
    background: var(--surface); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow);
}
.reg-info p { margin-bottom: 8px; }

/* ---- LOGIN ---- */
.login-card {
    max-width: 420px; margin: 60px auto;
    background: var(--surface); border-radius: var(--radius);
    padding: 48px; box-shadow: var(--shadow-lg); text-align: center;
}
.login-logo { font-size: 1.3rem; margin-bottom: 24px; color: var(--primary); }
.login-card h1 { margin-bottom: 32px; color: var(--primary); font-size: 1.8rem; }

/* ---- FOOTER ---- */
.site-footer {
    background: var(--primary); color: rgba(255,255,255,0.7);
    padding: 40px 20px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.footer-logo { font-size: 1.2rem; color: #fff; }
.footer-logo strong { color: var(--accent); }
.footer-info a { color: var(--accent); }
.footer-copy { font-size: 0.85rem; }

/* ============================================
   ADMIN STYLES
   ============================================ */

.admin-body { background: #f1f5f9; }

.admin-wrapper { display: flex; min-height: 100vh; }

.admin-sidebar {
    width: 240px; background: var(--primary); color: #fff;
    display: flex; flex-direction: column; padding: 24px 0; flex-shrink: 0;
    position: sticky; top: 0; height: 100vh; overflow-y: auto;
}

.admin-logo {
    padding: 0 24px 24px; font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.admin-logo strong { color: var(--accent); }

.admin-nav { display: flex; flex-direction: column; gap: 4px; padding: 0 12px; }
.admin-nav a {
    display: block; padding: 10px 14px; border-radius: 8px;
    color: rgba(255,255,255,0.75); font-size: 0.95rem;
    transition: all var(--transition); text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }
.admin-nav a.active { background: var(--accent); color: #fff; }
.admin-nav-logout { margin-top: auto; color: rgba(255,255,255,0.5) !important; }

.admin-main { flex: 1; overflow: auto; }
.admin-content { padding: 32px; max-width: 1400px; }
.admin-page-title { font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 28px; }

/* Admin stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
    background: var(--surface); border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow); border-left: 5px solid var(--accent);
}
.stat-pending { border-left-color: var(--warning); }
.stat-paid { border-left-color: var(--success); }
.stat-revenue { border-left-color: var(--primary); }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* Admin sections */
.admin-sections-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; }
.admin-section-box { background: var(--surface); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.admin-section-box h2 { font-size: 1.1rem; color: var(--primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.empty-note { color: var(--text-muted); font-style: italic; text-align: center; padding: 20px; }

/* Admin table */
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th {
    background: #f8fafc; padding: 10px 12px; text-align: left;
    color: var(--text-muted); font-weight: 600; border-bottom: 2px solid var(--border);
    white-space: nowrap;
}
.admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:hover td { background: #f8fafc; }
.admin-table .actions { white-space: nowrap; display: flex; gap: 6px; flex-wrap: wrap; }
.row-inactive td { opacity: 0.6; }
.table-responsive { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.table-responsive .admin-table { box-shadow: none; }

/* Status badges */
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 700; }
.status-pending { background: #fff8e1; color: #b45309; }
.status-paid { background: #f0fff4; color: #166534; }
.status-cancelled { background: #fff0f0; color: #991b1b; }
.status-refunded { background: #eef2ff; color: #3730a3; }
.status-eligible { background: #ecfeff; color: #0e7490; }

/* Badges */
.badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 700; }
.badge-green { background: #f0fff4; color: #166534; }
.badge-gray { background: #f1f5f9; color: #64748b; }

/* Flash messages */
.flash { padding: 14px 20px; border-radius: 8px; margin-bottom: 20px; font-weight: 600; }
.flash-success { background: #f0fff4; color: #166534; border: 1px solid #bbf7d0; }
.flash-error { background: #fff0f0; color: #991b1b; border: 1px solid #fecaca; }

/* Toolbar */
.admin-toolbar {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-btn {
    padding: 6px 14px; border-radius: 20px; font-size: 0.85rem;
    background: var(--surface); border: 2px solid var(--border); color: var(--text);
    transition: all var(--transition); cursor: pointer; text-decoration: none;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--accent); background: #e8f8fb; text-decoration: none; }

/* Settings */
.settings-wrapper { background: var(--surface); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); max-width: 800px; }

/* QR Modal */
.modal {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.modal-box {
    background: var(--surface); border-radius: var(--radius);
    max-width: 560px; width: 100%; box-shadow: var(--shadow-lg);
}
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.modal-header h3 { color: var(--primary); }
.modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); line-height: 1; }
.modal-body { padding: 24px; }
.qr-result { margin-top: 20px; background: var(--bg); border-radius: 8px; padding: 16px; }
.qr-result h4 { margin-bottom: 12px; color: var(--primary); }

/* Admin form groups */
fieldset { border: 1px solid var(--border); border-radius: 8px; padding: 20px; margin-bottom: 24px; }
legend { padding: 0 8px; font-weight: 700; color: var(--primary); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .pricing-wrapper { grid-template-columns: 1fr; }
    .admin-sections-grid { grid-template-columns: 1fr; }
    .payment-qr-section { grid-template-columns: 1fr; }
    .blocks-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none; position: absolute; top: 64px; left: 0; right: 0;
        background: var(--primary); flex-direction: column; padding: 20px;
        gap: 16px; border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.open { display: flex; }
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-inner { max-width: 100%; }
    .hero-guarantee { justify-content: center; }
    .hero-visual { display: none; }
    .admin-sidebar { width: 200px; }
    .admin-content { padding: 16px; }
}

@media (max-width: 600px) {
    .admin-wrapper { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: static; flex-direction: row; flex-wrap: wrap; padding: 12px; }
    .admin-nav { flex-direction: row; flex-wrap: wrap; }
    .admin-logo { border-bottom: none; padding-bottom: 0; }
    .qr-image { width: 160px; height: 160px; }
}

/* Promo popup */
.promo-popup {
    position: fixed; inset: 0; z-index: 3000; display: none;
    background: rgba(0,0,0,0.6); align-items: center; justify-content: center; padding: 20px;
}
.promo-popup.show { display: flex; }
.promo-popup-box {
    position: relative; background: var(--surface); border-radius: var(--radius);
    max-width: 420px; width: 100%; padding: 36px 28px 28px; text-align: center;
    box-shadow: var(--shadow-lg); animation: promoPopIn 0.25s ease;
}
@keyframes promoPopIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.promo-popup-close {
    position: absolute; top: 10px; right: 14px; background: none; border: none;
    font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--text-muted);
}
.promo-popup-icon { font-size: 2.5rem; margin-bottom: 8px; }
.promo-popup-box h3 { color: var(--primary); margin-bottom: 10px; }
.promo-popup-box p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.promo-popup-box p strong { color: var(--accent-dark); }

/* Cookie consent banner */
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 2500; display: none;
    background: var(--primary); color: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.show { display: block; }
.cookie-banner-inner {
    max-width: 1100px; margin: 0 auto; padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; font-size: 0.92rem; color: rgba(255,255,255,0.9); flex: 1 1 400px; }
.cookie-banner-inner a { color: var(--accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
