
/*--------------------------------------------------------------
# Floating EU Logo
--------------------------------------------------------------*/
.floating-eu-logo {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 9999;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 432px;
}

.floating-eu-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.floating-eu-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.floating-eu-logo .close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #184589;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  transition: all 0.2s ease;
  z-index: 10000;
}

.floating-eu-logo .close-btn:hover {
  background: #0d2d54;
  transform: scale(1.1);
}

.floating-eu-logo.hidden {
  display: none;
}

@media (max-width: 768px) {
  .floating-eu-logo {
    top: 80px;
    right: 10px;
    max-width: 324px;
    padding: 8px;
  }

  .floating-eu-logo img {
    height: auto;
  }
}
