/* Voio cookie consent banner — gentle, delicate, slim.
   Loads on every page; auto-hides if user already made a choice.
   No third-party dependencies. */

.voio-cookies {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.05);
  padding: 12px 20px;
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #374151;
  font-size: 13.5px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.voio-cookies.is-open { transform: translateY(0); }

.voio-cookies-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.voio-cookies-msg { flex: 1; min-width: 240px; }
.voio-cookies-msg a {
  color: #1E3FC9;
  text-decoration: underline;
  font-weight: 500;
}

.voio-cookies-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.voio-cookies-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, opacity 0.15s;
}
.voio-cookies-btn:hover { transform: translateY(-1px); }
.voio-cookies-btn-primary {
  background: linear-gradient(135deg, #15287A 0%, #1E3FC9 25%, #2FB5B0 65%, #2ED9A3 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(30,63,201,0.20);
}
.voio-cookies-btn-secondary {
  background: transparent;
  color: #6B7280;
  border: 1px solid #E5E7EB;
}
.voio-cookies-btn-secondary:hover { color: #374151; background: #F9FAFB; }

@media (max-width: 560px) {
  .voio-cookies { font-size: 13px; padding: 12px 16px; }
  .voio-cookies-inner { gap: 10px; }
  .voio-cookies-actions { width: 100%; justify-content: flex-end; }
  .voio-cookies-btn { padding: 7px 14px; font-size: 12.5px; }
}

/* RTL */
[dir="rtl"] .voio-cookies-inner { direction: rtl; }
