/* Cookie Consent Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s forwards;
}

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

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

.cookie-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.5;
    max-width: 800px;
}

.cookie-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-options button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-options .btn-primary {
    background-color: #7c6a46;
    color: #fff;
}

.cookie-options .btn-primary:hover {
    background-color: #6a593c;
}

.cookie-options .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-options .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.customize-panel {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-option {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 5px;
    cursor: pointer;
    color: #fff;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #7c6a46;
}

.cookie-option p {
    margin-left: 28px;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-content h3 {
        font-size: 1.2rem;
    }
    
    .cookie-content p {
        font-size: 0.95rem;
    }
    
    .cookie-options {
        flex-direction: column;
    }
    
    .cookie-options button {
        width: 100%;
        margin-bottom: 5px;
    }
}