/* Анимация прелоадера */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Основные стили карты */
.map-points-component {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.map-container {
    position: relative;
    border: 1px solid #e0e0e0;
}

/* Стили для балуна на карте */
.map-balloon {
    padding: 15px;
    max-width: 300px;
    background-color: white;
}

.map-balloon__title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #333;
}

.map-balloon__content {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.map-balloon__footer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-balloon__coords {
    font-family: monospace;
    font-size: 12px;
    color: #999;
}

.map-balloon__link {
    color: #2196F3;
    text-decoration: none;
    font-size: 14px;
}

.map-balloon__link:hover {
    text-decoration: underline;
}

.ymaps-layers-pane, ymaps {
    /*filter: grayscale(1);*/
    /*-ms-filter: grayscale(1);*/
    /*-webkit-filter: grayscale(1);*/
    /*-moz-filter: grayscale(1);*/
    /*-o-filter: grayscale(1);*/
}

/* Адаптивность */
@media (max-width: 768px) {
    .map-container {
        height: 400px !important;
    }

    .map-legend {
        display: none;
    }

    .items-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Эффекты при наведении */
.map-item-card:hover {
    transform: translateY(-2px);
    border-color: #4CAF50;
}

.ymaps-2-1-79-ground-pane {
    -ms-filter: grayscale(1);
    /*filter: saturate (1)*/
    /*-webkit-filter: grayscale(1);*/
    /*-moz-filter: grayscale(1);*/
    /*-o-filter: grayscale(1);*/
    filter: grayscale(1);

    /*filter: invert(10%);*/
    /*-ms-filter: invert(10%);*/
    /*webkit-filter: invert(10%);*/
    /*-moz-filter: invert(10%);*/
    /*-o-filter: invert(10%);*/
    mix-blend-mode: difference;
    pointer-events: none;
}
/*режим наложения на шейп и отключение реакции курсора: vladislav-land.ru/yandexmap*/
.tn-elem__4346096441649723484272 {
    mix-blend-mode: difference;
    pointer-events: none;
}


/* Кастомные маркеры */
/*.custom-marker {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background: white;*/
/*    border-radius: 50%;*/
/*    box-shadow: 0 4px 12px rgba(0,0,0,0.2);*/
/*    cursor: pointer;*/
/*    transition: all 0.3s;*/
/*}*/

/*.custom-marker:hover {*/
/*    transform: scale(1.1);*/
/*    box-shadow: 0 6px 16px rgba(0,0,0,0.3);*/
/*}*/

/*.custom-marker__count {*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    background: #4CAF50;*/
/*    color: white;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-weight: bold;*/
/*    font-size: 12px;*/
/*}*/

/*.custom-marker__default {*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    background: #2196F3;*/
/*    background: red;*/
/*    color: white;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-weight: bold;*/
/*    font-size: 14px;*/
/*}*/