.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 25px;
    z-index: 99999;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

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

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

.cookie-text h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cookie-link:hover {
    color: #0d6efd;
}


/* MOBILE */

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}