.home-ctnr {
    background: #1a1a1a;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    padding-top: 17vh;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.maps-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.maps-header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.maps-header p {
    color: #999999;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.maps-container {
    width: 95%;
    max-width: 80vw;
    display: flex;
    height: 70vh;
    min-height: 600px;
}

.map-wrapper {
    flex: 1;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    min-height: 400px;
}

#googleMap {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
    display: block !important;
    visibility: visible !important;
}

.info-panel {
    width: 600px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.info-panel-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-panel-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.info-panel-header h2 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1.5px;
}

.info-panel-body {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.info-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #666666;
    gap: 20px;
}

.search-icon {
    width: 60px;
    height: 60px;
    opacity: 0.4;
}

.info-placeholder p {
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin: 0;
}

.shop-info {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.shop-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
    color: #8b86ff;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.shop-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.shop-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(60, 55, 241, 0.15);
    border: 1px solid rgba(60, 55, 241, 0.3);
    border-radius: 8px;
    color: #8b86ff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.shop-link:hover {
    background: rgba(60, 55, 241, 0.25);
    border-color: rgba(60, 55, 241, 0.5);
    color: #a5a1ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 55, 241, 0.2);
}

.shop-link svg {
    width: 16px;
    height: 16px;
}

.shop-images {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-images-title {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
    opacity: 0.7;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.image-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-panel-body::-webkit-scrollbar {
    width: 6px;
}

.info-panel-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.info-panel-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.info-panel-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gm-style-iw-d {
    overflow: hidden !important;
    max-height: none !important;
}

.gm-style-iw-c {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    padding: 15px !important;
}

.gm-style-iw-t::after {
    background: rgba(0, 0, 0, 0.85) !important;
}

.gm-ui-hover-effect {
    top: 8px !important;
    right: 8px !important;
}

@media screen and (max-width: 1200px) {
    .maps-container {
        width: 98%;
        gap: 15px;
        height: 70vh;
    }

    .info-panel {
        width: 340px;
    }

    .info-panel-header h2 {
        font-size: 1.2rem;
    }

    .shop-info h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 968px) {
    .maps-header h1 {
        font-size: 2rem;
    }

    .maps-header p {
        font-size: 0.9rem;
    }

    .maps-container {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .map-wrapper {
        height: 500px;
        min-height: 500px !important;
        width: 100%;
    }

    #googleMap {
        height: 500px !important;
        min-height: 500px !important;
    }

    .info-panel {
        width: 100%;
        height: auto;
        min-height: 300px;
        max-height: 500px;
    }

    .info-panel-body {
        max-height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .home-ctnr {
        padding-top: 10vh;
        padding-bottom: 30px;
    }

    .maps-header h1 {
        font-size: 1.8rem;
    }

    .maps-header p {
        font-size: 0.85rem;
    }

    .map-wrapper {
        height: 450px;
        min-height: 450px !important;
    }

    #googleMap {
        height: 450px !important;
        min-height: 450px !important;
    }

    .info-panel-header {
        padding: 20px 25px;
    }

    .info-panel-body {
        padding: 25px;
    }

    .shop-info h3 {
        font-size: 1.2rem;
    }

    .detail-item {
        font-size: 0.95rem;
    }

    .images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .home-ctnr {
        padding-top: 8vh;
        padding-left: 10px;
        padding-right: 10px;
    }

    .maps-header {
        margin-bottom: 20px;
    }

    .maps-header h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .maps-header p {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .maps-container {
        width: 100%;
        gap: 15px;
    }

    .map-wrapper {
        height: 400px;
        min-height: 400px !important;
        border-radius: 10px;
    }

    #googleMap {
        height: 400px !important;
        min-height: 400px !important;
    }

    .info-panel {
        border-radius: 10px;
        min-height: 250px;
    }

    .info-panel-header {
        padding: 18px 20px;
    }

    .info-panel-header h2 {
        font-size: 1.1rem;
    }

    .info-panel-body {
        padding: 20px;
    }

    .shop-info h3 {
        font-size: 1.1rem;
    }

    .detail-item {
        font-size: 0.9rem;
        gap: 12px;
    }

    .detail-icon {
        width: 36px;
        height: 36px;
    }

    .shop-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .search-icon {
        width: 50px;
        height: 50px;
    }

    .info-placeholder p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 380px) {
    .maps-header h1 {
        font-size: 1.3rem;
    }

    .info-panel-header h2 {
        font-size: 1rem;
    }

    .shop-info h3 {
        font-size: 1rem;
    }

    .detail-item {
        font-size: 0.85rem;
    }

    .map-wrapper {
        height: 350px;
        min-height: 350px !important;
    }

    #googleMap {
        height: 350px !important;
        min-height: 350px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}