/* =========================================================
   STILE BANNER COOKIE 
========================================================= */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%); 
    width: 90%;
    max-width: 600px;
    background: rgba(18, 18, 18, 0.85); 
    backdrop-filter: blur(15px);     
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.15); 
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: 'Space Grotesk', sans-serif;
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
}

.cookie-content h3 {
    color: #ffffff;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.cookie-content p {
    color: #c2c2c2;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 15px; 
    flex-wrap: wrap; 
}

.cookie-btn {
    background-color: #1f1f1f;
    color: #fff;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none; 
    text-align: center;
    transition: all 0.3s ease;
    margin: 2vw;
}

.cookie-btn.secondary:hover {
    color: #fff;
    background: transparent;
    transform: none; 
    text-decoration: underline; 
    border-color: transparent;
}
.cookie-btn.secondary {
    background: transparent;
    border-color: transparent;
    color: #888;
}

.cookie-btn.secondary:hover {
    color: #fff;
    background: transparent;
    transform: none;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cookie-banner {
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: none;
	border-radius: 16px 16px 0 0;
	transform: translateY(100%);
	border-left: none;
	border-right: none;
	border-bottom: none;
	padding: 20px;
	margin: 2vw;
	width: fit-content;
}
    
    .cookie-banner.visible {
        transform: translateY(0);
    }

    .cookie-actions {
        width: 100%;
        gap: 10px;
    }

    .cookie-btn {
        flex: 1; 
        padding: 12px 10px; 
    }
}