/* Cookie Consent Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.cookie-content p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

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

.cookie-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-accept {
    background: #be9b3e;
    color: #1a1a1a;
    border: 1px solid transparent;
}

.cookie-accept:hover {
    background: #d4af4a;
}

.cookie-link {
    font-size: 0.75rem;
    color: #be9b3e;
    text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.cookie-modal-close:hover {
    background: #f0f0f0;
}

.cookie-modal-content h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-category-header input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    flex: 1;
}

.cookie-badge {
    font-size: 0.75rem;
    background: #be9b3e;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.cookie-category p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.cookie-modal-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.cookie-save {
    background: #be9b3e;
    color: white;
    padding: 0.75rem 2rem;
}

.cookie-save:hover {
    background: #d4af4a;
}

/* Cookie Revisit Button - Removed per user request */
/* .cookie-revisit {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a1a1a;
    color: white;
    border: 2px solid #be9b3e;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1000;
}

.cookie-revisit:hover {
    transform: scale(1.1);
    background: #be9b3e;
} */

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .cookie-category {
        padding: 1rem;
    }
}