/* Mobil alt bar — neon zümrüt + marka yeşili */

.mobFooter.mobFooter--modern {
  --mn-bg: #050f0d;
  --mn-border: rgba(86, 255, 190, 0.26);
  --mn-text: #eafdf2;
  --mn-text-muted: rgba(199, 236, 212, 0.48);
  --mn-accent: #52aa68;
  --mn-accent-neon: #7fe09c;
  --mn-shadow: 0 -10px 36px rgba(0, 0, 0, 0.58), 0 -16px 52px rgba(47, 132, 68, 0.22);

  display: none;
  position: fixed;
  z-index: 999;
  background:
    linear-gradient(180deg, rgba(72, 255, 179, 0.07) 0%, transparent 42%),
    linear-gradient(180deg, rgba(21, 61, 30, 0.72) 0%, rgba(7, 24, 18, 0.96) 55%, var(--mn-bg) 100%);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  justify-content: space-around;
  align-items: stretch;
  border-top: 1px solid var(--mn-border);
  box-shadow:
    0 1px 0 rgba(86, 255, 190, 0.14) inset,
    var(--mn-shadow);
}

.mobFooter.mobFooter--modern .mobFooter-item {
  cursor: pointer;
  padding: 8px 4px 6px;
  color: var(--mn-text-muted) !important;
  opacity: 1 !important;
  text-align: center;
  transition: color 0.2s ease, transform 0.2s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none !important;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.mobFooter.mobFooter--modern .mobFooter-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--mn-accent-neon), transparent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 14px rgba(86, 255, 190, 0.65), 0 2px 8px rgba(47, 132, 68, 0.45);
  transition: transform 0.2s ease;
}

.mobFooter.mobFooter--modern .mobFooter-item.active::before {
  transform: translateX(-50%) scaleX(1);
}

.mobFooter.mobFooter--modern .mobFooter-item .CMSIconSVGWrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.mobFooter.mobFooter--modern .mobFooter-item .CMSIconSVGWrapper svg {
  width: 20px;
  height: 20px;
}

.mobFooter.mobFooter--modern .mobFooter-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: inherit;
}

.mobFooter.mobFooter--modern .mobFooter-item.active {
  color: var(--mn-accent-neon) !important;
}

.mobFooter.mobFooter--modern .mobFooter-item.active .CMSIconSVGWrapper {
  filter: drop-shadow(0 0 10px rgba(86, 255, 190, 0.42));
}

.mobFooter.mobFooter--modern .mobFooter-item:hover:not(.active) {
  color: rgba(210, 248, 226, 0.78) !important;
}

.mobFooter.mobFooter--modern .mobFooter-item:active {
  transform: scale(0.94);
}

.mobFooter.mobFooter--modern #menu-toggle.is-open {
  color: var(--mn-accent-neon) !important;
}

.mobFooter.mobFooter--modern #menu-toggle.is-open .CMSIconSVGWrapper {
  filter: drop-shadow(0 0 8px rgba(86, 255, 190, 0.38));
}

@media (max-width: 992px) {
  .mobFooter.mobFooter--modern {
    display: flex;
  }

  body.has-mobile-bottom-nav {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}

/* Tam ekran menü */
.mobileMenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 18, 12, 0.76);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.mobileMenu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobileMenu {
  --mn-menu-bg: #071812;
  --mn-menu-header: rgba(15, 41, 28, 0.92);
  --mn-menu-text: #eafdf2;
  --mn-menu-muted: rgba(167, 255, 212, 0.42);
  --mn-menu-accent: #52aa68;
  --mn-menu-accent-neon: #7fe09c;
  --mn-menu-card-bg: rgba(11, 37, 26, 0.85);
  --mn-menu-card-border: rgba(86, 255, 190, 0.22);
  --mn-menu-list-bg: rgba(8, 28, 20, 0.88);

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  z-index: 1001;
  background:
    radial-gradient(ellipse 130% 85% at 50% 0%, rgba(72, 255, 179, 0.09), transparent 58%),
    linear-gradient(180deg, #153d1e 0%, #0f291c 32%, var(--mn-menu-bg) 58%, #030c09 100%);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
  box-shadow:
    0 -1px 0 rgba(86, 255, 190, 0.1) inset,
    0 -12px 48px rgba(0, 0, 0, 0.45),
    0 -20px 60px rgba(47, 132, 68, 0.15);
}

.mobileMenu.is-open {
  transform: translateY(0);
}

.mobileMenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(47, 132, 68, 0.28) 0%, var(--mn-menu-header) 100%);
  border-bottom: 1px solid rgba(47, 132, 68, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mobileMenu-logo {
  text-decoration: none !important;
  display: flex;
  align-items: center;
}

.mobileMenu-header .mobileMenu-logo-image {
  display: block;
  width: auto;
  height: 85px !important;
  max-height: 85px !important;
  max-width: 210px !important;
  object-fit: contain;
}

.mobileMenu-logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #e8c547, #2f8444 40%, #153d1e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #2f8444;
}

.mobileMenu-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(86, 255, 190, 0.28);
  background: rgba(21, 61, 30, 0.45);
  color: var(--mn-menu-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mobileMenu-close svg {
  width: 20px;
  height: 20px;
}

.mobileMenu-close:hover,
.mobileMenu-close:active {
  background: rgba(47, 132, 68, 0.35);
  border-color: rgba(86, 255, 190, 0.45);
  color: var(--mn-menu-accent-neon);
  box-shadow: 0 0 18px rgba(86, 255, 190, 0.18);
}

.mobileMenu-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 16px 16px calc(100px + env(safe-area-inset-bottom, 0px));
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobileMenu-body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.mobileMenu-section {
  margin-bottom: 22px;
}

.mobileMenu-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mn-menu-muted);
  margin: 0 0 12px 4px;
}

.mobileMenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mobileMenu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 6px 12px;
  border-radius: 14px;
  background: var(--mn-menu-card-bg);
  border: 1px solid var(--mn-menu-card-border);
  color: var(--mn-menu-text) !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(86, 255, 190, 0.06),
    0 4px 14px rgba(0, 0, 0, 0.28);
}

.mobileMenu-card:active {
  transform: scale(0.96);
  border-color: rgba(86, 255, 190, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(86, 255, 190, 0.1),
    0 6px 22px rgba(47, 132, 68, 0.28);
}

.mobileMenu-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(47, 132, 68, 0.38), rgba(21, 61, 30, 0.55));
  border: 1px solid rgba(86, 255, 190, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(86, 255, 190, 0.08);
}

.mobileMenu-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--mn-menu-accent-neon);
}

.mobileMenu-card-icon .fa-solid,
.mobileMenu-card-icon .fa-brands {
  font-size: 18px;
  color: var(--mn-menu-accent-neon);
}

.mobileMenu-card-label {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--mn-menu-text);
}

.mobileMenu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--mn-menu-list-bg);
  border-radius: 14px;
  border: 1px solid var(--mn-menu-card-border);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(86, 255, 190, 0.06),
    0 6px 22px rgba(0, 0, 0, 0.28);
}

.mobileMenu-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: var(--mn-menu-text) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  border-bottom: 1px solid rgba(47, 132, 68, 0.18);
}

.mobileMenu-list-item:last-child {
  border-bottom: none;
}

.mobileMenu-list-item:active {
  background: rgba(47, 132, 68, 0.22);
}

.mobileMenu-list-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(21, 61, 30, 0.65);
  border: 1px solid rgba(86, 255, 190, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mn-menu-accent-neon);
  font-size: 14px;
}

.mobileMenu-list-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--mn-menu-accent-neon);
}

.mobileMenu-list-item--danger {
  color: #dc2626 !important;
}

.mobileMenu-list-item--danger .mobileMenu-list-icon {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
}

.mobileMenu.is-open .mobileMenu-card,
.mobileMenu.is-open .mobileMenu-list-item {
  animation: mobileMenuItemIn 0.35s ease both;
}

.mobileMenu.is-open .mobileMenu-card:nth-child(1) {
  animation-delay: 0.04s;
}
.mobileMenu.is-open .mobileMenu-card:nth-child(2) {
  animation-delay: 0.06s;
}
.mobileMenu.is-open .mobileMenu-card:nth-child(3) {
  animation-delay: 0.08s;
}
.mobileMenu.is-open .mobileMenu-card:nth-child(4) {
  animation-delay: 0.1s;
}
.mobileMenu.is-open .mobileMenu-card:nth-child(5) {
  animation-delay: 0.12s;
}
.mobileMenu.is-open .mobileMenu-card:nth-child(6) {
  animation-delay: 0.14s;
}
.mobileMenu.is-open .mobileMenu-card:nth-child(7) {
  animation-delay: 0.16s;
}
.mobileMenu.is-open .mobileMenu-card:nth-child(8) {
  animation-delay: 0.18s;
}

@keyframes mobileMenuItemIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.mobileMenu-locked {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  touch-action: none;
}

@media (max-width: 360px) {
  .mobileMenu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
