/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 20px;
    right: 20px;
    background: #fff;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    padding: 25px;
    border-radius: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
}

.cookie-banner.active {
    bottom: 25px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    width: 65px;
    height: 65px;
    background: rgba(220, 53, 69, 0.05);
    color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.cookie-text h4 {
    margin: 0 0 4px 0;
    font-size: 1.15rem;
    font-weight: 850;
    color: #111;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.cookie-text a {
    color: #dc3545;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.cookie-text a:hover {
    border-bottom-color: #dc3545;
}

.btn-cookie-accept {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 14px;
    font-weight: 750;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.btn-cookie-accept:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .cookie-banner {
        flex-direction: column !important;
        padding: 18px !important;
        gap: 15px !important;
        left: 12px !important;
        right: 12px !important;
        bottom: -200px !important;
        /* Start hidden */
        border-radius: 20px !important;
        text-align: left !important;
        /* Left alignment is cleaner */
    }

    .cookie-banner.active {
        bottom: 15px !important;
    }

    .cookie-content {
        flex-direction: row !important;
        /* Keep icons/text side by side */
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .cookie-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px !important;
        margin-top: 2px !important;
    }

    .cookie-text h4 {
        font-size: 0.95rem !important;
        margin-bottom: 2px !important;
    }

    .cookie-text p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        color: #666 !important;
    }

    .cookie-actions {
        width: 100% !important;
    }

    .btn-cookie-accept {
        width: 100% !important;
        padding: 12px !important;
        font-size: 0.9rem !important;
        border-radius: 12px !important;
        background: #111 !important;
        /* More premium black button */
        box-shadow: none !important;
    }
}