﻿/* ================= COOKIE CONSENT ================= */

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.cookie-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 900px;
    margin: auto;
}

    .cookie-box p {
        margin: 0;
        font-size: 14px;
        color: #555;
        line-height: 1.5;
    }

    .cookie-box a {
        color: #435ebe;
        font-weight: 500;
        text-decoration: none;
    }

        .cookie-box a:hover {
            text-decoration: underline;
        }

    .cookie-box .btn {
        white-space: nowrap;
    }

/* TABLET */
@media (max-width: 768px) {
    .cookie-box {
        flex-direction: column;
        align-items: flex-start;
    }

        .cookie-box .btn {
            width: 100%;
        }
}

/* MOBILE */
@media (max-width: 576px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-box {
        padding: 14px;
    }

        .cookie-box p {
            font-size: 13px;
        }
}
