/* ─── Mobile header controls + drawer (shared) ─── */
.header__mobile-controls {
  display: none;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  transition: background-color 0.18s ease;
}
.icon-btn:hover { background: rgba(127,127,127,0.12); }
.icon-btn svg { width: 24px; height: 24px; display: block; }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 24px 32px;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.mobile-drawer.is-open { visibility: visible; pointer-events: auto; }
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 16px;
}
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.mobile-drawer__nav a {
  padding: 14px 8px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--color-black-950, #1F2024);
  text-decoration: none;
  border-bottom: 1px solid var(--color-black-100, #E5E7EB);
}
.mobile-drawer__nav a.is-active { color: var(--color-orange-500, #FF781E); }
.mobile-drawer__lang {
  margin-top: 24px;
  display: flex;
  gap: 8px;
}
.mobile-drawer__lang button {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  background: #FFFFFF;
  border: 1px solid var(--color-black-200, #D1D5DB);
  border-radius: 8px;
  color: var(--color-black-600, #4B5563);
  cursor: pointer;
  transition: all 0.18s ease;
}
.mobile-drawer__lang button.is-active {
  background: var(--color-black-950, #1F2024);
  color: #FFFFFF;
  border-color: var(--color-black-950, #1F2024);
}
body.is-drawer-open { overflow: hidden; }

@media (max-width: 767px) {
  .header__nav { display: none !important; }
  .header__right .lang-switch { display: none !important; }
  .header__mobile-controls { display: inline-flex; }

  /* Footer responsive */
  .footer__inner { padding: 40px 20px 0 !important; }
  .footer__top {
    flex-direction: column !important;
    gap: 32px !important;
    padding-bottom: 32px !important;
  }
  .footer__left { gap: 24px !important; }
  .footer__logo img { height: 24px !important; }
  .footer__company p { font-size: 13px !important; line-height: 20px !important; }
  .footer__right {
    gap: 32px !important;
    flex-direction: column !important;
  }
  .footer__links-title { font-size: 13px !important; }
  .footer__links a { font-size: 13px !important; }
  .footer__social-icons a { width: 32px !important; height: 32px !important; }
  .footer__social-icons svg { width: 16px !important; height: 16px !important; }
  .footer__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 16px 0 28px !important;
  }
  .footer__copyright { font-size: 12px !important; }
}
