.zastiendas-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.zastiendas-sidebar {
    flex: 1 1 300px;
    max-width: 400px;
}

.zastiendas-map-wrapper {
    flex: 2 1 400px;
    min-height: 400px;
}

#zt-map {
    width: 100%;
    height: 100%;
    min-height: 600px;
    z-index: 99;
}

.zt-store-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zt-store-item {
    padding: .75rem;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .zt-store-item:hover {
        background: #f5f5f5;
    }

.zt-store-name {
    font-weight: 600;
}

.zt-store-city {
    font-size: .875rem;
    color: #555;
}

.zt-back-row {
    margin-bottom: 1rem;
}

.zt-store-hours {
    margin-top: 10px;
}

.zt-open-now {
    font-weight: bold;
    margin-bottom: 5px;
}

    .zt-open-now.zt-open {
        color: #2e7d32; /* verde */
    }

    .zt-open-now.zt-closed {
        color: #c62828; /* rojo */
    }

.zt-open-special {
    font-weight: bold;
    color: #ff8f00; /* naranja */
    margin-bottom: 5px;
}

/* Icono Leaflet personalizado zastiendas */
.zt-custom-marker {
    background: transparent;
    border: none;
}

.zt-marker-outer {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

    /* Piquito inferior del pin */
    .zt-marker-outer::after {
        content: '';
        position: absolute;
        bottom: -11px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: 15px solid white;
        border-left: 11px solid transparent;
        border-right: 11px solid transparent;
        z-index: 1;
    }

/* Círculo interior blanco */
.zt-marker-inner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--zaseni-fucsia);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

    /* La imagen .ico dentro del círculo */
    .zt-marker-inner img {
        width: 70%;
        height: 70%;
        object-fit: contain;
        display: block;
    }


button.ver-tienda {
    padding: 3px;
    border-radius: 8px;
    background: var(--zaseni-rosa);
    color: white;
    border: 0;
}