#mcc-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111827;
    color: #f9fafb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding: 14px 18px;
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.25s ease;
    font-size: 14px;
}

#mcc-cookie-bar.mcc-visible {
    transform: translateY(0%);
    opacity: 1;
}

#mcc-cookie-bar .mcc-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.mcc-text {
    flex: 1 1 260px;
    line-height: 1.4;
}

.mcc-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.mcc-btn {
    border-radius: 999px;
    padding: 8px 16px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.mcc-btn-primary {
    background: #22c55e;
    color: #022c22;
    border-color: #22c55e;
}

.mcc-btn-primary:hover {
    background: #16a34a;
    border-color: #16a34a;
}

.mcc-btn-link {
    background: transparent;
    color: #e5e7eb;
    border-color: transparent;
}

.mcc-btn-link:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    #mcc-cookie-bar .mcc-inner {
        align-items: flex-start;
    }

    .mcc-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
