.vv-cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.vv-cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vv-cookie-consent__inner {
  margin: 0 auto;
  max-width: 1120px;
  border-radius: 12px;
  background: #f8f8f8;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vv-cookie-consent__text strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-family: "ALSSchlangesans-Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.vv-cookie-consent__text p {
  margin: 0;
  color: #0f172a;
  font-family: "ALSSchlangesans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.vv-cookie-consent__text a {
  color: #0f172a;
  text-decoration: underline;
}

.vv-cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.vv-cookie-consent__btn {
  all: unset;
  box-sizing: border-box;
  min-width: 120px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "ALSSchlangesans-Bold", sans-serif;
  font-size: 14px;
  line-height: 1;
  padding: 0 16px;
}

.vv-cookie-consent__btn--primary {
  background: #ffb4e1;
  color: #ffffff;
  border: 1px solid #ffb4e1;
}

.vv-cookie-consent__btn--primary:hover {
  background: rgba(255, 160, 210, 1);
  border-color: rgba(255, 160, 210, 1);
}

.vv-cookie-consent__btn--secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.vv-cookie-consent__btn--secondary:hover {
  background: #f2f2f2;
}

@media (max-width: 768px) {
  .vv-cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .vv-cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 12px;
  }

  .vv-cookie-consent__actions {
    width: 100%;
  }

  .vv-cookie-consent__btn {
    width: 100%;
  }
}
