/* ====== Hardleers Cookie Banner Styles ====== */
/* Minimale footprint, optimaal gecachet, theme-aware */

.hardleers-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #050708;
    color: #e6fbe9;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8), 0 -2px 0 #00ff66;
    z-index: 10000;
    border-top: 2px solid #00ff66;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Verdana, sans-serif;
    display: none;
}

.hardleers-cookie-banner.hardleers-cookie-banner--visible {
    display: block;
}

.hardleers-cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

.hardleers-cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.hardleers-cookie-banner-text h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    color: #00ff66;
    font-weight: 600;
    text-shadow: 0 0 4px rgba(0, 255, 102, 0.5);
}

.hardleers-cookie-banner-text p {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #8fd6a4;
}

.hardleers-cookie-banner-text p:last-of-type {
    margin-bottom: 0;
}

.hardleers-cookie-banner-text a {
    color: #66ff99;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.hardleers-cookie-banner-text a:hover {
    color: #a6ffbf;
}

.hardleers-cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
    align-items: flex-start;
}

.hardleers-cookie-btn {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
    text-align: center;
}

.hardleers-cookie-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 255, 102, 0.3);
}

.hardleers-cookie-btn:active {
    transform: translateY(0);
}

.hardleers-cookie-btn-accept {
    background: #00ff66;
    color: #000;
}

.hardleers-cookie-btn-accept:hover {
    background: #00ff99;
    color: #000;
}

.hardleers-cookie-btn-functional {
    background: #0aa84a;
    color: #e6fbe9;
}

.hardleers-cookie-btn-functional:hover {
    background: #0cc85a;
    color: #fff;
}

.hardleers-cookie-btn-reject {
    background: #133322;
    color: #8fd6a4;
    border: 1px solid #0aa84a;
}

.hardleers-cookie-btn-reject:hover {
    background: #1a4a2e;
    color: #a6ffbf;
    border-color: #00ff66;
}

.hardleers-cookie-btn-info {
    background: transparent;
    color: #66ff99;
    border: 1px solid #0aa84a;
    text-decoration: none;
    display: inline-block;
}

.hardleers-cookie-btn-info:hover {
    background: rgba(0, 255, 102, 0.1);
    color: #a6ffbf;
    border-color: #00ff66;
}

/* ====== Light Theme Override ====== */
body[data-theme="light"] .hardleers-cookie-banner {
    background: #fff;
    color: #1a1a1a;
    border-top-color: #008f4f;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15), 0 -2px 0 #008f4f;
}

body[data-theme="light"] .hardleers-cookie-banner-text h3 {
    color: #008f4f;
    text-shadow: none;
}

body[data-theme="light"] .hardleers-cookie-banner-text p {
    color: #333;
}

body[data-theme="light"] .hardleers-cookie-banner-text a {
    color: #008f4f;
}

body[data-theme="light"] .hardleers-cookie-banner-text a:hover {
    color: #00ff66;
}

body[data-theme="light"] .hardleers-cookie-btn-accept {
    background: #008f4f;
    color: #fff;
}

body[data-theme="light"] .hardleers-cookie-btn-accept:hover {
    background: #00ff66;
    color: #000;
}

body[data-theme="light"] .hardleers-cookie-btn-functional {
    background: #0aa84a;
    color: #fff;
}

body[data-theme="light"] .hardleers-cookie-btn-functional:hover {
    background: #0cc85a;
}

body[data-theme="light"] .hardleers-cookie-btn-reject {
    background: #f5f5f5;
    color: #1a1a1a;
    border-color: #ccc;
}

body[data-theme="light"] .hardleers-cookie-btn-reject:hover {
    background: #e5e5e5;
    border-color: #999;
}

body[data-theme="light"] .hardleers-cookie-btn-info {
    color: #008f4f;
    border-color: #0aa84a;
}

body[data-theme="light"] .hardleers-cookie-btn-info:hover {
    background: rgba(0, 143, 79, 0.1);
    color: #00ff66;
    border-color: #008f4f;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
    .hardleers-cookie-banner {
        padding: 1rem;
    }
    
    .hardleers-cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hardleers-cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hardleers-cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hardleers-cookie-banner {
        padding: 0.875rem;
    }
    
    .hardleers-cookie-banner-text h3 {
        font-size: 1.1rem;
    }
    
    .hardleers-cookie-banner-text p {
        font-size: 0.875rem;
    }
    
    .hardleers-cookie-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
}

