.alert-strip {
  position: relative;
  z-index: 1000;
  overflow: visible !important;
}
.alert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: visible !important;
}
.alert-left img {
  height: 96px;
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 0 18px rgba(255,255,255,0.9))
    drop-shadow(0 0 40px rgba(16,163,223,0.8))
    drop-shadow(0 0 60px rgba(16,163,223,0.4));
}
.menu {
  position: relative;
  z-index: 10001;
  overflow: visible !important;
}
.menu-btn {
  appearance: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}
.menu-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 200px;
  background: #ffffff;
  border: 1px solid rgba(20,53,74,0.10);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  overflow: hidden;
}

.menu.open .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-dropdown a {
  display: block;
  padding: 12px 14px;
  color: #14354a;
  text-decoration: none;
  font-weight: 600;
}

.menu-dropdown a:first-child {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.menu-dropdown a:last-child {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.menu-dropdown a:hover {
  background: #f3fbff;
}



.alert-strip {
  position: relative;
  overflow: visible;
}

.alert-left {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.alert-left img {
  height: 96px;
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 0 18px rgba(255,255,255,0.9))
    drop-shadow(0 0 40px rgba(16,163,223,0.8))
    drop-shadow(0 0 60px rgba(16,163,223,0.4));
}

/* Strong shimmer overlay */



  100% { left: 140%; }
}


.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}


@keyframes logoGlow {
  0% {
    filter:
      drop-shadow(0 0 14px rgba(255,255,255,0.7))
      drop-shadow(0 0 30px rgba(16,163,223,0.6));
  }
  50% {
    filter:
      drop-shadow(0 0 22px rgba(255,255,255,1))
      drop-shadow(0 0 55px rgba(16,163,223,0.9));
  }
  100% {
    filter:
      drop-shadow(0 0 14px rgba(255,255,255,0.7))
      drop-shadow(0 0 30px rgba(16,163,223,0.6));
  }
}

.alert-left img {
  animation: logoGlow 3s ease-in-out infinite;
}
