:root {
  --card-shadow: 0 0 50px 4px rgba(0, 0, 0, 0.2);
  --map-fill: #b4b7c2;
  --brand-green: #61764b;
  --brand-yellow: #f8b400;
  --bg: #fff;
  --surface: #ffffff;
  --ink: #1e1e1e;
  --muted: #364153;
  --soft: #e7e9ed;
  --line: #e9e9e9;
  /* --brand: #61764b;
  --accent: #f8b400; */
  --india-green: #357942;
  --radius-card: 16px;
  --radius-block: 24px;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Albert Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

.header {
  flex-wrap: wrap;
  height: 100px;
  justify-content: flex-start;
  row-gap: 6px;
}

.nav-logo {
  flex-shrink: 0;
}

.header-brand {
  order: 1;
}

.header-actions {
  margin-left: 10px;
  order: 3;
}

.country-switch-wrap {
  display: flex;
  margin-left: auto;
  order: 2;
  width: auto;
}

@media (min-width: 768px) {
  .country-switch-wrap {
    margin-right: auto;
    margin-left: 20px;
  }
}

.country-switch {
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.45);
  margin-top: 0;
}

.global-switch .switch-track {
    align-items: center;
    width: 37.646px;
    height: 20px;
    border-radius: 12.5px;
    background: #e7e9ed;
    box-shadow: inset 0 1.5px 2px 0.75px rgba(0, 0, 0, 0.1);
    position: relative;
    justify-content: flex-start;
    padding: 2px;
    flex-shrink: 0;
    transition: background-color 180ms ease;
}

.global-switch .switch-thumb {
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 1.5px 2px 0.75px rgba(0, 0, 0, 0.1);
  display: block;
  height: 15.5px;
  transition: transform 180ms ease;
  width: 16px;
}

.global-switch.is-on .switch-thumb {
  transform: translateX(17px);
}

.global-switch.is-on .switch-track {
    background: var(--brand-green);
}

.global-switch .label-global {
  font-weight: 600;
}

.global-switch.is-on .label-global {
  font-weight: 400;
}

.global-switch.is-on .label-other {
  font-weight: 600;
}

.switch-track:focus-visible,
.nav-btn:focus-visible,
.community-card:focus-visible {
  outline: 2px solid #61764b;
  outline-offset: 2px;
}

.nav-btn {
  border-radius: 20px;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  min-height: 39px;
  min-width: 96px;
  padding: 10px 22px;
  transition: transform 120ms ease, filter 120ms ease;
}

.nav-btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.nav-btn-yellow {
  background: var(--brand-yellow);
  color: #364153;
}

.nav-btn-green {
  background: var(--brand-green);
  color: #ffffff;
}


@media (max-width: 1024px) {
  .header {
    height: auto;
    min-height: 90px;
    padding-bottom: 6px;
    padding-top: 6px;
  }

  .nav-btn {
    min-height: 37px;
    min-width: 90px;
    padding: 10px 16px;
  }
}

@media (max-width: 767px) {
  .header {
    min-height: 86px;
    row-gap: 8px;
  }

  .header-actions {
    flex-basis: 100%;
    justify-content: flex-end;
    margin-left: 0;
  }

  .nav-btn {
    border-radius: 16px;
    font-size: 14px;
    min-height: 34px;
    min-width: 74px;
    padding: 8px 14px;
  }
}

@media (max-width: 420px) {
  .header {
    min-height: 82px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-logo {
    height: 38px;
    width: 108px;
  }

  .nav-btn {
    min-width: 70px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
