/**
 * Mobile Menu Buttons Styles
 * Styles for mobile menu buttons (Pro Recruiter and Immigration Services)
 * 
 * @package Superio Child
 */

/* Language switcher – inline flex row of codes */
.mobile-language-switcher {
  margin-bottom: 24px;
}

.mobile-language-switcher-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-lang-code {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 4px 10px;
  transition: color 0.2s ease;
}

.mobile-lang-code + .mobile-lang-code {
  border-left: 1px solid #e0e0e0;
}


.mobile-lang-code:hover {
  color: #3924f8;
  text-decoration: none;
}

.mobile-lang-code.is-active {
  font-weight: 700;
  color: #3924f8;
  pointer-events: none;
  cursor: default;
}

/* Mobile buttons container */
.mobile-buttons-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Pro Recruiter Button - mobile version */
.widget-get-premium-btn.mobile-copy {
  width: 100%;
}

.widget-get-premium-btn.mobile-copy .get-premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  font-weight: 500;
  background-color: #ff7300;
  color: #ffffff;
  padding: 12px 20px;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  min-height: 48px;
}

.mobile-buttons-copy .mobile-premium-btn, .mobile-buttons-copy .widget-get-premium-btn.mobile-copy .get-premium-btn {
  border-radius: 8px !important;
}

/* Immigration Services Button - mobile version */
.widget-submit-btn.mobile-copy {
  margin-bottom: 10px;
  width: 100%;
}

.widget-submit-btn.mobile-copy .btn-immigration {
  width: 100%;
  text-align: center;
  display: block;
  box-sizing: border-box;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  background-color: #ffffff;
  color: #3924f8;
  border: 2px solid #3924f8;
  font-weight: 500;
  min-height: 48px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

/* Hover effects */
.btn-immigration:hover {
  background-color: #3924f8 !important;
  color: #ffffff !important;
}

.widget-get-premium-btn.mobile-copy .get-premium-btn:hover {
  background-color: #e66400;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 115, 0, 0.3);
}

/* Mobile Pro Recruiter Button - Custom border-radius 60px + full width */
.mobile-premium-btn,
.widget-get-premium-btn.mobile-copy .get-premium-btn {
  border-radius: 60px !important;
  width: 100% !important;
  display: flex !important; /* Changed from block to flex */
  align-items: center !important; /* Ensure SVG and span are aligned */
  justify-content: center !important;
  text-align: center !important;
  gap: 8px !important; /* Space between SVG and text */
}

/* Fix SVG alignment in Pro Recruiter button */
.widget-get-premium-btn.mobile-copy .get-premium-btn svg {
  flex-shrink: 0; /* Prevent SVG from shrinking */
  width: 25px;
  height: 25px;
}
