/*
  Header component tokens — local :root (load base.css before this file).
  Uses global design tokens: --color-*, --shadow-*, --space-*.
*/
:root {
  --header-height-pc: 72px;
  --header-height-sp: 72px;
  --header-bg: var(--color-white);
  --header-shadow: var(--shadow-sm);
  --header-nav-text: var(--color-primary-dark);
  --header-nav-active: var(--color-primary);
  --header-mega-title: var(--color-primary-medium);
  --header-mega-title-sp: var(--color-primary-dark);
  --header-mega-bg: var(--color-primary-light);
  --header-mega-shadow: var(--shadow-md);
  --header-mobile-drawer-bg: var(--color-primary-light-3);
  --header-mega-indent-step: calc(var(--space-md) + var(--space-xs));
  --header-nav-link-padding-x: var(--space-md);
  --header-shadow-search: 0 4px 16px rgba(34, 50, 110, 0.08);
  --header-mobile-cta-min-width: 200px;
  --header-actions-cta-s-min-width: 144px;
}

.c-header__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c-header__mobile-footer {
  display: none;
}

.c-header__drawer {
  display: flex;
  flex: 1;
  min-width: 0;
}

.c-header {
  position: sticky;
  top: 0;
  z-index: var(--z-index-sticky);
  width: 100%;
  height: var(--header-height-pc);
  overflow: visible;
  background-color: var(--header-bg);
  box-shadow: var(--header-shadow);
}

.c-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.c-header__logo {
  flex-shrink: 0;
  margin-right: 0;
}

.c-header__logo img {
  display: block;
  width: auto;
  height: var(--space-3xl);
}

.c-header__nav {
  display: flex;
  flex: 1;
  justify-content: center;
  height: 100%;
}

.c-header__menu {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-header__item {
  height: 100%;
}

.c-header__link {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0;
  color: var(--header-nav-text);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-nav);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration-normal) var(--easing-default);
}

.c-header__item--has-mega > .c-header__link::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2322326E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  transition: transform var(--duration-normal) var(--easing-default);
}

.c-header__item--has-mega.is-active > .c-header__link,
.c-header__item--has-mega > .c-header__link:hover,
.c-header__item--has-mega > .c-header__link:focus-visible,
.c-header__item--plain > .c-header__link:hover,
.c-header__item--plain > .c-header__link:focus-visible {
  color: var(--header-nav-active);
}

.c-header__item--has-mega.is-active > .c-header__link::after {
  transform: rotate(180deg);
}

.c-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: 0;
}

@media (max-width: 767px) {
  .c-header__actions .c-cta-button--s {
    min-width: var(--header-actions-cta-s-min-width);
  }
}

.c-header__search-slot {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 48px;
  overflow: hidden;
  transition: width var(--duration-slow) var(--easing-emphasized);
}

/* Desktop search: icon + panel stacked; input chỉ hiện khi có .c-header__search-slot--open */
.c-header__search {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: var(--z-index-raised);
  transform: translateY(-50%);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    opacity var(--duration-fast) var(--easing-default),
    transform var(--duration-fast) var(--easing-default),
    color var(--duration-normal) var(--easing-default),
    background-color var(--duration-normal) var(--easing-default);
}

.c-header__search-panel {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  width: 100%;
  max-width: 295px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration-normal) var(--easing-default) 0.12s,
    visibility 0s linear var(--duration-slow);
}

.c-header__search-slot--open {
  width: 295px;
}

.c-header__search-slot--open .c-header__search {
  opacity: 0;
  transform: translateY(-50%) scale(0.8);
  pointer-events: none;
}

.c-header__search-slot--open .c-header__search-panel {
  z-index: var(--z-index-raised);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--duration-normal) var(--easing-default) 0.12s,
    visibility 0s linear 0s;
}

.c-header__mobile-cta {
  display: none;
}

.c-header__search:hover,
.c-header__search:focus-visible {
  color: var(--color-white);
  background: var(--color-primary);
}

.c-header__search-img {
  display: block;
  width: 20px;
  height: 20px;
}

.c-header__search:hover .c-header__search-img,
.c-header__search:focus-visible .c-header__search-img {
  filter: brightness(0) invert(1);
}

.c-header__desktop-search {
  display: block;
  margin: 0;
  width: 100%;
  min-width: 0;
}

.c-header__desktop-search-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  max-height: 44px;
  padding: 2px 0 2px var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  box-shadow: var(--header-shadow-search);
}

.c-header__desktop-search-icon {
  flex-shrink: 0;
  margin-right: var(--space-sm);
  display: block;
  width: 20px;
  height: 20px;
}

.c-header__desktop-search-input {
  flex: 1;
  min-width: 0;
  padding: var(--space-sm) var(--space-sm) var(--space-sm) 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  background: transparent;
  border: none;
}

.c-header__desktop-search-input::placeholder {
  color: var(--color-text-secondary);
}

.c-header__desktop-search-input:focus {
  outline: none;
}

.c-header__desktop-search-input::-webkit-search-cancel-button,
.c-header__mobile-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
  width: 0;
  height: 0;
}

.c-header__desktop-search-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: var(--space-xs);
  padding: 0;
  font-size: var(--font-size-xl);
  line-height: var(--line-height-nav);
  color: var(--color-primary);
  cursor: pointer;
  background: transparent;
  border: none;
}

.c-header__desktop-search-close::after {
  content: "\00d7";
  line-height: var(--line-height-nav);
}

.c-header__desktop-search-submit {
  flex-shrink: 0;
  padding: 0 var(--space-lg);
  max-height: 44px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: 44px;
  color: var(--color-white);
  cursor: pointer;
  background: var(--color-primary);
  border: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

.c-header__mega {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: var(--z-index-dropdown);
  width: 100vw;
  padding: var(--space-2xl) 0;
  background: var(--header-mega-bg);
  box-shadow: var(--header-mega-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition:
    opacity var(--duration-normal) var(--easing-default),
    transform var(--duration-normal) var(--easing-default),
    visibility var(--duration-normal) var(--easing-default);
}

.c-header__item--has-mega.is-active > .c-header__mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.c-header__mega-inner {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.c-header__mega--business .c-header__mega-inner {
  align-items: center;
}

.c-header__mega-title {
  flex-shrink: 0;
  width: 180px;
  padding-right: calc(var(--space-xl) + var(--space-xs));
  color: var(--header-mega-title);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  border-right: 1px solid var(--color-primary-light-2);
}

.c-header__mega-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: calc(var(--space-md) + var(--space-xs)) var(--space-2xl);
  margin: 0;
  padding: 0;
  padding-left: var(--header-mega-indent-step);
  list-style: none;
}

.c-header__mega-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--header-nav-text);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  text-decoration: none;
  transition: color var(--duration-normal) var(--easing-default);
}

.c-header__mega-link:hover,
.c-header__mega-link:focus-visible {
  color: var(--color-primary);
}

.c-header__mega-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-pill);
}

.c-header__mega-icon::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-primary-dark);
  border-radius: var(--radius-pill);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  flex-shrink: 0;
}

.c-header__mega-link:hover .c-header__mega-icon,
.c-header__mega-link:focus-visible .c-header__mega-icon,
.c-header__mega-group-title:hover .c-header__mega-icon {
  background-color: var(--color-primary);
  transform: translateX(2px);
}

.c-header__mega-business-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg) calc(var(--space-xl) + var(--space-xs));
}

.c-header__mega-col {
  min-width: 0;
}

.c-header__mega-group-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  padding-left: var(--header-mega-indent-step);
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

.c-header__mega-group-title--spacer {
  visibility: hidden;
}

.c-header__mega-sub-list,
.c-header__mega-utility-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-header__mega-sub-list {
  display: grid;
  gap: 12px;
  padding-left: calc(var(--header-mega-indent-step) * 2);
}

.c-header__mega-utility-list {
  display: grid;
  grid-column: 1 / -1;
  gap: 12px;
  margin-top: var(--space-xs);
  padding-left: var(--header-mega-indent-step);
}

.c-header__mega-link--external svg {
  flex-shrink: 0;
  align-self: center;
}

.c-header__hamburger {
  display: none;
  position: relative;
  z-index: var(--z-index-overlay);
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.c-header__hamburger span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--header-nav-text);
  transition: all var(--duration-normal) var(--easing-default);
}

.c-header__hamburger span:nth-child(1) {
  top: var(--space-xs);
}

.c-header__hamburger span:nth-child(2) {
  top: 11px;
}

.c-header__hamburger span:nth-child(3) {
  top: 18px;
}

.c-header__hamburger.is-open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.c-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.c-header__hamburger.is-open span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

@media (min-width: 768px) {
  .c-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: var(--space-md);
    max-width: var(--layout-container);
    margin-inline: auto;
    padding: 9px var(--layout-padding-inline);
    overflow: visible;
  }

  .c-header__hamburger {
    display: none;
  }

  .c-header__drawer {
    display: flex;
    min-width: 0;
    overflow: visible;
  }

  .c-header__logo {
    flex-shrink: 0;
    min-width: max-content;
  }

  .c-header__nav {
    min-width: 0;
    height: 100%;
    justify-content: flex-end;
    overflow: hidden;
  }

  .c-header__menu {
    justify-content: flex-end;
    margin-left: auto;
    width: max-content;
    height: 100%;
  }

  .c-header__actions {
    flex-shrink: 0;
  }

  .c-header__search-slot {
    justify-self: end;
  }

  .c-header__desktop-search {
    width: 100%;
    margin: 0;
    min-width: 0;
  }

  .c-header__desktop-search-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-shadow: none;
  }

  .c-header__link {
    padding: 0 var(--header-nav-link-padding-x);
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .c-header__inner {
    column-gap: 12px;
  }

  .c-header__search-slot--open {
    width: 220px;
  }

  .c-header__search-panel {
    width: 100%;
    max-width: 220px;
  }

  .c-header__link {
    padding: 0 10px;
    font-size: var(--font-size-xs);
  }

  .c-header__actions {
    gap: var(--space-sm);
  }
}

@media (max-width: 767px) {
  .c-header {
    height: var(--header-height-sp);
  }

  .c-header__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 var(--layout-padding-inline-mobile);
  }

  .c-header__logo {
    margin-right: 0;
    order: 1;
  }

  .c-header__logo img {
    height: 38px;
  }

  .c-header__actions {
    display: flex;
    order: 2;
    gap: var(--space-sm);
    margin-left: auto;
  }

  .c-header__search-slot {
    display: none !important;
  }

  .c-header__hamburger {
    display: block;
    order: 3;
  }

  .c-header__mobile-footer {
    display: block;
    margin-top: var(--space-lg);
    padding-top: 0;
    border-top: none;
  }

  .c-header__mobile-brand {
    margin-top: var(--space-xl);
    text-align: center;
  }

  .c-header__mobile-brand a {
    display: inline-block;
  }

  .c-header__mobile-brand img {
    display: block;
    width: auto;
    height: var(--space-3xl);
    margin: 0 auto;
  }

  .c-header__mobile-search {
    margin: 0 0 var(--space-lg) 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .c-header__mobile-search-inner {
    position: relative;
    display: flex;
    align-items: center;
    max-height: 40px;
    max-width: 295px;
    padding: 0;
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-pill);
  }

  .c-header__mobile-search-icon {
    flex-shrink: 0;
    margin-left: var(--space-md);
    margin-right: var(--space-sm);
    display: block;
    width: 20px;
    height: 20px;
  }

  .c-header__mobile-search-clear {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-right: var(--space-xs);
    padding: 0;
    font-size: var(--font-size-xl);
    line-height: var(--line-height-nav);
    color: var(--color-primary);
    cursor: pointer;
    background: transparent;
    border: none;
  }

  .c-header__mobile-search-clear:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .c-header__mobile-search-clear::after {
    content: "\00d7";
    line-height: var(--line-height-nav);
  }

  .c-header__mobile-search-input {
    flex: 1;
    min-width: 0;
    padding: var(--space-sm) var(--space-xs);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-tight);
    color: var(--color-text-primary);
    background: transparent;
    border: none;
  }

  .c-header__mobile-search-input::placeholder {
    color: var(--color-text-secondary);
  }

  .c-header__mobile-search-input:focus {
    outline: none;
  }

  .c-header__mobile-search-submit {
    flex-shrink: 0;
    padding: 0 var(--space-md);
    max-height: 40px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    line-height: 44px;
    color: var(--color-white);
    cursor: pointer;
    background: var(--color-primary);
    border: none;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  }

  .c-header__mobile-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) calc(var(--space-md) + var(--space-xs));
    justify-content: center;
    margin-top: var(--space-lg);
  }

  .c-header__mobile-legal a,
  .c-header__mobile-legal .c-shared-legal-link {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-tight);
    color: var(--color-text-secondary);
    text-decoration: none;
  }

  .c-header__item--has-mega > .c-header__mega,
  .c-header__item--has-mega.is-active > .c-header__mega {
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .c-header__mega-inner.l-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .c-header__drawer {
    display: none;
    position: fixed;
    top: var(--header-height-sp);
    left: 0;
    z-index: var(--z-index-sticky);
    width: 100%;
    height: calc(100dvh - var(--header-height-sp));
    padding: var(--space-md);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--header-mobile-drawer-bg);
  }

  .c-header__drawer.is-open {
    display: block;
  }

  .c-header__nav {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .c-header__menu {
    display: block;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .c-header__item {
    height: auto;
  }

  .c-header__item--plain + .c-header__item--plain {
    border-top: none;
  }

  .c-header__item:last-child {
    border-bottom: none;
  }

  .c-header__link {
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: var(--space-5xl);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    line-height: var(--space-xl);
    color: var(--header-mega-title-sp);
    white-space: normal;
  }

  .c-header__item--has-mega > .c-header__link {
    color: var(--header-mega-title-sp);
    font-size: var(--font-size-lg);
    line-height: var(--space-xl);
  }

  .c-header__item--has-mega.is-active > .c-header__link {
    color: var(--header-mega-title-sp);
  }

  .c-header__item--has-mega > .c-header__link::after {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    background-image: none;
    border: none;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-nav);
    color: var(--color-primary);
  }

  .c-header__item--has-mega:not(.is-active) > .c-header__link::after {
    content: "+";
    transform: none;
  }

  .c-header__item--has-mega.is-active > .c-header__link::after {
    content: "\2212";
    transform: none;
  }

  .c-header__link--inline-icon {
    justify-content: start;
    gap: var(--space-md);
  }

  .c-header__link--inline-icon .c-header__mega-icon {
    display: none;
  }

  .c-header__item--plain > .c-header__link::after {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--color-primary-dark);
    border-radius: var(--radius-pill);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: var(--space-md);
    flex-shrink: 0;
  }

  .c-header__item--plain .c-header__link {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--header-mega-title-sp);
  }

  .c-header__mega-list > li,
  .c-header__mega-sub-list > li,
  .c-header__mega-utility-list > li {
    list-style: none;
  }

  .c-header__mega {
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    transition: none;
    overflow: visible;
  }

  .c-header__item--has-mega.is-active > .c-header__mega {
    display: block;
    transform: none;
  }

  .c-header__mega-inner {
    display: block;
  }

  .c-header__mega-title {
    display: none;
  }

  .c-header__mega-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: var(--space-sm) 0 var(--space-md);
    padding-left: var(--header-mega-indent-step);
    border-bottom: 1px solid var(--color-border-light);
  }

  .c-header__mega-link,
  .c-header__mega-group-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
    color: var(--color-text-primary);
    word-break: break-word;
  }

  .c-header__mega-group-title {
    margin: var(--space-xs) 0 var(--space-sm);
    padding-left: var(--header-mega-indent-step);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
  }

  .c-header__mega-group-title--spacer {
    display: none;
  }

  .c-header__mega-group-title .c-header__mega-icon {
    background-color: var(--header-mega-title);
  }

  .c-header__mega-sub-list,
  .c-header__mega-utility-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .c-header__mega--business .c-header__mega-business-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 0 var(--space-md) 0;
    border-bottom: 1px solid var(--color-border-light);
  }

  .c-header__mega--business .c-header__mega-utility-list {
    margin-top: var(--space-sm);
    padding-top: var(--space-md);
  }

  .c-header__mega-sub-list {
    margin: 0;
    padding-left: calc(var(--header-mega-indent-step) * 2);
  }

  .c-header__mega-utility-list {
    padding-left: var(--header-mega-indent-step);
  }

  .c-header__mega-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
  }

  .c-header__mega-link .c-header__mega-icon {
    flex-shrink: 0;
  }

  .c-header__mega-icon {
    width: 22px;
    height: 22px;
  }

  .c-header__mobile-cta {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-lg);
  }

  .c-header__mobile-cta .c-cta-button--s {
    min-width: var(--header-mobile-cta-min-width);
  }

  .c-header__mega-link:hover .c-header__mega-icon,
  .c-header__mega-link:focus-visible .c-header__mega-icon,
  .c-header__mega-group-title:hover .c-header__mega-icon {
    transform: none;
  }
}
