/* ============================================
   VorinVista Cookie Consent Banner
   Minimal, responsive, GDPR-compliant design
   ============================================ */

#vv-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #011538;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: none; /* Hidden by default, shown by JS if needed */
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#vv-cookie-consent.visible {
  display: block;
}

.vv-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.vv-consent-text {
  flex: 1;
  min-width: 280px;
}

.vv-consent-text h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.vv-consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.vv-consent-text a {
  color: #F17020;
  text-decoration: underline;
}

.vv-consent-text a:hover {
  color: #ff8844;
}

.vv-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vv-consent-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.vv-consent-btn-accept {
  background: #F17020;
  color: #fff;
}

.vv-consent-btn-accept:hover {
  background: #ff8844;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 112, 32, 0.4);
}

.vv-consent-btn-reject {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.vv-consent-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
  #vv-cookie-consent {
    padding: 16px;
  }

  .vv-consent-container {
    flex-direction: column;
    align-items: stretch;
  }

  .vv-consent-text {
    text-align: center;
  }

  .vv-consent-text h4 {
    font-size: 16px;
  }

  .vv-consent-text p {
    font-size: 13px;
  }

  .vv-consent-buttons {
    justify-content: center;
    width: 100%;
  }

  .vv-consent-btn {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .vv-consent-buttons {
    flex-direction: column;
  }

  .vv-consent-btn {
    width: 100%;
  }
}
