/* Cookie Banner Styles - GestionaFitness */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(10, 18, 29, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-content h4 {
    font-size: 1rem;
    color: var(--accent-green, #a3ff12);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-dim, #94a3b8);
    margin: 0;
    line-height: 1.4;
}

.cookie-content a {
    color: var(--accent-cyan, #00f2fe);
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #00f2fe 0%, #a3ff12 100%);
    color: #050a11;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan, #00f2fe);
}

@media (max-width: 480px) {
    .cookie-banner {
        width: 95%;
        padding: 1.2rem;
    }
    .cookie-actions {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
}
