.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 500px;
    border-radius: 16px;
    padding: 25px;
    /* Glass effect */
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(3px);
    border: 2px solid rgba(255, 255, 255, 0.70);
    /* End glass effect */
    z-index: 1000;
    animation: slideUp 0.5s ease-out forwards;
}

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

.cookie-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8de75f, #73f731);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(106, 48, 147, 0.3);
}

.cookie-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.cookie-text {
    flex-grow: 1;
}

.cookie-text h3 {
    color: black;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    width: 100%;
}

.btn-accept {
    /* Glass effect */
    background: linear-gradient(135deg, #8de75f, #73f731);
    backdrop-filter: blur(3px);
    /* End glass effect */
    color: white;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #75b655, #397e17);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(106, 48, 147, 0.3);
}

.btn-reject {
    /* Glass effect */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(220, 10, 0, 0.4);
    /* End glass effect */
    color: #e74c3c;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.btn-reject:hover {
    background: #e9ecef;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-button {
        width: auto;
    }
}