/* logo-fix.css — minimal overrides for product pages (loaded after nav.css) */

/* Logo image */
.logo-icon-img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(99,120,255,0.25));
}

/* Brand name */
.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.1;
}

/* Logo block — bigger gap to accommodate larger image */
.logo {
  gap: 12px;
  transition: opacity .15s;
}
.logo:hover { opacity: 0.85; }

/* Language switcher — slightly bigger */
.lang-btn {
  padding: 6px 12px;
  font-size: 12px;
  gap: 6px;
}

/* Polymarket header CTA */
.hdr-poly-cta {
  background: rgba(33,150,243,0.12);
  border: 1px solid rgba(33,150,243,0.4);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(99,180,255,1);
  letter-spacing: .02em;
  white-space: nowrap;
  text-decoration: none;
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hdr-poly-cta:hover {
  background: rgba(33,150,243,0.22);
  border-color: rgba(33,150,243,0.6);
}

@media (max-width: 768px) {
  .logo-icon-img { width: 42px; height: 42px; }
  .logo-text { font-size: 16px; }
  .hdr-poly-cta { padding: 5px 9px; font-size: 10.5px; }
}
