/**
 * Mobile Menu Report Button Styles
 *
 * @package Charleston_TST
 */

/* Mobile menu report button styling */
.mobile-menu-report-button-wrapper {
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

.mobile-menu-report-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background-color: var(--color-copper);
  color: var(--color-sky-blue);
  border-radius: 0;
  font-family: var(--font-interstate);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 2px solid var(--color-gold);
  min-width: 180px;
  max-width: 280px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.mobile-menu-report-button::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 2px;
  background: linear-gradient(45deg, var(--color-gold), rgba(247, 158, 69, 0.5), var(--color-gold));
  background-size: 200% 200%;
  z-index: -1;
  animation: glowAnimation 4s ease-in-out infinite;
  opacity: 0.6;
  filter: blur(3px);
}

.mobile-menu-report-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.mobile-menu-report-button-text {
  margin-right: 10px;
  white-space: nowrap;
}

.mobile-menu-report-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* Show button when menu is open */
.menu-is-active .mobile-menu-report-button-wrapper,
.primary-menu.active + .mobile-menu-report-button-wrapper,
.site-header.mobile-menu-open .mobile-menu-report-button-wrapper {
  display: block !important;
  position: fixed;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 2002;
  margin: 0 auto;
  padding: 20px;
}

/* Hide sticky button when menu is open */
.menu-is-active .sticky-report-button {
  display: none !important;
}

/* Mobile styles */
@media (max-width: 768px) {
  .mobile-menu-report-button {
    padding: 10px 16px;
    min-width: 160px;
    transform: scale(0.95);
  }
}
