.tab-contents {
    position: relative;
}
.pulse-circle {
    position: relative;
    width: 1.4375rem;
    height: 1.4375rem;
    margin-top: 0.1875rem;
}
.pulse-circle:before {
    content:"";
    display: block;
    width: 1.4375rem;
    height: 1.4375rem;
    border-radius: 50%;
    background-color: #0a1b36;
    border: 1.5px solid white;
    box-sizing: border-box;
    animation: pulse 1.5s infinite ease-in-out;
}
@media (max-width: 992px) {
        .pulse-circle, .pulse-circle:before{
        width: 0.875rem;
        height: 0.875rem;
    }
}
@media (max-width: 768px) {
    .pulse-circle, .pulse-circle:before{
        width: 0.5rem;
        height: 0.5rem;
    }
     .pulse-circle:before {
        border: 1px solid white;
     }
    
}
 @keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
} 

.marker {
    display: flex;
    align-items: center;
    gap: 7px;
    position: absolute;
    transform: translate(-50%, -50%);
    background: #C8C4C46B;
    box-shadow: 0px 4px 4px 0px #00000040;
    backdrop-filter: blur(30px);
    border-radius: 5px;
    padding: 10px;

    font-family: 'Inter';
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0;
    color:white;
    max-width: 250px;
    z-index: 2;
}
@media (max-width: 992px) {
     .marker {
        padding: 5px;
     }
}
@media (max-width: 576px) {
        .marker{
        font-size: 10px;
        max-width: 126px;
    }
}
@media (max-width: 350px) {
        .marker {
        font-size: 8px;
    }
}
.cleaning-tabs {
    margin: 1.25rem auto 0 auto;
    max-width: var(--container-max-width);
    padding: 0 var(--container-padding-x) 80px var(--container-padding-x);  
}
.tab-buttons {
    margin: 1.25rem auto 0 auto;
    max-width: var(--container-max-width);
    padding: 0 var(--container-padding-x) 0 var(--container-padding-x);  
}
@media (max-width: 1350px) {
    .cleaning-tabs {
         padding: 1.5625rem var(--container-padding-mob-x) 2.5rem var(--container-padding-mob-x);
    }
    .tab-buttons {
         padding: 1.5625rem var(--container-padding-mob-x) 5px var(--container-padding-mob-x);
        
    }
}
@media (max-width: 992px) {
    .cleaning-tabs {
        padding: 0;
    }
}
.cleaning-tabs .tab-buttons {
    display: flex;
    gap: 35px;
    margin-bottom: 26px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media (max-width: 1150px) {
    .cleaning-tabs .tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1.25rem;
    }
}
@media (max-width: 576px) {
    .cleaning-tabs .tab-buttons {
        gap: 0.9375rem;
    }
}
.cleaning-tabs .tab-buttons li {
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f0f0f000;
    transition: 0.2s;

    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #152046;
    border: 1px solid #AB917A;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.5rem;
    margin: 0;
}
@media (max-width: 992px) {
    .cleaning-tabs .tab-buttons li {
        font-size: 15px;
        min-height: 0.875rem;
        padding: 10px;
    }
}
@media (max-width: 576px) {
        .cleaning-tabs .tab-buttons li {
        font-size: 10px;
    }
}
@media (max-width: 320px) {
        .cleaning-tabs .tab-buttons li {
        font-size: 8px;
    }
}
.cleaning-tabs .tab-buttons .active {
    background: #142245;
    color: #fff;
    border: 1px solid #142245;
}
.cleaning-tabs .tab-contents .tab-content {
    display: none;
}
.cleaning-tabs .tab-contents .tab-content.active {
    display: block;
}
.tab-buttons li { cursor:pointer; display:inline-block; padding:8px 16px; border:1px solid #ccc; margin: 4px; }
.tab-buttons .active { background:#000; color:#fff; }
.tab-content { display:none; }
.tab-content.active { display:block; }
.desktop-marker { display: flex; }
.mobile-marker { display: none; }

.desktop-img, .mobile-img {
    width: 100%;
} 
.desktop-img { display: block; }
.mobile-img { display: none; }
.desktop-marker { display: flex; } 
.mobile-marker { display: none; }

@media (max-width: 768px) {
    .desktop-img { display: none !important; }
    .mobile-img { display: block !important; }
    .desktop-marker { display: none; }
    .mobile-marker { display: flex; }
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Дозволяє клікати крізь оверлей */
    z-index: 1;
}
/* .marker-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 30px 20px 20px 20px;
    border-radius: 10px;
    z-index: 9999;
    max-width: 90%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-size: 14px;
}
.marker-popup-close {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
} */