/* ============================================
   ORLA MASCOT — orla.css
   ============================================ */

@keyframes orla-slideIn {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes orla-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes orla-glow {
  0%, 100% { filter: drop-shadow(0 6px 18px rgba(2,132,199,0.25)); }
  50%       { filter: drop-shadow(0 10px 28px rgba(2,132,199,0.50)); }
}
@keyframes orla-bubbleIn {
  0%   { transform: scale(0.85) translateY(8px); opacity: 0; }
  65%  { transform: scale(1.04) translateY(0);   opacity: 1; }
  100% { transform: scale(1)    translateY(0);   opacity: 1; }
}
@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95%            { transform: scaleY(0.1); }
}
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  50%       { transform: rotate(-10deg); }
}

.owl-eye  { animation: blink 4s infinite; transform-origin: center; }
.owl-wing { animation: wave 3s ease-in-out infinite; transform-origin: 80% 50%; }

#orla-root {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 9999;
  font-family: 'DM Sans', system-ui, sans-serif;
  opacity: 0;
  transform: translateY(120px);
  animation: orla-slideIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 3s;
}
@media (min-width: 768px) {
  #orla-root { bottom: 32px; right: 24px; }
}

#orla-toggle-chk { display: none; }

#orla-label {
  cursor: pointer;
  display: block;
  animation: orla-float 3s ease-in-out infinite,
             orla-glow  3s ease-in-out infinite;
}
#orla-label:hover #orla-svg {
  transform: scale(1.06);
  transition: transform 0.2s ease;
}

#orla-bubble {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 232px;
  background: white;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border: 1.5px solid #daeeff;
  padding: 14px 16px 12px;
  font-size: 13px;
  color: #334155;
  line-height: 1.5;
  animation: orla-bubbleIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
#orla-toggle-chk:checked ~ #orla-bubble { display: block; }

#orla-bubble-arrow {
  position: absolute;
  bottom: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: white;
  transform: rotate(45deg);
  border-bottom: 1.5px solid #daeeff;
  border-right: 1.5px solid #daeeff;
}

.orla-bubble-name {
  font-weight: 700;
  color: #0284c7;
  font-size: 12px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.orla-cta {
  display: block;
  margin-top: 10px;
  text-align: center;
  background: #0284c7;
  color: white;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.orla-cta:hover { background: #0369a1; }