 


#loc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.loc-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7); /* Стало темнее */
}

.loc-window {
    position: relative;
    margin: 15vh auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5); /* Тень для окна */
}

.loc-switcher {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.loc-btn {
    padding: 14px 24px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #ddd; /* Базовый серый цвет */
    color: #333; /* Тёмный текст */
    transition: background 0.3s, color 0.3s;
}

.loc-btn:hover {
    background: #ccc; /* При наведении чуть темнее */
}

.loc-btn.active {
    background: #28a745; /* Ярко-зелёная активная */
    color: #fff;
}

.loc-window p {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}
/* Плавающая кнопка WhatsApp */
#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-align: center;
    font-size: 28px;
    line-height: 60px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

#whatsapp-float:hover {
    opacity: 1;
}
/* Исправление прокрутки в меню Superfly */
#sfm-sidebar .sfm-scroll-wrapper {
  overflow-y: auto !important;
  height: 100vh !important;
}

#sfm-sidebar .sfm-scroll {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

#sfm-sidebar .sfm-nav {
  overflow: visible !important;
  position: relative !important;
  height: auto !important;
  max-height: none !important;
}


@media only screen and (max-width: 800px) {
  #sfm-sidebar .sfm-nav {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}