/* Locații fizice magazin și depozit - Figma Design with Existing HTML */
.harti-locatii {
    width: 100%;
    position: relative;
    background-color: #2438c3; /* Exact Figma blue */
    min-height: 500px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 50px 20px;
    box-sizing: border-box;
}

/* Title */
.locatii-fizice-magazin {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1;
}

/* Subtitles */
.magazin-bucuresti {
    position: absolute;
    top: 120px;
    left: calc(50% - 305px); /* Center above left map */
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
}

.depozit-buftea- {
    position: absolute;
    top: 120px;
    left: calc(50% + 305px); /* Center above right map */
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
}

/* Maps - Larger and with more spacing */
.harta-bucuresti-icon {
    position: absolute;
    top: 160px;
    left: calc(50% - 520px); /* Position left map much further left */
    border-radius: 12px;
    width: 430px; /* Adjusted size */
    height: 250px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.harta-buftea-icon {
    position: absolute;
    top: 160px;
    left: calc(50% + 90px); /* Position right map much further right */
    border-radius: 12px;
    width: 430px; /* Adjusted size */
    height: 250px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* Green borders */
.chenar-harta-bucuresti {
    position: absolute;
    top: 156px;
    left: calc(50% - 524px);
    border-radius: 16px;
    border: 4px solid #81d742;
    box-sizing: border-box;
    width: 438px;
    height: 258px;
    pointer-events: none;
}

.chenar-harta-buftea {
    position: absolute;
    top: 156px;
    left: calc(50% + 86px);
    border-radius: 16px;
    border: 4px solid #81d742;
    box-sizing: border-box;
    width: 438px;
    height: 258px;
    pointer-events: none;
}

/* Thumbnail images - Left side (București) */
.whatsapp-image-2023-08-23-at-0-wrapper {
    position: absolute;
    top: 170px;
    left: calc(50% - 620px); /* Left of the map */
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.f104-c788-46e7-825a-404e94c38a-wrapper {
    position: absolute;
    top: 255px;
    left: calc(50% - 620px);
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-20240607-075749-1-wrapper {
    position: absolute;
    top: 340px;
    left: calc(50% - 620px);
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Thumbnail images - Right side (Buftea) */
.img-20240608-094543-2-wrapper {
    position: absolute;
    top: 170px;
    left: calc(50% + 550px); /* Right of the map */
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-20240608-092447-2-wrapper {
    position: absolute;
    top: 255px;
    left: calc(50% + 550px);
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-20240608-092519-2-wrapper {
    position: absolute;
    top: 340px;
    left: calc(50% + 550px);
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Thumbnail images inside wrappers */
.f104-c788-46e7-825a-404e94c38a-icon,
.img-20240607-075749-1-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover effects */
.harta-bucuresti-icon:hover,
.harta-buftea-icon:hover {
    transform: scale(1.02);
}

.whatsapp-image-2023-08-23-at-0-wrapper:hover,
.f104-c788-46e7-825a-404e94c38a-wrapper:hover,
.img-20240607-075749-1-wrapper:hover,
.img-20240608-094543-2-wrapper:hover,
.img-20240608-092447-2-wrapper:hover,
.img-20240608-092519-2-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ===== Mobile layout adjustments ===== */
@media screen and (max-width: 900px) {
    .harti-locatii {
        min-height: auto !important;
        padding: clamp(40px, 12vw, 56px) clamp(18px, 6vw, 28px) clamp(48px, 14vw, 64px) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: clamp(18px, 6vw, 28px) !important;
        text-align: left !important;
    }

    .harti-locatii > * {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }

    .locatii-fizice-magazin {
        order: 1;
        font-size: clamp(22px, 6vw, 28px) !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        text-align: left !important;
        white-space: normal !important;
        margin-bottom: clamp(6px, 2vw, 10px) !important;
    }

    .magazin-bucuresti,
    .depozit-buftea- {
        font-size: clamp(15px, 4.5vw, 18px) !important;
        letter-spacing: 0.02em !important;
        text-transform: uppercase !important;
        font-weight: 600 !important;
        white-space: normal !important;
        margin-top: clamp(12px, 4vw, 16px) !important;
    }

    .magazin-bucuresti {
        order: 2;
    }

    .harta-bucuresti-icon {
        order: 3;
        width: 100% !important;
        max-width: 100% !important;
        height: clamp(220px, 55vw, 280px) !important;
        border-radius: 18px !important;
        box-shadow: 0 18px 38px rgba(9, 14, 72, 0.22) !important;
    }

    .depozit-buftea- {
        order: 4;
        margin-top: clamp(22px, 7vw, 34px) !important;
    }

    .harta-buftea-icon {
        order: 5;
        width: 100% !important;
        max-width: 100% !important;
        height: clamp(220px, 55vw, 280px) !important;
        border-radius: 18px !important;
        box-shadow: 0 18px 38px rgba(9, 14, 72, 0.22) !important;
    }

    .chenar-harta-bucuresti,
    .chenar-harta-buftea,
    .whatsapp-image-2023-08-23-at-0-wrapper,
    .f104-c788-46e7-825a-404e94c38a-wrapper,
    .img-20240607-075749-1-wrapper,
    .img-20240608-094543-2-wrapper,
    .img-20240608-092447-2-wrapper,
    .img-20240608-092519-2-wrapper {
        display: none !important;
    }
}

/* Popup overlay styles */
.popup-overlay {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.popup-content {
    width: 90%;
    max-width: 1200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1600px) {
    .magazin-bucuresti {
        left: calc(50% - 270px);
    }
    
    .depozit-buftea- {
        left: calc(50% + 270px);
    }
    
    .harta-bucuresti-icon {
        left: calc(50% - 460px);
        width: 400px;
        height: 230px;
    }
    
    .harta-buftea-icon {
        left: calc(50% + 60px);
        width: 400px;
        height: 230px;
    }
    
    .chenar-harta-bucuresti {
        left: calc(50% - 464px);
        width: 408px;
        height: 238px;
    }
    
    .chenar-harta-buftea {
        left: calc(50% + 56px);
        width: 408px;
        height: 238px;
    }
    
    .whatsapp-image-2023-08-23-at-0-wrapper,
    .f104-c788-46e7-825a-404e94c38a-wrapper,
    .img-20240607-075749-1-wrapper {
        left: calc(50% - 550px);
    }
    
    .img-20240608-094543-2-wrapper,
    .img-20240608-092447-2-wrapper,
    .img-20240608-092519-2-wrapper {
        left: calc(50% + 480px);
    }
}

@media (max-width: 1400px) {
    .magazin-bucuresti {
        left: calc(50% - 240px);
    }
    
    .depozit-buftea- {
        left: calc(50% + 240px);
    }
    
    .harta-bucuresti-icon {
        left: calc(50% - 410px);
        width: 360px;
        height: 210px;
    }
    
    .harta-buftea-icon {
        left: calc(50% + 50px);
        width: 360px;
        height: 210px;
    }
    
    .chenar-harta-bucuresti {
        left: calc(50% - 414px);
        width: 368px;
        height: 218px;
    }
    
    .chenar-harta-buftea {
        left: calc(50% + 46px);
        width: 368px;
        height: 218px;
    }
    
    .whatsapp-image-2023-08-23-at-0-wrapper,
    .f104-c788-46e7-825a-404e94c38a-wrapper,
    .img-20240607-075749-1-wrapper {
        left: calc(50% - 500px);
        width: 60px;
        height: 60px;
    }
    
    .img-20240608-094543-2-wrapper,
    .img-20240608-092447-2-wrapper,
    .img-20240608-092519-2-wrapper {
        left: calc(50% + 430px);
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 1200px) {
    /* Hide thumbnails on smaller screens */
    .whatsapp-image-2023-08-23-at-0-wrapper,
    .f104-c788-46e7-825a-404e94c38a-wrapper,
    .img-20240607-075749-1-wrapper,
    .img-20240608-094543-2-wrapper,
    .img-20240608-092447-2-wrapper,
    .img-20240608-092519-2-wrapper {
        display: none;
    }
    
    .magazin-bucuresti {
        left: calc(50% - 210px);
    }
    
    .depozit-buftea- {
        left: calc(50% + 210px);
    }
    
    .harta-bucuresti-icon {
        left: calc(50% - 370px);
        width: 340px;
        height: 200px;
    }
    
    .harta-buftea-icon {
        left: calc(50% + 30px);
        width: 340px;
        height: 200px;
    }
    
    .chenar-harta-bucuresti {
        left: calc(50% - 374px);
        width: 348px;
        height: 208px;
    }
    
    .chenar-harta-buftea {
        left: calc(50% + 26px);
        width: 348px;
        height: 208px;
    }
}

@media (max-width: 992px) {
    .harti-locatii {
        min-height: 800px;
    }
    
    .locatii-fizice-magazin {
        font-size: 28px;
    }
    
    /* Stack vertically on tablets */
    .magazin-bucuresti {
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .harta-bucuresti-icon {
        top: 140px;
        left: 50%;
        width: 400px;
        height: 220px;
    }
    
    .chenar-harta-bucuresti {
        top: 136px;
        left: 50%;
        width: 408px;
        height: 228px;
    }
    
    .depozit-buftea- {
        top: 400px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .harta-buftea-icon {
        top: 440px;
        left: 50%;
        width: 400px;
        height: 220px;
    }
    
    .chenar-harta-buftea {
        top: 436px;
        left: 50%;
        width: 408px;
        height: 228px;
    }
}

@media (max-width: 768px) {
    .harti-locatii {
        min-height: 700px;
        padding: 40px 15px;
    }
    
    .locatii-fizice-magazin {
        font-size: 22px;
        top: 30px;
    }
    
    .magazin-bucuresti {
        top: 80px;
        font-size: 18px;
    }
    
    .harta-bucuresti-icon {
        top: 120px;
        width: 90%;
        max-width: 350px;
        height: 190px;
    }
    
    .chenar-harta-bucuresti {
        top: 116px;
        width: 90%;
        max-width: 358px;
        height: 198px;
    }
    
    .depozit-buftea- {
        top: 350px;
        font-size: 18px;
    }
    
    .harta-buftea-icon {
        top: 390px;
        width: 90%;
        max-width: 350px;
        height: 190px;
    }
    
    .chenar-harta-buftea {
        top: 386px;
        width: 90%;
        max-width: 358px;
        height: 198px;
    }
}
