/* Cookie Consent Banner */
#cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Lato', 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.cc-banner-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 24px;
}

.cc-banner-text p {
    margin: 0 0 12px 0;
}

.cc-banner-text a {
    color: #895c7d;
    text-decoration: underline;
    font-weight: 600;
}

.cc-banner-text a:hover {
    color: #6e4965;
}

.cc-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}

.cc-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    transition: background 0.2s ease;
}

.cc-btn-accept {
    background: #895c7d;
    color: #fff;
}

.cc-btn-accept:hover {
    background: #6e4965;
}

.cc-btn-reject {
    background: #e8e8e8;
    color: #333;
}

.cc-btn-reject:hover {
    background: #d0d0d0;
}

.cc-btn-settings {
    background: transparent;
    color: #895c7d;
    border: 1px solid #895c7d;
}

.cc-btn-settings:hover {
    background: #895c7d;
    color: #fff;
}

.cc-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.cc-category {
    margin-bottom: 12px;
}

.cc-category-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc-category-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #895c7d;
}

.cc-category-desc {
    margin: 4px 0 0 26px;
    font-size: 13px;
    color: #666;
}

@media (max-width: 576px) {
    .cc-banner-inner {
        padding: 16px;
    }

    .cc-banner-actions {
        flex-direction: column;
    }

    .cc-btn {
        width: 100%;
        text-align: center;
    }
}
