/* Shared components: buttons, cards, CTAs, filters, forms, and floating contact controls. */
.btn,
.nav-cta,
.inquiry-link,
.filter-button,
.form-button,
.cta-link,
.whatsapp-action,
.floating-whatsapp {
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), opacity 220ms var(--ease);
}

.btn:hover,
.nav-cta:hover,
.inquiry-link:hover,
.filter-button:hover,
.form-button:hover,
.cta-link:hover,
.whatsapp-action:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.collection-card,
.catalogue-panel,
.cta-panel,
.form-panel,
.contact-panel,
.process-card,
.stat-card,
.highlight-card {
  position: relative;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(13, 13, 13, 0.38);
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.04);
  backdrop-filter: blur(14px);
}

.language-switcher button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: rgba(245, 245, 240, 0.62);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 320ms var(--ease), color 320ms var(--ease), box-shadow 320ms var(--ease);
}

.language-switcher button:hover,
.language-switcher button.is-active {
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-bright);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.24);
}

.language-switcher button:focus-visible {
  outline: 1px solid var(--gold-bright);
  outline-offset: 2px;
}

input,
select,
textarea {
  color: inherit;
}

@media (max-width: 720px) {
  .language-switcher {
    padding: 3px;
  }

  .language-switcher button {
    min-width: 30px;
    min-height: 28px;
    font-size: 0.58rem;
  }
}
