/* === VARIABLES === */
:root {
    --primary: #a67c52;
    --primary-dark: #8b6b4f;
    --primary-light: #f0e7db;
    --bg: #fcfaf7;
    --bg-white: #ffffff;
    --text: #2c3e4f;
    --text-muted: #5d6f82;
    --text-light: #7f8c8d;
    --border: #e7d9cc;
    --shadow: rgba(70, 50, 30, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', 'Roboto', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === NAVBAR === */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 0.8rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.logo-text h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a5c6e;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #4a5c6e;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.menu-toggle:hover { background: var(--primary-light); }

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5c6e;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* === CONTENEDOR === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5% 4rem;
}

/* === HERO === */
.hero {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('https://images.pexels.com/photos/3641057/pexels-photo-3641057.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(166,124,82,0.85);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,0.15); color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

/* === STATS BAR === */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.2rem;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }

/* === CARDS GRID === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.2s;
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.card h3 { font-size: 1.3rem; color: #4a5c6e; margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); line-height: 1.7; }

/* === EVENTOS === */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.evento-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    gap: 0;
}

.evento-fecha {
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    text-align: center;
}

.evento-dia { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.evento-mes { font-size: 0.75rem; text-transform: uppercase; opacity: 0.9; }
.evento-info { padding: 1.2rem; flex: 1; }
.evento-info h3 { font-size: 1.1rem; color: #4a5c6e; margin-bottom: 0.4rem; }
.evento-info p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.4rem; }

.evento-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag-presencial { background: #e1f5ee; color: #0f6e56; }
.tag-online { background: #e6f1fb; color: #185fa5; }
.tag-ambas { background: var(--primary-light); color: var(--primary-dark); }

/* === VERSÍCULO === */
.versiculo {
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    text-align: center;
    border-left: 6px solid var(--primary);
    margin: 2rem 0;
}

.versiculo p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.versiculo cite { color: var(--primary-dark); font-size: 1rem; font-style: normal; font-weight: 600; }

/* === SECCIÓN TÍTULO === */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #4a5c6e;
    margin-bottom: 0.5rem;
}

.section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* === BLOG === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.2s;
}

.blog-card:hover { transform: translateY(-4px); }

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.blog-card-body { padding: 1.5rem; }
.blog-card-body h3 { font-size: 1.2rem; color: #4a5c6e; margin-bottom: 0.6rem; }
.blog-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.blog-meta { font-size: 0.85rem; color: var(--text-light); }

/* === GALERÍA === */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.galeria-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.galeria-item:hover img { transform: scale(1.05); }

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.galeria-item:hover .galeria-overlay { opacity: 1; }

/* === CONTACTO === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-info h2 { color: #4a5c6e; margin-bottom: 1.5rem; font-size: 1.8rem; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: var(--primary-light);
    border-radius: 50px;
    margin-bottom: 1rem;
}

.contact-item i { color: var(--primary); font-size: 1.2rem; width: 24px; text-align: center; }

.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-form h2 { color: #4a5c6e; margin-bottom: 1.5rem; font-size: 1.8rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; color: #4a5c6e; margin-bottom: 0.4rem; font-size: 0.95rem; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* === ALERTAS === */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin: 1rem 5%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.alert-success { background: #e1f5ee; color: #0f6e56; border: 1px solid #9fe1cb; }
.alert-error { background: #fcebeb; color: #a32d2d; border: 1px solid #f09595; }

/* === FOOTER === */
.site-footer {
    background: #2c3e4f;
    color: #e0e7ef;
    padding: 3rem 5% 1.5rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #c9b6a2;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col p, .footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.2s;
}

.footer-col a:hover { color: #c9b6a2; }
.footer-col i { color: #c9b6a2; margin-right: 6px; width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom i { color: #e74c3c; }

/* === ADMIN === */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #2c3e4f;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-logo {
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.admin-sidebar-logo h3 { color: white; font-size: 1.2rem; }
.admin-sidebar-logo span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left: 3px solid var(--primary);
}

.admin-nav a i { width: 20px; color: #c9b6a2; }

.admin-content { padding: 2rem; background: var(--bg); }

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header h1 { font-size: 1.8rem; color: #4a5c6e; }

.admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.admin-card-icon.brown { background: var(--primary-light); color: var(--primary); }
.admin-card-icon.blue { background: #e6f1fb; color: #185fa5; }
.admin-card-icon.green { background: #e1f5ee; color: #0f6e56; }
.admin-card-icon.red { background: #fcebeb; color: #a32d2d; }

.admin-card-info h3 { font-size: 1.8rem; font-weight: 700; color: #4a5c6e; }
.admin-card-info p { font-size: 0.85rem; color: var(--text-light); }

.table-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--primary-light); color: #4a5c6e; padding: 1rem 1.2rem; text-align: left; font-weight: 600; font-size: 0.9rem; }
.data-table td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg); }

.action-btns { display: flex; gap: 0.5rem; }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.85rem; border-radius: 8px; }
.btn-edit { background: #e6f1fb; color: #185fa5; }
.btn-delete { background: #fcebeb; color: #a32d2d; }
.btn-edit:hover { background: #185fa5; color: white; }
.btn-delete:hover { background: #a32d2d; color: white; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .menu-toggle { display: flex; align-items: center; justify-content: center; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid var(--primary-light);
        box-shadow: 0 8px 20px var(--shadow);
        gap: 4px;
    }

    .nav-links.show { display: flex; }
    .nav-links a { width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius); }

    .navbar { position: relative; flex-wrap: wrap; }

    .contact-grid { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { height: auto; position: relative; }
}

@media (max-width: 600px) {
    .hero { padding: 3rem 1.5rem; border-radius: var(--radius-lg); }
    .stats-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .versiculo { padding: 1.5rem; border-radius: var(--radius-lg); }
}

@media (max-width: 400px) {
    .footer-grid { grid-template-columns: 1fr; }
    .logo-text span { display: none; }
}

/* === PASTOR VIRTUAL WIDGET === */
.pastor-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.2s;
    padding: 0;
}

.pastor-toggle:hover { transform: scale(1.1); }
.pastor-toggle img { width: 38px; height: 38px; object-fit: contain; }

.pastor-container {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 360px;
    max-height: 520px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.pastor-container.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.pastor-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pastor-header h3 {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pastor-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pastor-close:hover { background: rgba(255,255,255,0.3); }

.pastor-chat {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pastor-welcome {
    text-align: center;
    padding: 1rem 0.5rem;
    color: var(--text-muted);
}

.pastor-welcome i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: block;
}

.pastor-welcome h4 { color: #4a5c6e; margin-bottom: 0.4rem; font-size: 1rem; }
.pastor-welcome p { font-size: 0.85rem; line-height: 1.5; }
.pastor-welcome small { font-size: 0.8rem; color: var(--primary-dark); margin-top: 0.5rem; display: block; }

.pastor-msg {
    max-width: 85%;
    padding: 0.7rem 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pastor-msg.user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.pastor-msg.pastor {
    background: var(--bg);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border);
}

.pastor-msg.error {
    background: #fcebeb;
    color: #a32d2d;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.pastor-typing {
    display: flex;
    gap: 4px;
    padding: 0.8rem 1rem;
    background: var(--bg);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    border: 1px solid var(--border);
}

.pastor-typing span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: typing 1.2s infinite;
}

.pastor-typing span:nth-child(2) { animation-delay: 0.2s; }
.pastor-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.pastor-input-area {
    padding: 0.8rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.5rem;
}

.pastor-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s;
}

.pastor-input:focus { outline: none; border-color: var(--primary); }

.pastor-send {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.pastor-send:hover { background: var(--primary-dark); }
.pastor-send:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 480px) {
    .pastor-container { width: calc(100vw - 2rem); right: 1rem; bottom: 5rem; }
    .pastor-toggle { bottom: 1rem; right: 1rem; }
}

/* === FOOTER PARTNERS === */
.footer-partners {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

/* === MODAL FOTOS === */
.modal-fotos img {
    width: 100% !important;
    aspect-ratio: unset !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: var(--radius) !important;
    max-height: 500px !important;
}

/* === GALERIA ADMIN === */
.admin-content .galeria-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e4f;
    color: #e0e7ef;
    padding: 1.2rem 5%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-banner a {
    color: #c9b6a2;
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cookie-accept {
    background: #a67c52;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.cookie-accept:hover { background: #8b6b4f; }

.cookie-reject {
    background: transparent;
    color: #e0e7ef;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.cookie-reject:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-accept, .cookie-reject { flex: 1; text-align: center; }
}
