/* ELITE Mobile Menu Button v1.0.0 */
.elite-mm-btn {
  display: none;
  position: fixed;
  z-index: 99999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #DCFF48;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.elite-mm-btn.elite-mm-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.elite-mm-btn .elite-mm-bars {
  width: 24px;
  height: 18px;
  position: relative;
}

.elite-mm-btn .elite-mm-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0A0A0A;
  border-radius: 2px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.elite-mm-btn .elite-mm-bars span:nth-child(1) { top: 0; }
.elite-mm-btn .elite-mm-bars span:nth-child(2) { top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
.elite-mm-btn .elite-mm-bars span:nth-child(3) { bottom: 0; }

.elite-mm-btn.elite-active .elite-mm-bars span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.elite-mm-btn.elite-active .elite-mm-bars span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
}

.elite-mm-btn.elite-active .elite-mm-bars span:nth-child(3) {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

/* Mobile menu panel - fullscreen overlay */
.elite-mm-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0A0A0A;
  z-index: 99998;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 40px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
}

.elite-mm-panel.elite-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.elite-mm-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.elite-mm-panel ul li {
  margin: 0 0 20px 0;
  padding: 0;
  display: block;
}

.elite-mm-panel ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-block;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.elite-mm-panel ul li a:hover {
  color: var(--elite-mm-accent, #DCFF48);
}

.elite-mm-panel .elite-mm-cta {
  margin-top: 40px;
  display: inline-block;
  padding: 14px 32px;
  background: var(--elite-mm-accent, #DCFF48);
  color: #0A0A0A !important;
  border-radius: 999px;
  font-size: 0.9rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

body.elite-mm-open {
  overflow: hidden;
}

/* Action buttons (email + phone) */
.elite-mm-actions {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.elite-mm-action-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--elite-mm-accent, #DCFF48);
  color: #0A0A0A;
  border: 2px solid var(--elite-mm-accent, #DCFF48);
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  font-family: inherit;
  line-height: 1;
}

.elite-mm-action-btn svg {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.elite-mm-action-btn svg,
.elite-mm-action-btn svg * {
  stroke: #0A0A0A;
}

.elite-mm-action-btn span {
  display: inline-block;
  line-height: 1;
  font-weight: 700;
}

/* Animated pulse effect on tap/hover */
.elite-mm-action-btn.elite-pulse {
  -webkit-animation: elitePulse 0.6s ease;
          animation: elitePulse 0.6s ease;
}

@-webkit-keyframes elitePulse {
  0%   { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 0 0 0 rgba(220,255,72,0.6); }
  40%  { -webkit-transform: scale(1.05); transform: scale(1.05); box-shadow: 0 0 0 12px rgba(220,255,72,0); }
  100% { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 0 0 0 rgba(220,255,72,0); }
}

@keyframes elitePulse {
  0%   { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 0 0 0 rgba(220,255,72,0.6); }
  40%  { -webkit-transform: scale(1.05); transform: scale(1.05); box-shadow: 0 0 0 12px rgba(220,255,72,0); }
  100% { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 0 0 0 rgba(220,255,72,0); }
}

/* === Animations === */

/* 1. Fade */
.elite-mm-panel.elite-anim-fade {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.elite-mm-panel.elite-anim-fade.elite-open {
  opacity: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* 2. Slide from right */
.elite-mm-panel.elite-anim-slide-right {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.elite-mm-panel.elite-anim-slide-right.elite-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* 3. Slide from bottom */
.elite-mm-panel.elite-anim-slide-bottom {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px 24px 0 0;
}
.elite-mm-panel.elite-anim-slide-bottom.elite-open {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* 4. Scale (zoom in) */
.elite-mm-panel.elite-anim-scale {
  opacity: 0;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.elite-mm-panel.elite-anim-scale.elite-open {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
