.acc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    color: var(--e-global-color-text, #fff);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}
.acc-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.acc-banner-text {
    flex: 1;
    min-width: 300px;
}
.acc-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.acc-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}
.acc-btn-accept {
    background: #28a745;
    color: white;
}
.acc-btn-reject {
    background: #6c757d;
    color: white;
}
.acc-hidden {
    display: none !important;
}
@media (max-width: 768px) {
    .acc-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .acc-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Cookie list (shortcode [cookie_list]) */
.acc-cookie-group {
    margin: 20px 0;
}
.acc-cookie-group-title {
    font-size: 1.15em;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e5e5e5;
}
.acc-cookie-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.acc-cookie-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.acc-cookie-item:last-child {
    border-bottom: 0;
}
.acc-cookie-name {
    font-weight: 600;
    margin-bottom: 4px;
}
.acc-cookie-description {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
}