/* =========================================
   COOKIE CONSENT BANNER
   ========================================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark, #21333E);
    color: var(--color-bg, #fef3d8);
    padding: 0;
    z-index: 99998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--color-bg, #fef3d8);
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-text a:hover {
    opacity: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--color-green, #609E7C);
    color: var(--color-bg, #fef3d8);
}

.cookie-btn-accept:hover {
    background: #4e8a6a;
    transform: translateY(-1px);
}

.cookie-btn-refuse {
    background: transparent;
    color: var(--color-bg, #fef3d8);
    border: 1px solid rgba(254, 243, 216, 0.3);
}

.cookie-btn-refuse:hover {
    background: rgba(254, 243, 216, 0.1);
}

/* Mobile */
@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cookie-text {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        padding: 12px 16px;
    }
}
