.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    display: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cookie-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.accept-necessary {
    background-color: transparent;
    color: #666;
    border: 2px solid var(--primary-color);
}

.accept-necessary:hover {
    background-color: rgba(0, 122, 204, 0.1);
    transform: translateY(-2px);
}

.accept-all {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.accept-all:hover {
    background-color: #0069b4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 204, 0.3);
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

#cookieMessage {
    background-color: rgba(0, 122, 204, 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookieMessage:hover {
    background-color: rgba(0, 122, 204, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-popup {
        bottom: 1rem;
        width: calc(100% - 2rem);
        padding: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        min-width: auto;
    }

    .cookie-content h3 {
        font-size: 1.2rem;
    }

    .cookie-content p {
        font-size: 0.95rem;
    }
} 