/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

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

.cookie-consent .btn {
    margin: 0 5px;
}

/* Privacy Settings Modal */
.privacy-settings {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.privacy-toggle {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.privacy-toggle:hover {
    transform: scale(1.1);
    background: var(--accent-color);
}
