/* =====================================================
   1. CONTENEDOR PRINCIPAL (FONDO)
   ===================================================== */
.ps-shopinfo-wrapper {
    position: relative;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #222;
}

.ps-shopinfo-wrapper .container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 50px !important;
}

.display-flex-center {
    display: flex;
    flex-wrap: wrap;
}

/* =====================================================
   2. ESTILOS DEL MAPA (IZQUIERDA)
   ===================================================== */
.ps-shopinfo-map {
    padding-right: 30px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

/* =====================================================
   3. ESTILOS DE INFORMACIÓN (DERECHA)
   ===================================================== */
.ps-shopinfo-content {
    padding-left: 20px;
}

.ps-shopinfo-content .info-panel {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Contenedor de cada bloque */
.shop-section-block {
    margin-bottom: 40px;
}

/* --- TÍTULO ESTILO CÁPSULA (PILL) --- */
.section-title {
    display: inline-block;
    width: calc(100% + 50px);
    border-radius: 50px 0 0 50px;
    padding: 10px 20px;
    font-size: 1.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: 0;
    margin-bottom: 20px;
}

/* --- FILAS DE INFORMACIÓN --- */
.section-rows {
    padding-left: 10px;
}

.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Contenedor del Icono */
.info-icon {
    flex: 0 0 50px;
    text-align: center;
    margin-right: 15px;
}

.info-icon img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
}

/* Texto de la fila */
.info-text {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
}

.info-text strong {
    font-weight: 800;
    font-size: 1.1em;
}

.info-text p {
    font-size: unset;
    color: unset;
    margin: unset;
}

/* =====================================================
   4. RESPONSIVE (MÓVILES)
   ===================================================== */
@media (max-width: 991px) {
    .ps-shopinfo-wrapper {
        padding: 30px 0;
    }

    .ps-shopinfo-map {
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .ps-shopinfo-content {
        padding-left: 15px;
    }

    .map-container {
        height: 300px;
    }

    .section-title {
        font-size: 20px;
        padding: 10px 25px;
        display: block;
        text-align: center;
    }

    .info-row {
        justify-content: flex-start;
    }
}