/* ========================================================================
   COOKIE ICON BUTTON (Floating Left Side)
   Using Bootstrap + config.css for colors/sizing
   Only positioning and animations here
   ======================================================================== */

.cookie-icon-btn {
  position: fixed;
  left: 20px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Visible state (added by JS after consent) */
.cookie-icon-btn.is-visible {
  display: flex;
  animation: slideInCookieBtn 0.5s ease-out forwards;
}

@keyframes slideInCookieBtn {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cookie-icon-btn:hover {
  transform: scale(1.1);
}

.cookie-icon-btn:active {
  transform: scale(0.95);
}

.cookie-icon-btn svg {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-icon-btn {
    left: 10px;
    width: 45px;
    height: 45px;
  }

  .cookie-icon-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-icon-btn {
    animation: none !important;
  }

  .cookie-icon-btn:hover {
    transform: none;
  }
}
