.cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0,0,0,.1);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    transform: translateY(100%);
    transition: transform .4s ease;
}
.cc-banner.cc-visible {
    transform: translateY(0);
}
.cc-banner-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 24px;
}
.cc-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cc-text {
    flex: 1;
    line-height: 1.5;
}
.cc-text a {
    color: #00b894;
    text-decoration: underline;
}
.cc-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cc-btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity .2s;
}
.cc-btn:hover {
    opacity: .85;
}
.cc-btn-settings {
    background: transparent;
    color: #555;
    border: 1px solid #ccc;
}
.cc-btn-reject {
    background: #f5f5f5;
    color: #333;
}
.cc-btn-accept {
    background: #00b894;
    color: #fff;
}
.cc-detail {
    display: none;
    padding-top: 16px;
    border-top: 1px solid #eee;
    margin-top: 16px;
}
.cc-detail.cc-detail-open {
    display: block;
}
.cc-detail h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 14px;
}
.cc-category {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.cc-category input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #00b894;
    width: 18px;
    height: 18px;
}
.cc-category-label strong {
    display: block;
    font-size: 14px;
}
.cc-category-label span {
    font-size: 12px;
    color: #888;
}
.cc-detail-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
}

@media (max-width: 640px) {
    .cc-main {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .cc-buttons,
    .cc-detail-buttons {
        flex-direction: column;
    }
    .cc-btn {
        text-align: center;
    }
}
