/* Acorn Cookie Consent Banner Styles */

.acorn-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.acorn-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.acorn-banner-text {
    flex: 1;
    min-width: 300px;
}

.acorn-banner-text h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.acorn-banner-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.acorn-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.acorn-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.acorn-btn-primary {
    background: #007bff;
    color: white;
}

.acorn-btn-primary:hover {
    background: #0056b3;
}

.acorn-btn-secondary {
    background: #6c757d;
    color: white;
}

.acorn-btn-secondary:hover {
    background: #545b62;
}

.acorn-btn-outline {
    background: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.acorn-btn-outline:hover {
    background: #007bff;
    color: white;
}

.acorn-banner-links {
    font-size: 12px;
    color: #666;
}

.acorn-banner-links a {
    color: #007bff;
    text-decoration: none;
}

.acorn-banner-links a:hover {
    text-decoration: underline;
}

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

.acorn-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.acorn-modal-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acorn-modal-header h3 {
    margin: 0;
    color: #333;
}

.acorn-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.acorn-modal-body {
    padding: 20px;
}

.acorn-category {
    margin-bottom: 20px;
}

.acorn-category-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 5px;
}

.acorn-category-label input {
    margin-right: 10px;
}

.acorn-category p {
    margin: 0;
    color: #666;
    font-size: 14px;
    margin-left: 26px;
}

.acorn-modal-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .acorn-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .acorn-banner-buttons {
        justify-content: center;
    }
}