/**
 * Header - Desktop + Mobile
 *
 * @package Alpaya_x_Retodi
 */

/* ==========================================================================
   Desktop / Mobile Görünürlük (Tablet + Mobile aynı)
   ========================================================================== */
.header-desktop {
  display: block;
}
.header-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: block;
  }
}

/* ==========================================================================
   Üst Bar (Siyah) - Desktop
   ========================================================================== */
.header-top-bar {
  display: flex;
  align-items: center;
  background-color: #000;
  --header-top-bg: #000;
  color: #fff;
  /* padding: 0.75rem 0; */
}

.header-top-bar .header-top-inner {
  width: 100%;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-utility {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-start;
}

.header-utility-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
}

.header-utility-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Logo */
.header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.header-logo__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
}

.header-logo__link:hover {
  color: #fff;
}

.header-logo__img {
  max-height: 300px;
  width: auto;
  height: auto;
  display: block;
  vertical-align: middle;
}

.header-logo__title {
  font-size: 1rem;
  font-weight: 700;
}

.header-logo__tagline {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Header Actions - Sağ (dil + arama) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

/* Dil Seçimi - Spike / Nabız efekti */
.header-lang {
  --header-lang-transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-lang-wrapper {
  position: relative;
  cursor: pointer;
}

.header-lang-spike {
  position: relative;
  width: 80px;
  height: 12px;
}

.header-lang-spike__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
  transition: var(--header-lang-transition);
}

.header-lang-spike__point {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--header-top-bg, #000);
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  /* border-left: 2.5px solid rgba(255, 255, 255, 0.9);
  border-top: 2.5px solid rgba(255, 255, 255, 0.9); */
  transform: translate(-50%, -50%) rotate(45deg);
  transition: var(--header-lang-transition);
  z-index: 2;
}

.header-lang__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.5px;
  text-align: center;
}

.header-lang__current {
  display: none;
}

.header-lang-wrapper:hover .header-lang-spike__line,
.header-lang-wrapper:hover .header-lang-spike__point {
  border-color: #fff;
}

.header-lang-wrapper:hover .header-lang-spike__line {
  background: #fff;
}

.header-lang-wrapper:hover .header-lang__label {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.header-lang-wrapper.active .header-lang-spike__point {
  transform: translate(-50%, -50%) rotate(225deg);
  border-color: #fff;
}

.header-lang-wrapper.active .header-lang-spike__line {
  background: #fff;
}

/* Dil dropdown - solda açılır */
.header-lang-dropdown {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  margin-right: 0.5rem;
  background: #000;
  display: flex;
  gap: 10px;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: var(--header-lang-transition);
  z-index: 100;
}

.header-lang-wrapper.active .header-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.header-lang-option {
  font-size: 11px;
  font-weight: 500;
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s;
}

.header-lang-option:hover {
  color: #64748b;
}

.header-lang-option.is-current {
  color: #fff;
  text-decoration: underline;
}

/* Arama butonu */
.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0.25rem;
}

.header-search-btn:hover {
  color: #fff;
}

.header-search-btn svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Nav Bar - Ana menü
   ========================================================================== */
.header-nav-bar {
  display: flex;
  align-items: center;
  padding: 0.5rem 0 0.5rem;
  position: relative;
  overflow: visible;
}

.header-nav-bar .site-container {
  width: 100%;
}

.site-navigation {
  display: flex;
  justify-content: center;
  overflow: visible;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu > li {
  position: static;
  margin: 0;
}

.primary-menu > li > a,
.primary-menu .mega-menu-link {
  display: block;
  padding: 0.2rem 0;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5em;
  border-bottom: 1.5px solid transparent;
  transition:
    border-color 0.2s,
    color 0.2s;
}

/* Customizer: Menü büyük harf (checkbox ile) */
body.header-menu-uppercase .primary-menu > li > a,
body.header-menu-uppercase .primary-menu .mega-menu-link {
  text-transform: uppercase;
}
body.header-menu-uppercase .header-mobile-menu-list li a {
  text-transform: uppercase;
}

.primary-menu > li > a:hover,
.primary-menu .mega-menu-link:hover {
  border-bottom-color: #fff;
}

/* Aktif sayfa veya alt sayfadaysa üst menüde underline (örn: Hakkımızda’dayken Biz Kimiz) */
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a,
.primary-menu > .mega-menu-item.current-menu-item .mega-menu-link,
.primary-menu > .mega-menu-item.current-menu-ancestor .mega-menu-link {
  border-bottom-color: #fff;
}

/* Mega Menu - Modal stil */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #0b1119;
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.primary-menu > .mega-menu-item:hover .mega-menu {
  height: 540px;
}

/* Click modunda: hover devre dışı, .is-open ile açılır */
body.mega-menu-trigger-click .primary-menu > .mega-menu-item:hover .mega-menu {
  height: 0;
}
body.mega-menu-trigger-click
  .primary-menu
  > .mega-menu-item.is-open
  .mega-menu {
  height: 540px;
}

.mega-menu__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem var(--spacing);
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s ease 0.15s,
    transform 0.4s ease 0.15s;
}

/* Çocuk kategoriler: 4 sütun yan yana, taşarsa alta kayar */
.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1rem;
  align-content: start;
  min-width: 0;
}

.primary-menu > .mega-menu-item:hover .mega-menu__content {
  opacity: 1;
  transform: translateY(0);
}
body.mega-menu-trigger-click
  .primary-menu
  > .mega-menu-item:hover
  .mega-menu__content {
  opacity: 0;
  transform: translateY(12px);
}
body.mega-menu-trigger-click
  .primary-menu
  > .mega-menu-item.is-open
  .mega-menu__content {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu__header h2,
.mega-menu__title {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.mega-menu__title a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.mega-menu__title a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Sayfa ikonu - tam yuvarlak, başlığın solunda */
.mega-menu__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--mega-icon-bg, rgba(255, 255, 255, 0.1));
}

.mega-menu__icon img {
  width: 100%;
  height: 100%;
  object-fit: var(--mega-icon-fit, contain);
}

.mega-menu__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.mega-menu__sub-desc-links {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.mega-menu__sub-desc-links li {
  margin-bottom: 0.35rem;
}

.mega-menu__sub-desc-links a {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.mega-menu__sub-desc-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.mega-menu__sub-desc-links--child {
  margin-top: 0.5rem;
}

.mega-menu__sub-desc-links--child a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Çocuğu olmayan kategorilerde gösterilen açıklama (küçük font) */
.mega-menu__child-desc {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.5rem 0 0;
}

.mega-menu__column {
  min-width: 0;
}

.mega-menu__column-title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.mega-menu__column-title a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.mega-menu__column-title a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mega-menu__column-title .mega-menu__icon {
  width: 30px;
  height: 30px;
}

.mega-menu__sub-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu__sub-links li {
  margin-bottom: 0.75rem;
}

.mega-menu__sub-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.mega-menu__sub-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.mega-menu__sub-links .mega-menu__icon {
  width: 26px;
  height: 26px;
}

.mega-menu__sub-links .mega-menu__sub-link-text {
  flex: 1;
  min-width: 0;
}

.mega-menu__grand-desc {
  display: block;
  font-size: 0.75rem;
  opacity: 0.5;
  font-style: italic;
  margin-top: 2px;
}

/* ==========================================================================
   Site Header - Search modal
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 10;
}

.header-search-modal {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.header-search-modal.is-open {
  height: 100px;
}

@media (max-width: 1024px) {
  .header-search-modal.is-open {
    height: 72px;
  }
}

.header-search-modal__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--spacing);
  gap: 1rem;
}

.header-search-modal__icon {
  flex-shrink: 0;
  color: #94a3b8;
}

.header-search-modal__form {
  flex: 1;
  min-width: 0;
}

.header-search-modal__input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.25rem;
  color: #1e293b;
  font-weight: 300;
  font-family: inherit;
  background: transparent;
}

.header-search-modal__input::placeholder {
  color: #94a3b8;
}

/* Mobil: type="search" inputunun tarayıcı arama ikonunu gizle (placeholder yanındaki çift ikon) */
.header-search-modal__input::-webkit-search-decoration,
.header-search-modal__input::-webkit-search-cancel-button,
.header-search-modal__input::-webkit-search-results-button,
.header-search-modal__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.header-search-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.header-search-modal__close:hover {
  color: #1e293b;
}

/* ==========================================================================
   Mobile Header
   ========================================================================== */
.header-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #000;
  --header-top-bg: #000;
  color: #fff;
  gap: 1rem;
}

.header-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: none;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  min-width: 44px;
  min-height: 44px;
}
.header-mobile-toggle svg {
  display: block;
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: currentColor;
}

.header-mobile-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.header-mobile-logo .header-logo__title {
  font-size: 0.875rem;
}
.header-mobile-logo .header-logo__img {
  max-height: 32px;
}

.header-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Dil seçici - mobil: point/line/label kaldır, sadece TR/EN + alta açılan dropdown */
@media (max-width: 1024px) {
  .header-mobile .header-lang-spike,
  .header-mobile .header-lang__label {
    display: none !important;
  }
  .header-mobile .header-lang__current {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .header-mobile .header-lang__current::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
  }
  .header-mobile .header-lang-wrapper.active .header-lang__current::after {
    border-top: none;
    border-bottom: 5px solid currentColor;
  }
  .header-mobile .header-lang-dropdown {
    top: 100%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -8px);
    gap: 0;
    flex-direction: column;
    border-radius: 6px;
    min-width: 40px;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }
  .header-mobile .header-lang-wrapper.active .header-lang-dropdown {
    transform: translate(-50%, 0);
  }
  .header-mobile .header-lang-option {
    display: block;
    padding: 0.2rem 0.4rem;
    font-size: 0.8125rem;
  }
  .header-mobile-actions .header-search-btn svg,
  .header-mobile-menu__actions .header-search-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Mobile Menu - Slide-in overlay (Sidebar stil: görsel referans) */
.header-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  bottom: 0;
  background: #1b1d28;
  z-index: 10000;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.header-mobile-menu.is-open {
  transform: translateX(0);
}
.header-mobile-menu[hidden] {
  display: none;
}

.header-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.header-mobile-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.header-mobile-overlay[hidden] {
  display: none;
}

.header-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #000;
  --header-top-bg: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: none;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  min-width: 44px;
  min-height: 44px;
}
.header-mobile-close svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
}

.header-mobile-menu__logo {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header-mobile-menu__logo .header-logo__title {
  font-size: 0.875rem;
}

.header-mobile-menu__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-mobile-nav {
  width: 100%;
  padding: 1rem;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.header-mobile-nav__track {
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.header-mobile-nav__panel {
  flex: 0 0 100%;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.header-mobile-nav__panel--hidden {
  display: none !important;
}

.header-mobile-nav__panel .header-mobile-menu-list {
  width: 100%;
}

.header-mobile-nav__back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-mobile-nav__back-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-mobile-nav__back-icon svg {
  width: 20px;
  height: 20px;
}

.header-mobile-nav__back:hover {
  color: #fff;
  text-decoration: underline;
}

.header-mobile-nav__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  overflow-wrap: break-word;
  word-break: break-word;
}

.header-mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-mobile-menu-list > li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-mobile-menu-list > li:last-child {
  border-bottom: none;
}

.header-mobile-menu-list > li > a,
.header-mobile-menu-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}

.header-mobile-menu-item__row .header-mobile-menu-link,
.header-mobile-menu-list > li > a.header-mobile-menu-link {
  flex: 1;
  min-width: 0;
  color: #fff;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}

.header-mobile-menu-link__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-mobile-menu-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
}

.header-mobile-menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-mobile-menu-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.header-mobile-menu-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

.header-mobile-submenu-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  margin-left: 0.5rem;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
}

.header-mobile-menu-arrow-btn:hover {
  color: #fff;
}

.header-mobile-menu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.header-mobile-menu-arrow svg {
  width: 18px;
  height: 18px;
}

.header-mobile-menu-list > li > a:hover,
.header-mobile-menu-list
  > li
  > .header-mobile-menu-item__row
  .header-mobile-menu-link:hover,
.header-mobile-menu-list > li.current-menu-item > a,
.header-mobile-menu-list
  > li.current-menu-item
  > .header-mobile-menu-item__row
  .header-mobile-menu-link,
.header-mobile-menu-list > li.current-menu-ancestor > a,
.header-mobile-menu-list
  > li.current-menu-ancestor
  > .header-mobile-menu-item__row
  .header-mobile-menu-link {
  color: #fff;
  text-decoration: underline;
}

/* li içindeki nested submenu gizli - torunlar sadece çocuğun > okuna tıklanınca görünsün */
.header-mobile-nav__panel li > .header-mobile-submenu,
.header-mobile-nav__panel li > .sub-menu {
  display: none !important;
}

.header-mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.header-mobile-nav__panel .header-mobile-submenu {
  padding-left: 0;
}

.header-mobile-menu-list .sub-menu li,
.header-mobile-menu-list .header-mobile-submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-mobile-menu-list .sub-menu li:last-child,
.header-mobile-menu-list .header-mobile-submenu li:last-child {
  border-bottom: none;
}

.header-mobile-menu-list .sub-menu li a,
.header-mobile-menu-list .header-mobile-submenu li a {
  padding: 0.75rem 0;
  font-size: inherit;
  color: #fff;
}

.header-mobile-menu-list .header-mobile-submenu .header-mobile-menu-item__row {
  padding: 0.75rem 0;
}

.header-mobile-menu-list
  .header-mobile-submenu
  .header-mobile-menu-item__row
  .header-mobile-menu-link {
  font-size: inherit;
  color: #fff;
}
