.slm-location-map-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.slm-service-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.slm-tabs-nav {
    display: flex;
    gap: var(--slm-tab-gap);
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.slm-tabs-nav::-webkit-scrollbar {
    display: none;
}
.slm-tab-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #012169;
    transition: all 0.3s ease;
}

.slm-tab-arrow svg {
    display: block;
    width: 24px;
    height: 24px;
}

.slm-tab-arrow:hover {
    color: #0072ce;
}

.slm-tab-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.slm-tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--slm-tab-color-normal);
    font-size: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    padding: 0;    
    font-weight: 700;
}

.slm-tab:hover {
    color: var(--slm-tab-color-hover);
    border-bottom-color: var(--slm-tab-underline-color-hover);
}

.slm-tab.active {
    color: var(--slm-tab-color-active);
    border-bottom-color: var(--slm-tab-underline-color-active);
}

.slm-map-container {
    position: relative;
    width: 100%;
}

.slm-map-inner {
    position: relative;
}

.slm-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.slm-location-dot {
    position: absolute;
    width: var(--slm-dot-size-normal);
    height: var(--slm-dot-size-normal);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slm-location-dot.hidden {
    opacity: 0;
    pointer-events: none;
}

.slm-dot-inner {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--slm-dot-normal);
    border-radius: 50%;
    border: var(--slm-dot-border-width-normal) solid var(--slm-dot-border-color-normal);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.slm-location-dot:hover {
    width: var(--slm-dot-size-hover);
    height: var(--slm-dot-size-hover);
}

.slm-location-dot:hover .slm-dot-inner {
    background: var(--slm-dot-hover);
    border: var(--slm-dot-border-width-hover) solid var(--slm-dot-border-color-hover);
}

.slm-location-dot.active {
    width: var(--slm-dot-size-active);
    height: var(--slm-dot-size-active);
}

.slm-location-dot.active .slm-dot-inner {
    background: var(--slm-dot-active);
    border: var(--slm-dot-border-width-active) solid var(--slm-dot-border-color-active);
}

.slm-animation-pulsating .slm-dot-inner {
    animation: slm-pulse 2s infinite;
}

.slm-animation-bounce .slm-dot-inner {
    animation: slm-bounce 1s infinite;
}

.slm-animation-fade .slm-dot-inner {
    animation: slm-fade 2s infinite;
}

@keyframes slm-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

@keyframes slm-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes slm-fade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.slm-map-container .slm-popup {
    position: absolute;
    z-index: 99999;
    max-width: 350px;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slm-map-container .slm-popup.default {
    margin-left: 10px;
}

.slm-map-container .slm-popup .arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.slm-map-container .slm-popup.default .arrow {
    left: -11px;
    top: 50%;
    margin-top: -11px;
    border-width: 11px 11px 11px 0;
    border-color: transparent rgba(0,0,0,0.2) transparent transparent;
}

.slm-map-container .slm-popup.default .arrow:after {
    content: '';
    position: absolute;
    left: 1px;
    top: -11px;
    border-width: 11px 11px 11px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.slm-map-container .slm-popup.bottom-right .arrow,
.slm-map-container .slm-popup.bottom-left .arrow,
.slm-map-container .slm-popup.top-right .arrow,
.slm-map-container .slm-popup.top-left .arrow {
    display: none;
}

.slm-popup .slm-info-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--slm-title-color, inherit);
}

.slm-info-content {
    line-height: 1.6;
    font-size: 14px;
}

.map-gray-text {
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.map-address {
    display: block;
    line-height: 1.6;
    margin-bottom: 10px;
}

.map-contact {
    display: block;
    line-height: 1.6;
}

.slm-info-content a {
    color: var(--slm-link-color, inherit);
    text-decoration: none;
}

.slm-info-content a:hover {
    color: var(--slm-link-hover-color, inherit);
    text-decoration: underline;
}

.slm-location-info-mobile {
    display: none;
    margin-top: 20px;
    padding: 1rem 0;
    overflow: hidden;
}

.slm-location-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slm-location-cards::-webkit-scrollbar {
    display: none;
}

.slm-location-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .slm-tabs-nav {
        gap: 16px;
    }

    .slm-map-container .slm-popup {
        display: none !important;
    }

    .slm-location-info-mobile {
        display: block;
    }
}
