.vc-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vc-surface, #fff);
  border-top: 1px solid var(--vc-border, #e5e5e5);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.vc-cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.vc-cookie-banner-text {
  flex: 1;
}

.vc-cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vc-cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .vc-cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}
