/* Banner minimale per landing, non invasivo. */
.vf-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  font-family: inherit;
}

.vf-cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.vf-cookie-banner__content {
  flex: 1 1 420px;
  min-width: 260px;
}

.vf-cookie-banner__title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.vf-cookie-banner__text {
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.95;
}

.vf-cookie-banner__links {
  margin-top: 8px;
}

.vf-cookie-banner__link {
  color: #fff;
  text-decoration: underline;
  font-size: 12px;
  opacity: 0.9;
}

.vf-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.vf-cookie-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.vf-cookie-btn:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.vf-cookie-btn--accept {
  background: #ffffff;
  color: #111;
  border-color: #ffffff;
}

.vf-cookie-btn--accept:hover {
  filter: brightness(0.95);
}

@media (max-width: 520px) {
  .vf-cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
