/* ==============================
   COOKIE BANNER
   ============================== */
   
html {
    scroll-behavior: smooth;
}

.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-white);
    z-index: 9999;
    padding: 1.2rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-banner__content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

.cookie-banner__content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.cookie-btn--accept {
    background: #ffffff;
    color: var(--color-primary);
}

.cookie-btn--decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn--accept:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: var(--color-primary);
}

.cookie-btn--decline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.2rem 1.5rem;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-banner__buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner__buttons {
        flex-direction: column;
    }
}