#mv-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 1rem 1.25rem;
  background: rgba(0, 24, 24, 0.97);
  color: #f5f5f5;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  display: none;
}
#mv-cookie-banner.mv-cookie-visible {
  display: block;
}
#mv-cookie-banner .mv-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
#mv-cookie-banner p {
  margin: 0;
  flex: 1 1 320px;
}
#mv-cookie-banner .mv-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#mv-cookie-banner button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: inherit;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font: inherit;
  border-radius: 4px;
}
#mv-cookie-banner button:hover,
#mv-cookie-banner button:focus {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}
#mv-cookie-banner button.mv-cookie-primary {
  background: #fff;
  color: #001818;
  border-color: #fff;
}
#mv-cookie-banner button.mv-cookie-primary:hover {
  background: #e8e8e8;
}
#mv-cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#mv-cookie-settings-panel.mv-open {
  display: block;
}
.mv-cookie-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.mv-cookie-row label {
  cursor: pointer;
}
