/* =========================
   COOKIE CONSENT POPUP
========================= */

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 40px);
    max-width: 700px;

    background: #111111;
    color: #ffffff;

    padding: 18px 22px;
    border-radius: 12px;

    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

    z-index: 9999;
}

.cookie-consent p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-consent a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Accept Button */

#acceptCookies {
    background: #ffffff;
    color: #111111;
    border: 1px solid #ffffff;
}

#acceptCookies:hover {
    background: #dddddd;
    border-color: #dddddd;
}

/* Decline Button */

#declineCookies {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

#declineCookies:hover {
    background: #ffffff;
    color: #111111;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .cookie-consent {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent p {
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }
}